Merge master into staging-next

authored by github-actions[bot] and committed by GitHub ded5a5e5 94be6c1f

+517 -21829
+6 -6
lib/generators.nix
··· 606 606 607 607 in 608 608 # TODO: As discussed in #356502, deprecated functionality should be removed sometime after 25.11. 609 - lib.warnIf (!escape && lib.oldestSupportedReleaseIsAtLeast 2505) "Using `lib.generators.toPlist` without `escape = true` is deprecated" 610 - ''<?xml version="1.0" encoding="UTF-8"?> 611 - <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 612 - <plist version="1.0"> 613 - ${expr "" v} 614 - </plist>''; 609 + lib.warnIf (!escape && lib.oldestSupportedReleaseIsAtLeast 2505) "Using `lib.generators.toPlist` without `escape = true` is deprecated" '' 610 + <?xml version="1.0" encoding="UTF-8"?> 611 + <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 612 + <plist version="1.0"> 613 + ${expr "" v} 614 + </plist>''; 615 615 616 616 /** 617 617 Translate a simple Nix expression to Dhall notation.
+2 -2
lib/lists.nix
··· 1748 1748 ``` 1749 1749 ::: 1750 1750 */ 1751 - crossLists = warn 1752 - ''lib.crossLists is deprecated, use lib.mapCartesianProduct instead. 1751 + crossLists = warn '' 1752 + lib.crossLists is deprecated, use lib.mapCartesianProduct instead. 1753 1753 1754 1754 For example, the following function call: 1755 1755
+1 -1
lib/meta.nix
··· 475 475 "lib.meta.getExe': The first argument is of type ${typeOf x}, but it should be a derivation instead."; 476 476 assert assertMsg (isString y) 477 477 "lib.meta.getExe': The second argument is of type ${typeOf y}, but it should be a string instead."; 478 - assert assertMsg (match ".*\/.*" y == null) 478 + assert assertMsg (match ".*/.*" y == null) 479 479 "lib.meta.getExe': The second argument \"${y}\" is a nested path with a \"/\" character, but it should just be the name of the executable instead."; 480 480 "${getBin x}/bin/${y}"; 481 481 }
+1 -1
lib/options.nix
··· 426 426 # If the part is a named placeholder of the form "<...>" don't escape it. 427 427 # It may cause misleading escaping if somebody uses literally "<...>" in their option names. 428 428 # This is the trade-off to allow for placeholders in option names. 429 - isNamedPlaceholder = builtins.match "\<(.*)\>"; 429 + isNamedPlaceholder = builtins.match "<(.*)>"; 430 430 escapeOptionPart = part: 431 431 if part == "*" || isNamedPlaceholder part != null 432 432 then part
+2 -2
lib/tests/modules/strMatching-merge.nix
··· 3 3 imports = [ 4 4 { 5 5 options.sm = lib.mkOption { 6 - type = lib.types.strMatching "\(.*\)"; 6 + type = lib.types.strMatching "\\(.*\\)"; 7 7 }; 8 8 } 9 9 { 10 10 options.sm = lib.mkOption { 11 - type = lib.types.strMatching "\(.*\)"; 11 + type = lib.types.strMatching "\\(.*\\)"; 12 12 }; 13 13 } 14 14 ];
+6
maintainers/maintainer-list.nix
··· 13634 13634 githubId = 7910815; 13635 13635 name = "Alex McGrath"; 13636 13636 }; 13637 + lyn = { 13638 + name = "Lyn"; 13639 + matrix = "@lynatic:catgirl.cloud"; 13640 + github = "lynatic1337"; 13641 + githubId = 39234676; 13642 + }; 13637 13643 lyndeno = { 13638 13644 name = "Lyndon Sanche"; 13639 13645 email = "lsanche@lyndeno.ca";
+1 -1
nixos/modules/hardware/video/nvidia.nix
··· 17 17 offloadCfg = pCfg.offload; 18 18 reverseSyncCfg = pCfg.reverseSync; 19 19 primeEnabled = syncCfg.enable || reverseSyncCfg.enable || offloadCfg.enable; 20 - busIDType = lib.types.strMatching "([[:print:]]+[\:\@][0-9]{1,3}\:[0-9]{1,2}\:[0-9])?"; 20 + busIDType = lib.types.strMatching "([[:print:]]+[:@][0-9]{1,3}:[0-9]{1,2}:[0-9])?"; 21 21 ibtSupport = useOpenModules || (nvidia_x11.ibtSupport or false); 22 22 settingsFormat = pkgs.formats.keyValue { }; 23 23 in
+1 -1
nixos/modules/misc/version.nix
··· 24 24 ; 25 25 26 26 needsEscaping = s: null != builtins.match "[a-zA-Z0-9]+" s; 27 - escapeIfNecessary = s: if needsEscaping s then s else ''"${lib.escape [ "\$" "\"" "\\" "\`" ] s}"''; 27 + escapeIfNecessary = s: if needsEscaping s then s else ''"${lib.escape [ "$" "\"" "\\" "`" ] s}"''; 28 28 attrsToText = 29 29 attrs: 30 30 concatStringsSep "\n" (mapAttrsToList (n: v: ''${n}=${escapeIfNecessary (toString v)}'') attrs)
+2 -2
nixos/modules/services/backup/borgbackup.nix
··· 106 106 path = [ 107 107 config.services.borgbackup.package pkgs.openssh 108 108 ]; 109 - script = "exec " + lib.optionalString cfg.inhibitsSleep ''\ 109 + script = "exec " + lib.optionalString cfg.inhibitsSleep '' 110 110 ${pkgs.systemd}/bin/systemd-inhibit \ 111 111 --who="borgbackup" \ 112 112 --what="sleep" \ ··· 183 183 mode != "none" -> passCommand != null || passphrase != null; 184 184 message = 185 185 "passCommand or passphrase has to be specified because" 186 - + '' borgbackup.jobs.${name}.encryption != "none"''; 186 + + " borgbackup.jobs.${name}.encryption != \"none\""; 187 187 }; 188 188 189 189 mkRepoService = name: cfg:
+2 -1
nixos/modules/services/cluster/kubernetes/apiserver.nix
··· 320 320 after = [ "network.target" ]; 321 321 serviceConfig = { 322 322 Slice = "kubernetes.slice"; 323 - ExecStart = ''${top.package}/bin/kube-apiserver \ 323 + ExecStart = '' 324 + ${top.package}/bin/kube-apiserver \ 324 325 --allow-privileged=${lib.boolToString cfg.allowPrivileged} \ 325 326 --authorization-mode=${lib.concatStringsSep "," cfg.authorizationMode} \ 326 327 ${lib.optionalString (lib.elem "ABAC" cfg.authorizationMode)
+2 -1
nixos/modules/services/cluster/kubernetes/proxy.nix
··· 65 65 path = with pkgs; [ iptables conntrack-tools ]; 66 66 serviceConfig = { 67 67 Slice = "kubernetes.slice"; 68 - ExecStart = ''${top.package}/bin/kube-proxy \ 68 + ExecStart = '' 69 + ${top.package}/bin/kube-proxy \ 69 70 --bind-address=${cfg.bindAddress} \ 70 71 ${optionalString (top.clusterCidr!=null) 71 72 "--cluster-cidr=${top.clusterCidr}"} \
+2 -1
nixos/modules/services/databases/redis.nix
··· 211 211 masterAuth = lib.mkOption { 212 212 type = with types; nullOr str; 213 213 default = null; 214 - description = ''If the master is password protected (using the requirePass configuration) 214 + description = '' 215 + If the master is password protected (using the requirePass configuration) 215 216 it is possible to tell the slave to authenticate before starting the replication synchronization 216 217 process, otherwise the master will refuse the slave request. 217 218 (STORED PLAIN TEXT, WORLD-READABLE IN NIX STORE)'';
+8 -4
nixos/modules/services/desktops/pipewire/wireplumber.nix
··· 61 61 # in sections. 62 62 type = attrsOf (attrsOf json.type); 63 63 default = { }; 64 - example = literalExpression ''{ 64 + example = literalExpression '' 65 + { 65 66 "log-level-debug" = { 66 67 "context.properties" = { 67 68 # Output Debug log messages as opposed to only the default level (Notice) ··· 88 89 } 89 90 ]; 90 91 }; 91 - }''; 92 + } 93 + ''; 92 94 description = '' 93 95 Additional configuration for the WirePlumber daemon when run in 94 96 single-instance mode (the default in nixpkgs and currently the only ··· 166 168 configPackages = mkOption { 167 169 type = listOf package; 168 170 default = [ ]; 169 - example = literalExpression ''[ 171 + example = literalExpression '' 172 + [ 170 173 (pkgs.writeTextDir "share/wireplumber/wireplumber.conf.d/10-bluez.conf" ''' 171 174 monitor.bluez.properties = { 172 175 bluez5.roles = [ a2dp_sink a2dp_source bap_sink bap_source hsp_hs hsp_ag hfp_hf hfp_ag ] ··· 175 178 bluez5.hfphsp-backend = "native" 176 179 } 177 180 ''') 178 - ]''; 181 + ] 182 + ''; 179 183 description = '' 180 184 List of packages that provide WirePlumber configuration, in the form of 181 185 `share/wireplumber/*/*.conf` files.
+1
nixos/modules/services/hardware/udev.nix
··· 463 463 systemd.services.systemd-udevd = { 464 464 restartTriggers = [ config.environment.etc."udev/rules.d".source ]; 465 465 notSocketActivated = true; 466 + stopIfChanged = false; 466 467 }; 467 468 }; 468 469
+1 -1
nixos/modules/services/mail/dovecot.nix
··· 93 93 # The idea is to match everything that looks like `$term =` 94 94 # but not `# $term something something` 95 95 # or `# $term = some value` because those are comments. 96 - configContainsSetting = lines: term: (match "^[^#]*\b${term}\b.*=" lines) != null; 96 + configContainsSetting = lines: term: (match "[[:blank:]]*${term}[[:blank:]]*=.*" lines) != null; 97 97 98 98 warnAboutExtraConfigCollisions = map mkExtraConfigCollisionWarning ( 99 99 filter (configContainsSetting cfg.extraConfig) automaticallySetPluginSettings
+4 -3
nixos/modules/services/misc/gitlab.nix
··· 1080 1080 warnings = [ 1081 1081 (mkIf 1082 1082 (cfg.registry.enable && versionAtLeast (getVersion cfg.packages.gitlab) "16.0.0" && cfg.registry.package == pkgs.docker-distribution) 1083 - ''Support for container registries other than gitlab-container-registry has ended since GitLab 16.0.0 and is scheduled for removal in a future release. 1083 + '' 1084 + Support for container registries other than gitlab-container-registry has ended since GitLab 16.0.0 and is scheduled for removal in a future release. 1084 1085 Please back up your data and migrate to the gitlab-container-registry package.'' 1085 1086 ) 1086 1087 (mkIf 1087 - (versionAtLeast (getVersion cfg.packages.gitlab) "16.2.0" && versionOlder (getVersion cfg.packages.gitlab) "16.5.0") 1088 - ''GitLab instances created or updated between versions [15.11.0, 15.11.2] have an incorrect database schema. 1088 + (versionAtLeast (getVersion cfg.packages.gitlab) "16.2.0" && versionOlder (getVersion cfg.packages.gitlab) "16.5.0") '' 1089 + GitLab instances created or updated between versions [15.11.0, 15.11.2] have an incorrect database schema. 1089 1090 Check the upstream documentation for a workaround: https://docs.gitlab.com/ee/update/versions/gitlab_16_changes.html#undefined-column-error-upgrading-to-162-or-later'' 1090 1091 ) 1091 1092 ];
+1 -1
nixos/modules/services/misc/snapper.nix
··· 36 36 }; 37 37 38 38 intOrNumberOrRange = lib.types.either lib.types.ints.unsigned ( 39 - lib.types.strMatching "[[:digit:]]+(\-[[:digit:]]+)?" 39 + lib.types.strMatching "[[:digit:]]+(-[[:digit:]]+)?" 40 40 // { 41 41 description = "string containing either a number or a range"; 42 42 descriptionClass = "conjunction";
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/smokeping.nix
··· 13 13 name = "goDuration"; 14 14 description = "Go duration (https://golang.org/pkg/time/#ParseDuration)"; 15 15 check = 16 - x: types.str.check x && builtins.match "(-?[0-9]+(\.[0-9]+)?(ns|us|µs|ms|s|m|h))+" x != null; 16 + x: types.str.check x && builtins.match "(-?[0-9]+(\\.[0-9]+)?(ns|us|µs|ms|s|m|h))+" x != null; 17 17 inherit (types.str) merge; 18 18 }; 19 19 in
+3 -2
nixos/modules/services/network-filesystems/ceph.nix
··· 42 42 StateDirectory = stateDirectory; 43 43 User = "ceph"; 44 44 Group = if daemonType == "osd" then "disk" else "ceph"; 45 - ExecStart = ''${ceph.out}/bin/${if daemonType == "rgw" then "radosgw" else "ceph-${daemonType}"} \ 46 - -f --cluster ${clusterName} --id ${daemonId}''; 45 + ExecStart = '' 46 + ${ceph.out}/bin/${if daemonType == "rgw" then "radosgw" else "ceph-${daemonType}"} \ 47 + -f --cluster ${clusterName} --id ${daemonId}''; 47 48 } // lib.optionalAttrs (daemonType == "osd") { 48 49 ExecStartPre = "${ceph.lib}/libexec/ceph/ceph-osd-prestart.sh --id ${daemonId} --cluster ${clusterName}"; 49 50 RestartSec = "20s";
+3 -3
nixos/modules/services/networking/lxd-image-server.nix
··· 105 105 }; 106 106 107 107 # Serve json files with content type header application/json 108 - "~ \.json$" = { 108 + "~ \\.json$" = { 109 109 extraConfig = '' 110 110 add_header Content-Type application/json; 111 111 ''; 112 112 }; 113 113 114 - "~ \.tar.xz$" = { 114 + "~ \\.tar.xz$" = { 115 115 extraConfig = '' 116 116 add_header Content-Type application/octet-stream; 117 117 ''; 118 118 }; 119 119 120 - "~ \.tar.gz$" = { 120 + "~ \\.tar.gz$" = { 121 121 extraConfig = '' 122 122 add_header Content-Type application/octet-stream; 123 123 '';
+2 -1
nixos/modules/services/networking/smokeping.nix
··· 119 119 MAX 0.5 144 7200 120 120 MIN 0.5 144 7200 121 121 ''; 122 - description = ''Configure the ping frequency and retention of the rrd files. 122 + description = '' 123 + Configure the ping frequency and retention of the rrd files. 123 124 Once set, changing the interval will require deletion or migration of all 124 125 the collected data.''; 125 126 };
+4 -2
nixos/modules/services/networking/tinyproxy.nix
··· 33 33 settings = mkOption { 34 34 description = "Configuration for [tinyproxy](https://tinyproxy.github.io/)."; 35 35 default = { }; 36 - example = literalExpression ''{ 36 + example = literalExpression '' 37 + { 37 38 Port 8888; 38 39 Listen 127.0.0.1; 39 40 Timeout 600; 40 41 Allow 127.0.0.1; 41 42 Anonymous = ['"Host"' '"Authorization"']; 42 43 ReversePath = '"/example/" "http://www.example.com/"'; 43 - }''; 44 + } 45 + ''; 44 46 type = types.submodule ({name, ...}: { 45 47 freeformType = settingsFormat.type; 46 48 options = {
+6 -3
nixos/modules/services/networking/wg-quick.nix
··· 194 194 allowedIPs = mkOption { 195 195 example = [ "10.192.122.3/32" "10.192.124.1/24" ]; 196 196 type = with types; listOf str; 197 - description = ''List of IP (v4 or v6) addresses with CIDR masks from 197 + description = '' 198 + List of IP (v4 or v6) addresses with CIDR masks from 198 199 which this peer is allowed to send incoming traffic and to which 199 200 outgoing traffic for this peer is directed. The catch-all 0.0.0.0/0 may 200 201 be specified for matching all IPv4 addresses, and ::/0 may be specified ··· 205 206 default = null; 206 207 example = "demo.wireguard.io:12913"; 207 208 type = with types; nullOr str; 208 - description = ''Endpoint IP or hostname of the peer, followed by a colon, 209 + description = '' 210 + Endpoint IP or hostname of the peer, followed by a colon, 209 211 and then a port number of the peer.''; 210 212 }; 211 213 ··· 213 215 default = null; 214 216 type = with types; nullOr int; 215 217 example = 25; 216 - description = ''This is optional and is by default off, because most 218 + description = '' 219 + This is optional and is by default off, because most 217 220 users will not need it. It represents, in seconds, between 1 and 65535 218 221 inclusive, how often to send an authenticated empty packet to the peer, 219 222 for the purpose of keeping a stateful firewall or NAT mapping valid
+8 -4
nixos/modules/services/networking/wireguard.nix
··· 127 127 default = null; 128 128 type = with types; nullOr str; 129 129 example = "container"; 130 - description = ''The pre-existing network namespace in which the 130 + description = '' 131 + The pre-existing network namespace in which the 131 132 WireGuard interface is created, and which retains the socket even if the 132 133 interface is moved via {option}`interfaceNamespace`. When 133 134 `null`, the interface is created in the init namespace. ··· 139 140 default = null; 140 141 type = with types; nullOr str; 141 142 example = "init"; 142 - description = ''The pre-existing network namespace the WireGuard 143 + description = '' 144 + The pre-existing network namespace the WireGuard 143 145 interface is moved to. The special value `init` means 144 146 the init namespace. When `null`, the interface is not 145 147 moved. ··· 262 264 allowedIPs = mkOption { 263 265 example = [ "10.192.122.3/32" "10.192.124.1/24" ]; 264 266 type = with types; listOf str; 265 - description = ''List of IP (v4 or v6) addresses with CIDR masks from 267 + description = '' 268 + List of IP (v4 or v6) addresses with CIDR masks from 266 269 which this peer is allowed to send incoming traffic and to which 267 270 outgoing traffic for this peer is directed. The catch-all 0.0.0.0/0 may 268 271 be specified for matching all IPv4 addresses, and ::/0 may be specified ··· 328 331 default = null; 329 332 type = with types; nullOr int; 330 333 example = 25; 331 - description = ''This is optional and is by default off, because most 334 + description = '' 335 + This is optional and is by default off, because most 332 336 users will not need it. It represents, in seconds, between 1 and 65535 333 337 inclusive, how often to send an authenticated empty packet to the peer, 334 338 for the purpose of keeping a stateful firewall or NAT mapping valid
+1 -1
nixos/modules/services/security/certmgr.nix
··· 123 123 service = lib.mkOption { 124 124 type = nullOr str; 125 125 default = null; 126 - description = "The service on which to perform \<action\> after fetching."; 126 + description = "The service on which to perform \\<action\\> after fetching."; 127 127 }; 128 128 129 129 action = lib.mkOption {
+1 -1
nixos/modules/services/video/frigate.nix
··· 403 403 } 404 404 ''; 405 405 }; 406 - "~* /api/.*\.(jpg|jpeg|png|webp|gif)$" = { 406 + "~* /api/.*\\.(jpg|jpeg|png|webp|gif)$" = { 407 407 proxyPass = "http://frigate-api"; 408 408 recommendedProxySettings = true; 409 409 extraConfig = nginxAuthRequest + nginxProxySettings + ''
+2 -2
nixos/modules/services/web-apps/agorakit.nix
··· 367 367 index = "index.php"; 368 368 tryFiles = "$uri $uri/ /index.php?$query_string"; 369 369 }; 370 - "~ \.php$".extraConfig = '' 370 + "~ \\.php$".extraConfig = '' 371 371 fastcgi_pass unix:${config.services.phpfpm.pools."agorakit".socket}; 372 372 ''; 373 - "~ \.(js|css|gif|png|ico|jpg|jpeg)$" = { 373 + "~ \\.(js|css|gif|png|ico|jpg|jpeg)$" = { 374 374 extraConfig = "expires 365d;"; 375 375 }; 376 376 };
+1 -1
nixos/modules/services/web-apps/castopod.nix
··· 328 328 ''; 329 329 }; 330 330 331 - locations."~ \.php$" = { 331 + locations."~ \\.php$" = { 332 332 fastcgiParams = { 333 333 SERVER_NAME = "$host"; 334 334 };
+1 -1
nixos/modules/services/web-apps/davis.nix
··· 496 496 return 302 https://$host/dav/; 497 497 ''; 498 498 }; 499 - "~ ^(.+\.php)(.*)$" = { 499 + "~ ^(.+\\.php)(.*)$" = { 500 500 extraConfig = '' 501 501 try_files $fastcgi_script_name =404; 502 502 include ${config.services.nginx.package}/conf/fastcgi_params;
+1 -1
nixos/modules/services/web-apps/discourse.nix
··· 925 925 }; 926 926 "~ ^/uploads/short-url/" = proxy { }; 927 927 "~ ^/secure-media-uploads/" = proxy { }; 928 - "~* (fonts|assets|plugins|uploads)/.*\.(eot|ttf|woff|woff2|ico|otf)$".extraConfig = 928 + "~* (fonts|assets|plugins|uploads)/.*\\.(eot|ttf|woff|woff2|ico|otf)$".extraConfig = 929 929 cache_1y 930 930 + '' 931 931 add_header Access-Control-Allow-Origin *;
+1 -1
nixos/modules/services/web-apps/dokuwiki.nix
··· 436 436 extraConfig = "internal;"; 437 437 }; 438 438 439 - "~ ^/lib.*\.(js|css|gif|png|ico|jpg|jpeg)$" = { 439 + "~ ^/lib.*\\.(js|css|gif|png|ico|jpg|jpeg)$" = { 440 440 extraConfig = "expires 365d;"; 441 441 }; 442 442
+1 -1
nixos/modules/services/web-apps/firefly-iii-data-importer.nix
··· 239 239 sendfile off; 240 240 ''; 241 241 }; 242 - "~ \.php$" = { 242 + "~ \\.php$" = { 243 243 extraConfig = '' 244 244 include ${config.services.nginx.package}/conf/fastcgi_params ; 245 245 fastcgi_param SCRIPT_FILENAME $request_filename;
+1 -1
nixos/modules/services/web-apps/firefly-iii.nix
··· 361 361 sendfile off; 362 362 ''; 363 363 }; 364 - "~ \.php$" = { 364 + "~ \\.php$" = { 365 365 extraConfig = '' 366 366 include ${config.services.nginx.package}/conf/fastcgi_params ; 367 367 fastcgi_param SCRIPT_FILENAME $request_filename;
+1 -1
nixos/modules/services/web-apps/flarum.nix
··· 164 164 enable = true; 165 165 virtualHosts."${cfg.domain}" = { 166 166 root = "${cfg.stateDir}/public"; 167 - locations."~ \.php$".extraConfig = '' 167 + locations."~ \\.php$".extraConfig = '' 168 168 fastcgi_pass unix:${config.services.phpfpm.pools.flarum.socket}; 169 169 fastcgi_index site.php; 170 170 '';
+1 -1
nixos/modules/services/web-apps/freshrss.nix
··· 211 211 212 212 # php files handling 213 213 # this regex is mandatory because of the API 214 - locations."~ ^.+?\.php(/.*)?$".extraConfig = '' 214 + locations."~ ^.+?\\.php(/.*)?$".extraConfig = '' 215 215 fastcgi_pass unix:${config.services.phpfpm.pools.${cfg.pool}.socket}; 216 216 fastcgi_split_path_info ^(.+\.php)(/.*)$; 217 217 # By default, the variable PATH_INFO is not set under PHP-FPM
+2 -1
nixos/modules/services/web-apps/galene.nix
··· 150 150 User = cfg.user; 151 151 Group = cfg.group; 152 152 WorkingDirectory = cfg.stateDir; 153 - ExecStart = ''${cfg.package}/bin/galene \ 153 + ExecStart = '' 154 + ${cfg.package}/bin/galene \ 154 155 ${optionalString (cfg.insecure) "-insecure"} \ 155 156 -http ${cfg.httpAddress}:${toString cfg.httpPort} \ 156 157 -turn ${cfg.turnAddress} \
+2 -2
nixos/modules/services/web-apps/monica.nix
··· 355 355 index = "index.php"; 356 356 tryFiles = "$uri $uri/ /index.php?$query_string"; 357 357 }; 358 - "~ \.php$".extraConfig = '' 358 + "~ \\.php$".extraConfig = '' 359 359 fastcgi_pass unix:${config.services.phpfpm.pools."monica".socket}; 360 360 ''; 361 - "~ \.(js|css|gif|png|ico|jpg|jpeg)$" = { 361 + "~ \\.(js|css|gif|png|ico|jpg|jpeg)$" = { 362 362 extraConfig = "expires 365d;"; 363 363 }; 364 364 };
+11 -9
nixos/modules/services/web-apps/nextcloud.nix
··· 770 770 description = '' 771 771 Extra options which should be appended to Nextcloud's config.php file. 772 772 ''; 773 - example = literalExpression '' { 774 - redis = { 775 - host = "/run/redis/redis.sock"; 776 - port = 0; 777 - dbindex = 0; 778 - password = "secret"; 779 - timeout = 1.5; 780 - }; 781 - } ''; 773 + example = literalExpression '' 774 + { 775 + redis = { 776 + host = "/run/redis/redis.sock"; 777 + port = 0; 778 + dbindex = 0; 779 + password = "secret"; 780 + timeout = 1.5; 781 + }; 782 + } 783 + ''; 782 784 }; 783 785 784 786 secretFile = mkOption {
+10 -10
nixos/modules/services/web-apps/onlyoffice.nix
··· 105 105 virtualHosts.${cfg.hostname} = { 106 106 locations = { 107 107 # /etc/nginx/includes/ds-docservice.conf 108 - "~ ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(web-apps\/apps\/api\/documents\/api\.js)$".extraConfig = 108 + "~ ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?\\/(web-apps\\/apps\\/api\\/documents\\/api\\.js)$".extraConfig = 109 109 '' 110 110 expires -1; 111 111 alias ${cfg.package}/var/www/onlyoffice/documentserver/$2; 112 112 ''; 113 - "~ ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(web-apps)(\/.*\.json)$".extraConfig = '' 113 + "~ ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?\\/(web-apps)(\\/.*\\.json)$".extraConfig = '' 114 114 expires 365d; 115 115 error_log /dev/null crit; 116 116 alias ${cfg.package}/var/www/onlyoffice/documentserver/$2$3; 117 117 ''; 118 - "~ ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(sdkjs-plugins)(\/.*\.json)$".extraConfig = '' 118 + "~ ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?\\/(sdkjs-plugins)(\\/.*\\.json)$".extraConfig = '' 119 119 expires 365d; 120 120 error_log /dev/null crit; 121 121 alias ${cfg.package}/var/www/onlyoffice/documentserver/$2$3; 122 122 ''; 123 - "~ ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(web-apps|sdkjs|sdkjs-plugins|fonts)(\/.*)$".extraConfig = 123 + "~ ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?\\/(web-apps|sdkjs|sdkjs-plugins|fonts)(\\/.*)$".extraConfig = 124 124 '' 125 125 expires 365d; 126 126 alias ${cfg.package}/var/www/onlyoffice/documentserver/$2$3; 127 127 ''; 128 - "~* ^(\/cache\/files.*)(\/.*)".extraConfig = '' 128 + "~* ^(\\/cache\\/files.*)(\\/.*)".extraConfig = '' 129 129 alias /var/lib/onlyoffice/documentserver/App_Data$1; 130 130 add_header Content-Disposition "attachment; filename*=UTF-8''$arg_filename"; 131 131 ··· 141 141 return 410; 142 142 } 143 143 ''; 144 - "~* ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(internal)(\/.*)$".extraConfig = '' 144 + "~* ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?\\/(internal)(\\/.*)$".extraConfig = '' 145 145 allow 127.0.0.1; 146 146 deny all; 147 147 proxy_pass http://onlyoffice-docservice/$2$3; 148 148 ''; 149 - "~* ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(info)(\/.*)$".extraConfig = '' 149 + "~* ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?\\/(info)(\\/.*)$".extraConfig = '' 150 150 allow 127.0.0.1; 151 151 deny all; 152 152 proxy_pass http://onlyoffice-docservice/$2$3; ··· 154 154 "/".extraConfig = '' 155 155 proxy_pass http://onlyoffice-docservice; 156 156 ''; 157 - "~ ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?(\/doc\/.*)".extraConfig = '' 157 + "~ ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?(\\/doc\\/.*)".extraConfig = '' 158 158 proxy_pass http://onlyoffice-docservice$2; 159 159 proxy_http_version 1.1; 160 160 ''; 161 161 "/${cfg.package.version}/".extraConfig = '' 162 162 proxy_pass http://onlyoffice-docservice/; 163 163 ''; 164 - "~ ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(dictionaries)(\/.*)$".extraConfig = '' 164 + "~ ^(\\/[\\d]+\\.[\\d]+\\.[\\d]+[\\.|-][\\d]+)?\\/(dictionaries)(\\/.*)$".extraConfig = '' 165 165 expires 365d; 166 166 alias ${cfg.package}/var/www/onlyoffice/documentserver/$2$3; 167 167 ''; 168 168 # /etc/nginx/includes/ds-example.conf 169 - "~ ^(\/welcome\/.*)$".extraConfig = '' 169 + "~ ^(\\/welcome\\/.*)$".extraConfig = '' 170 170 expires 365d; 171 171 alias ${cfg.package}/var/www/onlyoffice/documentserver-example$1; 172 172 index docker.html;
+2 -2
nixos/modules/services/web-apps/peertube.nix
··· 696 696 }; 697 697 698 698 # Bypass PeerTube for performance reasons. 699 - locations."~ ^/client/(assets/images/(icons/icon-36x36\.png|icons/icon-48x48\.png|icons/icon-72x72\.png|icons/icon-96x96\.png|icons/icon-144x144\.png|icons/icon-192x192\.png|icons/icon-512x512\.png|logo\.svg|favicon\.png|default-playlist\.jpg|default-avatar-account\.png|default-avatar-account-48x48\.png|default-avatar-video-channel\.png|default-avatar-video-channel-48x48\.png))$" = 699 + locations."~ ^/client/(assets/images/(icons/icon-36x36\\.png|icons/icon-48x48\\.png|icons/icon-72x72\\.png|icons/icon-96x96\\.png|icons/icon-144x144\\.png|icons/icon-192x192\\.png|icons/icon-512x512\\.png|logo\\.svg|favicon\\.png|default-playlist\\.jpg|default-avatar-account\\.png|default-avatar-account-48x48\\.png|default-avatar-video-channel\\.png|default-avatar-video-channel-48x48\\.png))$" = 700 700 { 701 701 tryFiles = "/client-overrides/$1 /client/$1 $1"; 702 702 priority = 1310; ··· 704 704 extraConfig = nginxCommonHeaders; 705 705 }; 706 706 707 - locations."~ ^/client/(.*\.(js|css|png|svg|woff2|otf|ttf|woff|eot))$" = { 707 + locations."~ ^/client/(.*\\.(js|css|png|svg|woff2|otf|ttf|woff|eot))$" = { 708 708 alias = "${cfg.package}/client/dist/$1"; 709 709 priority = 1320; 710 710 extraConfig =
+1 -1
nixos/modules/services/web-apps/privatebin.nix
··· 186 186 sendfile off; 187 187 ''; 188 188 }; 189 - "~ \.php$" = { 189 + "~ \\.php$" = { 190 190 extraConfig = '' 191 191 include ${config.services.nginx.package}/conf/fastcgi_params ; 192 192 fastcgi_param SCRIPT_FILENAME $request_filename;
+1 -1
nixos/modules/services/web-apps/rutorrent.nix
··· 305 305 ${cfg.hostName} = { 306 306 root = cfg.dataDir; 307 307 locations = { 308 - "~ [^/]\.php(/|$)" = { 308 + "~ [^/]\\.php(/|$)" = { 309 309 extraConfig = '' 310 310 fastcgi_split_path_info ^(.+?\.php)(/.*)$; 311 311 if (!-f $document_root$fastcgi_script_name) {
+2 -2
nixos/modules/services/web-apps/snipe-it.nix
··· 368 368 index = "index.php"; 369 369 extraConfig = ''try_files $uri $uri/ /index.php?$query_string;''; 370 370 }; 371 - "~ \.php$" = { 371 + "~ \\.php$" = { 372 372 extraConfig = '' 373 373 try_files $uri $uri/ /index.php?$query_string; 374 374 include ${config.services.nginx.package}/conf/fastcgi_params; ··· 378 378 ${optionalString (cfg.nginx.addSSL || cfg.nginx.forceSSL || cfg.nginx.onlySSL || cfg.nginx.enableACME) "fastcgi_param HTTPS on;"} 379 379 ''; 380 380 }; 381 - "~ \.(js|css|gif|png|ico|jpg|jpeg)$" = { 381 + "~ \\.(js|css|gif|png|ico|jpg|jpeg)$" = { 382 382 extraConfig = "expires 365d;"; 383 383 }; 384 384 };
+1 -1
nixos/modules/services/web-apps/zabbix.nix
··· 342 342 index = "index.html index.htm index.php"; 343 343 tryFiles = "$uri $uri/ =404"; 344 344 }; 345 - locations."~ \.php$".extraConfig = '' 345 + locations."~ \\.php$".extraConfig = '' 346 346 fastcgi_pass unix:${fpm.socket}; 347 347 fastcgi_index index.php; 348 348 '';
+1 -1
nixos/modules/services/x11/display-managers/lightdm.nix
··· 155 155 }; 156 156 157 157 background = mkOption { 158 - type = types.either types.path (types.strMatching "^#[0-9]\{6\}$"); 158 + type = types.either types.path (types.strMatching "^#[0-9]{6}$"); 159 159 # Manual cannot depend on packages, we are actually setting the default in config below. 160 160 defaultText = literalExpression "pkgs.nixos-artwork.wallpapers.simple-dark-gray-bottom.gnomeFilePath"; 161 161 description = ''
+2 -2
nixos/modules/system/activation/top-level.nix
··· 319 319 320 320 system.extraSystemBuilderCmds = 321 321 optionalString 322 - config.system.copySystemConfiguration 323 - ''ln -s '${import ../../../lib/from-env.nix "NIXOS_CONFIG" <nixos-config>}' \ 322 + config.system.copySystemConfiguration '' 323 + ln -s '${import ../../../lib/from-env.nix "NIXOS_CONFIG" <nixos-config>}' \ 324 324 "$out/configuration.nix" 325 325 '' + 326 326 optionalString
+1
nixos/modules/system/boot/networkd.nix
··· 2902 2902 ]; 2903 2903 aliases = [ "dbus-org.freedesktop.network1.service" ]; 2904 2904 notSocketActivated = true; 2905 + stopIfChanged = false; 2905 2906 }; 2906 2907 2907 2908 networking.iproute2 = mkIf (cfg.config.addRouteTablesToIPRoute2 && cfg.config.routeTables != { }) {
+2 -1
nixos/modules/system/boot/resolved.nix
··· 193 193 systemd.services.systemd-resolved = { 194 194 wantedBy = [ "sysinit.target" ]; 195 195 aliases = [ "dbus-org.freedesktop.resolve1.service" ]; 196 - restartTriggers = [ config.environment.etc."systemd/resolved.conf".source ]; 196 + reloadTriggers = [ config.environment.etc."systemd/resolved.conf".source ]; 197 + stopIfChanged = false; 197 198 }; 198 199 199 200 environment.etc =
-11659
pkgs/by-name/ca/cargo-tauri/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 = "Inflector" 7 - version = "0.11.4" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 - 11 - [[package]] 12 - name = "acl-tests" 13 - version = "0.1.0" 14 - dependencies = [ 15 - "insta", 16 - "serde_json", 17 - "tauri-utils 2.1.0", 18 - ] 19 - 20 - [[package]] 21 - name = "addr2line" 22 - version = "0.24.1" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" 25 - dependencies = [ 26 - "gimli", 27 - ] 28 - 29 - [[package]] 30 - name = "adler" 31 - version = "1.0.2" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 34 - 35 - [[package]] 36 - name = "adler2" 37 - version = "2.0.0" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 40 - 41 - [[package]] 42 - name = "aead" 43 - version = "0.5.2" 44 - source = "registry+https://github.com/rust-lang/crates.io-index" 45 - checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 46 - dependencies = [ 47 - "crypto-common", 48 - "generic-array", 49 - ] 50 - 51 - [[package]] 52 - name = "aes" 53 - version = "0.8.4" 54 - source = "registry+https://github.com/rust-lang/crates.io-index" 55 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 56 - dependencies = [ 57 - "cfg-if", 58 - "cipher", 59 - "cpufeatures", 60 - ] 61 - 62 - [[package]] 63 - name = "aes-gcm" 64 - version = "0.10.3" 65 - source = "registry+https://github.com/rust-lang/crates.io-index" 66 - checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 67 - dependencies = [ 68 - "aead", 69 - "aes", 70 - "cipher", 71 - "ctr", 72 - "ghash", 73 - "subtle", 74 - ] 75 - 76 - [[package]] 77 - name = "ahash" 78 - version = "0.7.8" 79 - source = "registry+https://github.com/rust-lang/crates.io-index" 80 - checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 81 - dependencies = [ 82 - "getrandom 0.2.15", 83 - "once_cell", 84 - "version_check", 85 - ] 86 - 87 - [[package]] 88 - name = "ahash" 89 - version = "0.8.11" 90 - source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 92 - dependencies = [ 93 - "cfg-if", 94 - "getrandom 0.2.15", 95 - "once_cell", 96 - "serde", 97 - "version_check", 98 - "zerocopy", 99 - ] 100 - 101 - [[package]] 102 - name = "aho-corasick" 103 - version = "1.1.3" 104 - source = "registry+https://github.com/rust-lang/crates.io-index" 105 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 106 - dependencies = [ 107 - "memchr", 108 - ] 109 - 110 - [[package]] 111 - name = "aligned-vec" 112 - version = "0.5.0" 113 - source = "registry+https://github.com/rust-lang/crates.io-index" 114 - checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" 115 - 116 - [[package]] 117 - name = "alloc-no-stdlib" 118 - version = "2.0.4" 119 - source = "registry+https://github.com/rust-lang/crates.io-index" 120 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 121 - 122 - [[package]] 123 - name = "alloc-stdlib" 124 - version = "0.2.2" 125 - source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 127 - dependencies = [ 128 - "alloc-no-stdlib", 129 - ] 130 - 131 - [[package]] 132 - name = "allocator-api2" 133 - version = "0.2.18" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 136 - 137 - [[package]] 138 - name = "android-tzdata" 139 - version = "0.1.1" 140 - source = "registry+https://github.com/rust-lang/crates.io-index" 141 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 142 - 143 - [[package]] 144 - name = "android_log-sys" 145 - version = "0.3.1" 146 - source = "registry+https://github.com/rust-lang/crates.io-index" 147 - checksum = "5ecc8056bf6ab9892dcd53216c83d1597487d7dacac16c8df6b877d127df9937" 148 - 149 - [[package]] 150 - name = "android_logger" 151 - version = "0.14.1" 152 - source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "05b07e8e73d720a1f2e4b6014766e6039fd2e96a4fa44e2a78d0e1fa2ff49826" 154 - dependencies = [ 155 - "android_log-sys", 156 - "env_filter", 157 - "log", 158 - ] 159 - 160 - [[package]] 161 - name = "android_system_properties" 162 - version = "0.1.5" 163 - source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 165 - dependencies = [ 166 - "libc", 167 - ] 168 - 169 - [[package]] 170 - name = "anstream" 171 - version = "0.6.15" 172 - source = "registry+https://github.com/rust-lang/crates.io-index" 173 - checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 174 - dependencies = [ 175 - "anstyle", 176 - "anstyle-parse", 177 - "anstyle-query", 178 - "anstyle-wincon", 179 - "colorchoice", 180 - "is_terminal_polyfill", 181 - "utf8parse", 182 - ] 183 - 184 - [[package]] 185 - name = "anstyle" 186 - version = "1.0.8" 187 - source = "registry+https://github.com/rust-lang/crates.io-index" 188 - checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 189 - 190 - [[package]] 191 - name = "anstyle-parse" 192 - version = "0.2.5" 193 - source = "registry+https://github.com/rust-lang/crates.io-index" 194 - checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 195 - dependencies = [ 196 - "utf8parse", 197 - ] 198 - 199 - [[package]] 200 - name = "anstyle-query" 201 - version = "1.1.1" 202 - source = "registry+https://github.com/rust-lang/crates.io-index" 203 - checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 204 - dependencies = [ 205 - "windows-sys 0.52.0", 206 - ] 207 - 208 - [[package]] 209 - name = "anstyle-wincon" 210 - version = "3.0.4" 211 - source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 213 - dependencies = [ 214 - "anstyle", 215 - "windows-sys 0.52.0", 216 - ] 217 - 218 - [[package]] 219 - name = "anyhow" 220 - version = "1.0.93" 221 - source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775" 223 - 224 - [[package]] 225 - name = "api" 226 - version = "0.1.0" 227 - dependencies = [ 228 - "log", 229 - "serde", 230 - "serde_json", 231 - "tauri", 232 - "tauri-build", 233 - "tauri-plugin-log", 234 - "tauri-plugin-sample", 235 - "tiny_http", 236 - ] 237 - 238 - [[package]] 239 - name = "app-store-connect" 240 - version = "0.5.0" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "33fb5489b9bfcfa3aec2f68cc79eafb999b5af9b9d9d70ca8dfe36acdd1b2b05" 243 - dependencies = [ 244 - "anyhow", 245 - "base64 0.21.7", 246 - "clap", 247 - "dirs", 248 - "env_logger 0.10.2", 249 - "jsonwebtoken", 250 - "log", 251 - "pem", 252 - "rand 0.8.5", 253 - "reqwest 0.11.27", 254 - "rsa", 255 - "serde", 256 - "serde_json", 257 - "thiserror 1.0.68", 258 - "x509-certificate", 259 - ] 260 - 261 - [[package]] 262 - name = "apple-bundles" 263 - version = "0.19.0" 264 - source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "abb7c27ee2ca7826adfdc84228cd4c5a84ab57b0a11d269d1d7cd0615238e5a2" 266 - dependencies = [ 267 - "anyhow", 268 - "plist", 269 - "simple-file-manifest", 270 - "walkdir", 271 - ] 272 - 273 - [[package]] 274 - name = "apple-codesign" 275 - version = "0.27.0" 276 - source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "329820aac7259ca0529d3cc21dd3b4c11651225dfce9e0ce25b121b23f923164" 278 - dependencies = [ 279 - "anyhow", 280 - "app-store-connect", 281 - "apple-bundles", 282 - "apple-flat-package", 283 - "apple-xar", 284 - "aws-config", 285 - "aws-sdk-s3", 286 - "aws-smithy-http", 287 - "aws-smithy-types", 288 - "base64 0.21.7", 289 - "bcder", 290 - "bitflags 2.6.0", 291 - "bytes", 292 - "chrono", 293 - "clap", 294 - "cryptographic-message-syntax", 295 - "der 0.7.9", 296 - "dialoguer", 297 - "difference", 298 - "digest", 299 - "dirs", 300 - "elliptic-curve 0.13.8", 301 - "env_logger 0.10.2", 302 - "figment", 303 - "filetime", 304 - "glob", 305 - "goblin", 306 - "hex", 307 - "log", 308 - "md-5", 309 - "minicbor", 310 - "num-traits", 311 - "object 0.32.2", 312 - "oid-registry", 313 - "once_cell", 314 - "p12", 315 - "p256 0.13.2", 316 - "pem", 317 - "pkcs1", 318 - "pkcs8 0.10.2", 319 - "plist", 320 - "rand 0.8.5", 321 - "rasn", 322 - "rayon", 323 - "regex", 324 - "reqwest 0.11.27", 325 - "ring", 326 - "rsa", 327 - "scroll", 328 - "security-framework", 329 - "security-framework-sys", 330 - "semver", 331 - "serde", 332 - "serde_json", 333 - "serde_yaml", 334 - "sha2", 335 - "signature 2.2.0", 336 - "simple-file-manifest", 337 - "spake2", 338 - "spki 0.7.3", 339 - "subtle", 340 - "tempfile", 341 - "thiserror 1.0.68", 342 - "tokio", 343 - "tungstenite 0.21.0", 344 - "uuid", 345 - "walkdir", 346 - "widestring", 347 - "windows-sys 0.52.0", 348 - "x509", 349 - "x509-certificate", 350 - "xml-rs", 351 - "yasna", 352 - "zeroize", 353 - "zip 0.6.6", 354 - "zip_structs", 355 - ] 356 - 357 - [[package]] 358 - name = "apple-flat-package" 359 - version = "0.18.0" 360 - source = "registry+https://github.com/rust-lang/crates.io-index" 361 - checksum = "b6adc520e05304de5ec383487786fa20e9c636fe972e59719cdd93621a2db6f1" 362 - dependencies = [ 363 - "apple-xar", 364 - "cpio-archive", 365 - "flate2", 366 - "scroll", 367 - "serde", 368 - "serde-xml-rs", 369 - "thiserror 1.0.68", 370 - ] 371 - 372 - [[package]] 373 - name = "apple-xar" 374 - version = "0.18.0" 375 - source = "registry+https://github.com/rust-lang/crates.io-index" 376 - checksum = "844e00dc1e665b3cf0bba745aa9c6464292ca512db0c11384511586701eb0335" 377 - dependencies = [ 378 - "base64 0.21.7", 379 - "bcder", 380 - "bzip2", 381 - "chrono", 382 - "cryptographic-message-syntax", 383 - "digest", 384 - "flate2", 385 - "log", 386 - "md-5", 387 - "rand 0.8.5", 388 - "reqwest 0.11.27", 389 - "scroll", 390 - "serde", 391 - "serde-xml-rs", 392 - "sha1", 393 - "sha2", 394 - "signature 2.2.0", 395 - "thiserror 1.0.68", 396 - "url", 397 - "x509-certificate", 398 - "xml-rs", 399 - "xz2", 400 - ] 401 - 402 - [[package]] 403 - name = "ar" 404 - version = "0.9.0" 405 - source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "d67af77d68a931ecd5cbd8a3b5987d63a1d1d1278f7f6a60ae33db485cdebb69" 407 - 408 - [[package]] 409 - name = "arbitrary" 410 - version = "1.3.2" 411 - source = "registry+https://github.com/rust-lang/crates.io-index" 412 - checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 413 - dependencies = [ 414 - "derive_arbitrary", 415 - ] 416 - 417 - [[package]] 418 - name = "arg_enum_proc_macro" 419 - version = "0.3.4" 420 - source = "registry+https://github.com/rust-lang/crates.io-index" 421 - checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 422 - dependencies = [ 423 - "proc-macro2", 424 - "quote", 425 - "syn 2.0.87", 426 - ] 427 - 428 - [[package]] 429 - name = "argon2" 430 - version = "0.5.3" 431 - source = "registry+https://github.com/rust-lang/crates.io-index" 432 - checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" 433 - dependencies = [ 434 - "base64ct", 435 - "blake2", 436 - "cpufeatures", 437 - "password-hash", 438 - ] 439 - 440 - [[package]] 441 - name = "arrayref" 442 - version = "0.3.9" 443 - source = "registry+https://github.com/rust-lang/crates.io-index" 444 - checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" 445 - 446 - [[package]] 447 - name = "arrayvec" 448 - version = "0.7.6" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 451 - 452 - [[package]] 453 - name = "ascii" 454 - version = "1.1.0" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16" 457 - 458 - [[package]] 459 - name = "asn1-rs" 460 - version = "0.5.2" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" 463 - dependencies = [ 464 - "asn1-rs-derive", 465 - "asn1-rs-impl", 466 - "displaydoc", 467 - "nom", 468 - "num-traits", 469 - "rusticata-macros", 470 - "thiserror 1.0.68", 471 - ] 472 - 473 - [[package]] 474 - name = "asn1-rs-derive" 475 - version = "0.4.0" 476 - source = "registry+https://github.com/rust-lang/crates.io-index" 477 - checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" 478 - dependencies = [ 479 - "proc-macro2", 480 - "quote", 481 - "syn 1.0.109", 482 - "synstructure 0.12.6", 483 - ] 484 - 485 - [[package]] 486 - name = "asn1-rs-impl" 487 - version = "0.1.0" 488 - source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" 490 - dependencies = [ 491 - "proc-macro2", 492 - "quote", 493 - "syn 1.0.109", 494 - ] 495 - 496 - [[package]] 497 - name = "assert-unchecked" 498 - version = "0.1.2" 499 - source = "registry+https://github.com/rust-lang/crates.io-index" 500 - checksum = "7330592adf847ee2e3513587b4db2db410a0d751378654e7e993d9adcbe5c795" 501 - 502 - [[package]] 503 - name = "async-trait" 504 - version = "0.1.83" 505 - source = "registry+https://github.com/rust-lang/crates.io-index" 506 - checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 507 - dependencies = [ 508 - "proc-macro2", 509 - "quote", 510 - "syn 2.0.87", 511 - ] 512 - 513 - [[package]] 514 - name = "atk" 515 - version = "0.18.0" 516 - source = "registry+https://github.com/rust-lang/crates.io-index" 517 - checksum = "b4af014b17dd80e8af9fa689b2d4a211ddba6eb583c1622f35d0cb543f6b17e4" 518 - dependencies = [ 519 - "atk-sys", 520 - "glib", 521 - "libc", 522 - ] 523 - 524 - [[package]] 525 - name = "atk-sys" 526 - version = "0.18.0" 527 - source = "registry+https://github.com/rust-lang/crates.io-index" 528 - checksum = "251e0b7d90e33e0ba930891a505a9a35ece37b2dd37a14f3ffc306c13b980009" 529 - dependencies = [ 530 - "glib-sys", 531 - "gobject-sys", 532 - "libc", 533 - "system-deps", 534 - ] 535 - 536 - [[package]] 537 - name = "atomic" 538 - version = "0.6.0" 539 - source = "registry+https://github.com/rust-lang/crates.io-index" 540 - checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994" 541 - dependencies = [ 542 - "bytemuck", 543 - ] 544 - 545 - [[package]] 546 - name = "atomic-waker" 547 - version = "1.1.2" 548 - source = "registry+https://github.com/rust-lang/crates.io-index" 549 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 550 - 551 - [[package]] 552 - name = "autocfg" 553 - version = "1.4.0" 554 - source = "registry+https://github.com/rust-lang/crates.io-index" 555 - checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 556 - 557 - [[package]] 558 - name = "av1-grain" 559 - version = "0.2.3" 560 - source = "registry+https://github.com/rust-lang/crates.io-index" 561 - checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf" 562 - dependencies = [ 563 - "anyhow", 564 - "arrayvec", 565 - "log", 566 - "nom", 567 - "num-rational", 568 - "v_frame", 569 - ] 570 - 571 - [[package]] 572 - name = "avif-serialize" 573 - version = "0.8.2" 574 - source = "registry+https://github.com/rust-lang/crates.io-index" 575 - checksum = "e335041290c43101ca215eed6f43ec437eb5a42125573f600fc3fa42b9bddd62" 576 - dependencies = [ 577 - "arrayvec", 578 - ] 579 - 580 - [[package]] 581 - name = "aws-config" 582 - version = "1.5.9" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "2d6448cfb224dd6a9b9ac734f58622dd0d4751f3589f3b777345745f46b2eb14" 585 - dependencies = [ 586 - "aws-credential-types", 587 - "aws-runtime", 588 - "aws-sdk-sso", 589 - "aws-sdk-ssooidc", 590 - "aws-sdk-sts", 591 - "aws-smithy-async", 592 - "aws-smithy-http", 593 - "aws-smithy-json", 594 - "aws-smithy-runtime", 595 - "aws-smithy-runtime-api", 596 - "aws-smithy-types", 597 - "aws-types", 598 - "bytes", 599 - "fastrand", 600 - "hex", 601 - "http 0.2.12", 602 - "ring", 603 - "time", 604 - "tokio", 605 - "tracing", 606 - "url", 607 - "zeroize", 608 - ] 609 - 610 - [[package]] 611 - name = "aws-credential-types" 612 - version = "1.2.1" 613 - source = "registry+https://github.com/rust-lang/crates.io-index" 614 - checksum = "60e8f6b615cb5fc60a98132268508ad104310f0cfb25a1c22eee76efdf9154da" 615 - dependencies = [ 616 - "aws-smithy-async", 617 - "aws-smithy-runtime-api", 618 - "aws-smithy-types", 619 - "zeroize", 620 - ] 621 - 622 - [[package]] 623 - name = "aws-runtime" 624 - version = "1.4.3" 625 - source = "registry+https://github.com/rust-lang/crates.io-index" 626 - checksum = "a10d5c055aa540164d9561a0e2e74ad30f0dcf7393c3a92f6733ddf9c5762468" 627 - dependencies = [ 628 - "aws-credential-types", 629 - "aws-sigv4", 630 - "aws-smithy-async", 631 - "aws-smithy-eventstream", 632 - "aws-smithy-http", 633 - "aws-smithy-runtime", 634 - "aws-smithy-runtime-api", 635 - "aws-smithy-types", 636 - "aws-types", 637 - "bytes", 638 - "fastrand", 639 - "http 0.2.12", 640 - "http-body 0.4.6", 641 - "once_cell", 642 - "percent-encoding", 643 - "pin-project-lite", 644 - "tracing", 645 - "uuid", 646 - ] 647 - 648 - [[package]] 649 - name = "aws-sdk-s3" 650 - version = "1.46.0" 651 - source = "registry+https://github.com/rust-lang/crates.io-index" 652 - checksum = "4abf69a87be33b6f125a93d5046b5f7395c26d1f449bf8d3927f5577463b6de0" 653 - dependencies = [ 654 - "ahash 0.8.11", 655 - "aws-credential-types", 656 - "aws-runtime", 657 - "aws-sigv4", 658 - "aws-smithy-async", 659 - "aws-smithy-checksums", 660 - "aws-smithy-eventstream", 661 - "aws-smithy-http", 662 - "aws-smithy-json", 663 - "aws-smithy-runtime", 664 - "aws-smithy-runtime-api", 665 - "aws-smithy-types", 666 - "aws-smithy-xml", 667 - "aws-types", 668 - "bytes", 669 - "fastrand", 670 - "hex", 671 - "hmac", 672 - "http 0.2.12", 673 - "http-body 0.4.6", 674 - "lru", 675 - "once_cell", 676 - "percent-encoding", 677 - "regex-lite", 678 - "sha2", 679 - "tracing", 680 - "url", 681 - ] 682 - 683 - [[package]] 684 - name = "aws-sdk-sso" 685 - version = "1.48.0" 686 - source = "registry+https://github.com/rust-lang/crates.io-index" 687 - checksum = "ded855583fa1d22e88fe39fd6062b062376e50a8211989e07cf5e38d52eb3453" 688 - dependencies = [ 689 - "aws-credential-types", 690 - "aws-runtime", 691 - "aws-smithy-async", 692 - "aws-smithy-http", 693 - "aws-smithy-json", 694 - "aws-smithy-runtime", 695 - "aws-smithy-runtime-api", 696 - "aws-smithy-types", 697 - "aws-types", 698 - "bytes", 699 - "http 0.2.12", 700 - "once_cell", 701 - "regex-lite", 702 - "tracing", 703 - ] 704 - 705 - [[package]] 706 - name = "aws-sdk-ssooidc" 707 - version = "1.49.0" 708 - source = "registry+https://github.com/rust-lang/crates.io-index" 709 - checksum = "9177ea1192e6601ae16c7273385690d88a7ed386a00b74a6bc894d12103cd933" 710 - dependencies = [ 711 - "aws-credential-types", 712 - "aws-runtime", 713 - "aws-smithy-async", 714 - "aws-smithy-http", 715 - "aws-smithy-json", 716 - "aws-smithy-runtime", 717 - "aws-smithy-runtime-api", 718 - "aws-smithy-types", 719 - "aws-types", 720 - "bytes", 721 - "http 0.2.12", 722 - "once_cell", 723 - "regex-lite", 724 - "tracing", 725 - ] 726 - 727 - [[package]] 728 - name = "aws-sdk-sts" 729 - version = "1.48.0" 730 - source = "registry+https://github.com/rust-lang/crates.io-index" 731 - checksum = "823ef553cf36713c97453e2ddff1eb8f62be7f4523544e2a5db64caf80100f0a" 732 - dependencies = [ 733 - "aws-credential-types", 734 - "aws-runtime", 735 - "aws-smithy-async", 736 - "aws-smithy-http", 737 - "aws-smithy-json", 738 - "aws-smithy-query", 739 - "aws-smithy-runtime", 740 - "aws-smithy-runtime-api", 741 - "aws-smithy-types", 742 - "aws-smithy-xml", 743 - "aws-types", 744 - "http 0.2.12", 745 - "once_cell", 746 - "regex-lite", 747 - "tracing", 748 - ] 749 - 750 - [[package]] 751 - name = "aws-sigv4" 752 - version = "1.2.4" 753 - source = "registry+https://github.com/rust-lang/crates.io-index" 754 - checksum = "cc8db6904450bafe7473c6ca9123f88cc11089e41a025408f992db4e22d3be68" 755 - dependencies = [ 756 - "aws-credential-types", 757 - "aws-smithy-eventstream", 758 - "aws-smithy-http", 759 - "aws-smithy-runtime-api", 760 - "aws-smithy-types", 761 - "bytes", 762 - "crypto-bigint 0.5.5", 763 - "form_urlencoded", 764 - "hex", 765 - "hmac", 766 - "http 0.2.12", 767 - "http 1.1.0", 768 - "once_cell", 769 - "p256 0.11.1", 770 - "percent-encoding", 771 - "ring", 772 - "sha2", 773 - "subtle", 774 - "time", 775 - "tracing", 776 - "zeroize", 777 - ] 778 - 779 - [[package]] 780 - name = "aws-smithy-async" 781 - version = "1.2.1" 782 - source = "registry+https://github.com/rust-lang/crates.io-index" 783 - checksum = "62220bc6e97f946ddd51b5f1361f78996e704677afc518a4ff66b7a72ea1378c" 784 - dependencies = [ 785 - "futures-util", 786 - "pin-project-lite", 787 - "tokio", 788 - ] 789 - 790 - [[package]] 791 - name = "aws-smithy-checksums" 792 - version = "0.60.12" 793 - source = "registry+https://github.com/rust-lang/crates.io-index" 794 - checksum = "598b1689d001c4d4dc3cb386adb07d37786783aee3ac4b324bcadac116bf3d23" 795 - dependencies = [ 796 - "aws-smithy-http", 797 - "aws-smithy-types", 798 - "bytes", 799 - "crc32c", 800 - "crc32fast", 801 - "hex", 802 - "http 0.2.12", 803 - "http-body 0.4.6", 804 - "md-5", 805 - "pin-project-lite", 806 - "sha1", 807 - "sha2", 808 - "tracing", 809 - ] 810 - 811 - [[package]] 812 - name = "aws-smithy-eventstream" 813 - version = "0.60.5" 814 - source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "cef7d0a272725f87e51ba2bf89f8c21e4df61b9e49ae1ac367a6d69916ef7c90" 816 - dependencies = [ 817 - "aws-smithy-types", 818 - "bytes", 819 - "crc32fast", 820 - ] 821 - 822 - [[package]] 823 - name = "aws-smithy-http" 824 - version = "0.60.11" 825 - source = "registry+https://github.com/rust-lang/crates.io-index" 826 - checksum = "5c8bc3e8fdc6b8d07d976e301c02fe553f72a39b7a9fea820e023268467d7ab6" 827 - dependencies = [ 828 - "aws-smithy-eventstream", 829 - "aws-smithy-runtime-api", 830 - "aws-smithy-types", 831 - "bytes", 832 - "bytes-utils", 833 - "futures-core", 834 - "http 0.2.12", 835 - "http-body 0.4.6", 836 - "once_cell", 837 - "percent-encoding", 838 - "pin-project-lite", 839 - "pin-utils", 840 - "tracing", 841 - ] 842 - 843 - [[package]] 844 - name = "aws-smithy-json" 845 - version = "0.60.7" 846 - source = "registry+https://github.com/rust-lang/crates.io-index" 847 - checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6" 848 - dependencies = [ 849 - "aws-smithy-types", 850 - ] 851 - 852 - [[package]] 853 - name = "aws-smithy-query" 854 - version = "0.60.7" 855 - source = "registry+https://github.com/rust-lang/crates.io-index" 856 - checksum = "f2fbd61ceb3fe8a1cb7352e42689cec5335833cd9f94103a61e98f9bb61c64bb" 857 - dependencies = [ 858 - "aws-smithy-types", 859 - "urlencoding", 860 - ] 861 - 862 - [[package]] 863 - name = "aws-smithy-runtime" 864 - version = "1.7.3" 865 - source = "registry+https://github.com/rust-lang/crates.io-index" 866 - checksum = "be28bd063fa91fd871d131fc8b68d7cd4c5fa0869bea68daca50dcb1cbd76be2" 867 - dependencies = [ 868 - "aws-smithy-async", 869 - "aws-smithy-http", 870 - "aws-smithy-runtime-api", 871 - "aws-smithy-types", 872 - "bytes", 873 - "fastrand", 874 - "h2 0.3.26", 875 - "http 0.2.12", 876 - "http-body 0.4.6", 877 - "http-body 1.0.1", 878 - "httparse", 879 - "hyper 0.14.30", 880 - "hyper-rustls 0.24.2", 881 - "once_cell", 882 - "pin-project-lite", 883 - "pin-utils", 884 - "rustls 0.21.12", 885 - "tokio", 886 - "tracing", 887 - ] 888 - 889 - [[package]] 890 - name = "aws-smithy-runtime-api" 891 - version = "1.7.2" 892 - source = "registry+https://github.com/rust-lang/crates.io-index" 893 - checksum = "e086682a53d3aa241192aa110fa8dfce98f2f5ac2ead0de84d41582c7e8fdb96" 894 - dependencies = [ 895 - "aws-smithy-async", 896 - "aws-smithy-types", 897 - "bytes", 898 - "http 0.2.12", 899 - "http 1.1.0", 900 - "pin-project-lite", 901 - "tokio", 902 - "tracing", 903 - "zeroize", 904 - ] 905 - 906 - [[package]] 907 - name = "aws-smithy-types" 908 - version = "1.2.9" 909 - source = "registry+https://github.com/rust-lang/crates.io-index" 910 - checksum = "4fbd94a32b3a7d55d3806fe27d98d3ad393050439dd05eb53ece36ec5e3d3510" 911 - dependencies = [ 912 - "base64-simd", 913 - "bytes", 914 - "bytes-utils", 915 - "futures-core", 916 - "http 0.2.12", 917 - "http 1.1.0", 918 - "http-body 0.4.6", 919 - "http-body 1.0.1", 920 - "http-body-util", 921 - "itoa 1.0.11", 922 - "num-integer", 923 - "pin-project-lite", 924 - "pin-utils", 925 - "ryu", 926 - "serde", 927 - "time", 928 - "tokio", 929 - "tokio-util", 930 - ] 931 - 932 - [[package]] 933 - name = "aws-smithy-xml" 934 - version = "0.60.9" 935 - source = "registry+https://github.com/rust-lang/crates.io-index" 936 - checksum = "ab0b0166827aa700d3dc519f72f8b3a91c35d0b8d042dc5d643a91e6f80648fc" 937 - dependencies = [ 938 - "xmlparser", 939 - ] 940 - 941 - [[package]] 942 - name = "aws-types" 943 - version = "1.3.3" 944 - source = "registry+https://github.com/rust-lang/crates.io-index" 945 - checksum = "5221b91b3e441e6675310829fd8984801b772cb1546ef6c0e54dec9f1ac13fef" 946 - dependencies = [ 947 - "aws-credential-types", 948 - "aws-smithy-async", 949 - "aws-smithy-runtime-api", 950 - "aws-smithy-types", 951 - "rustc_version", 952 - "tracing", 953 - ] 954 - 955 - [[package]] 956 - name = "axum" 957 - version = "0.7.7" 958 - source = "registry+https://github.com/rust-lang/crates.io-index" 959 - checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" 960 - dependencies = [ 961 - "async-trait", 962 - "axum-core", 963 - "base64 0.22.1", 964 - "bytes", 965 - "futures-util", 966 - "http 1.1.0", 967 - "http-body 1.0.1", 968 - "http-body-util", 969 - "hyper 1.4.1", 970 - "hyper-util", 971 - "itoa 1.0.11", 972 - "matchit", 973 - "memchr", 974 - "mime", 975 - "percent-encoding", 976 - "pin-project-lite", 977 - "rustversion", 978 - "serde", 979 - "serde_json", 980 - "serde_path_to_error", 981 - "serde_urlencoded", 982 - "sha1", 983 - "sync_wrapper 1.0.1", 984 - "tokio", 985 - "tokio-tungstenite", 986 - "tower 0.5.1", 987 - "tower-layer", 988 - "tower-service", 989 - "tracing", 990 - ] 991 - 992 - [[package]] 993 - name = "axum-core" 994 - version = "0.4.5" 995 - source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" 997 - dependencies = [ 998 - "async-trait", 999 - "bytes", 1000 - "futures-util", 1001 - "http 1.1.0", 1002 - "http-body 1.0.1", 1003 - "http-body-util", 1004 - "mime", 1005 - "pin-project-lite", 1006 - "rustversion", 1007 - "sync_wrapper 1.0.1", 1008 - "tower-layer", 1009 - "tower-service", 1010 - "tracing", 1011 - ] 1012 - 1013 - [[package]] 1014 - name = "backtrace" 1015 - version = "0.3.74" 1016 - source = "registry+https://github.com/rust-lang/crates.io-index" 1017 - checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 1018 - dependencies = [ 1019 - "addr2line", 1020 - "cfg-if", 1021 - "libc", 1022 - "miniz_oxide 0.8.0", 1023 - "object 0.36.5", 1024 - "rustc-demangle", 1025 - "windows-targets 0.52.6", 1026 - ] 1027 - 1028 - [[package]] 1029 - name = "base16ct" 1030 - version = "0.1.1" 1031 - source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 1033 - 1034 - [[package]] 1035 - name = "base16ct" 1036 - version = "0.2.0" 1037 - source = "registry+https://github.com/rust-lang/crates.io-index" 1038 - checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 1039 - 1040 - [[package]] 1041 - name = "base64" 1042 - version = "0.13.1" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 1045 - 1046 - [[package]] 1047 - name = "base64" 1048 - version = "0.21.7" 1049 - source = "registry+https://github.com/rust-lang/crates.io-index" 1050 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 1051 - 1052 - [[package]] 1053 - name = "base64" 1054 - version = "0.22.1" 1055 - source = "registry+https://github.com/rust-lang/crates.io-index" 1056 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 1057 - 1058 - [[package]] 1059 - name = "base64-simd" 1060 - version = "0.8.0" 1061 - source = "registry+https://github.com/rust-lang/crates.io-index" 1062 - checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 1063 - dependencies = [ 1064 - "outref", 1065 - "vsimd", 1066 - ] 1067 - 1068 - [[package]] 1069 - name = "base64ct" 1070 - version = "1.6.0" 1071 - source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 1073 - 1074 - [[package]] 1075 - name = "bcder" 1076 - version = "0.7.4" 1077 - source = "registry+https://github.com/rust-lang/crates.io-index" 1078 - checksum = "c627747a6774aab38beb35990d88309481378558875a41da1a4b2e373c906ef0" 1079 - dependencies = [ 1080 - "bytes", 1081 - "smallvec", 1082 - ] 1083 - 1084 - [[package]] 1085 - name = "bench_cpu_intensive" 1086 - version = "0.1.0" 1087 - dependencies = [ 1088 - "serde", 1089 - "serde_json", 1090 - "tauri", 1091 - "tauri-build", 1092 - ] 1093 - 1094 - [[package]] 1095 - name = "bench_files_transfer" 1096 - version = "0.1.0" 1097 - dependencies = [ 1098 - "serde", 1099 - "serde_json", 1100 - "tauri", 1101 - "tauri-build", 1102 - ] 1103 - 1104 - [[package]] 1105 - name = "bench_helloworld" 1106 - version = "0.1.0" 1107 - dependencies = [ 1108 - "serde", 1109 - "serde_json", 1110 - "tauri", 1111 - "tauri-build", 1112 - ] 1113 - 1114 - [[package]] 1115 - name = "bit-set" 1116 - version = "0.5.3" 1117 - source = "registry+https://github.com/rust-lang/crates.io-index" 1118 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 1119 - dependencies = [ 1120 - "bit-vec", 1121 - ] 1122 - 1123 - [[package]] 1124 - name = "bit-vec" 1125 - version = "0.6.3" 1126 - source = "registry+https://github.com/rust-lang/crates.io-index" 1127 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 1128 - 1129 - [[package]] 1130 - name = "bit_field" 1131 - version = "0.10.2" 1132 - source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 1134 - 1135 - [[package]] 1136 - name = "bitfield" 1137 - version = "0.14.0" 1138 - source = "registry+https://github.com/rust-lang/crates.io-index" 1139 - checksum = "2d7e60934ceec538daadb9d8432424ed043a904d8e0243f3c6446bce549a46ac" 1140 - 1141 - [[package]] 1142 - name = "bitflags" 1143 - version = "1.3.2" 1144 - source = "registry+https://github.com/rust-lang/crates.io-index" 1145 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 1146 - 1147 - [[package]] 1148 - name = "bitflags" 1149 - version = "2.6.0" 1150 - source = "registry+https://github.com/rust-lang/crates.io-index" 1151 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 1152 - dependencies = [ 1153 - "serde", 1154 - ] 1155 - 1156 - [[package]] 1157 - name = "bitness" 1158 - version = "0.4.0" 1159 - source = "registry+https://github.com/rust-lang/crates.io-index" 1160 - checksum = "57792b99d555ebf109c83169228076f7d997e2b37ba1a653850ccd703ac7bab0" 1161 - dependencies = [ 1162 - "sysctl", 1163 - "thiserror 1.0.68", 1164 - "uname", 1165 - "winapi", 1166 - ] 1167 - 1168 - [[package]] 1169 - name = "bitstream-io" 1170 - version = "2.3.0" 1171 - source = "registry+https://github.com/rust-lang/crates.io-index" 1172 - checksum = "7c12d1856e42f0d817a835fe55853957c85c8c8a470114029143d3f12671446e" 1173 - 1174 - [[package]] 1175 - name = "bitvec" 1176 - version = "1.0.1" 1177 - source = "registry+https://github.com/rust-lang/crates.io-index" 1178 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 1179 - dependencies = [ 1180 - "funty", 1181 - "radium", 1182 - "tap", 1183 - "wyz", 1184 - ] 1185 - 1186 - [[package]] 1187 - name = "bitvec-nom2" 1188 - version = "0.2.1" 1189 - source = "registry+https://github.com/rust-lang/crates.io-index" 1190 - checksum = "d988fcc40055ceaa85edc55875a08f8abd29018582647fd82ad6128dba14a5f0" 1191 - dependencies = [ 1192 - "bitvec", 1193 - "nom", 1194 - ] 1195 - 1196 - [[package]] 1197 - name = "blake2" 1198 - version = "0.10.6" 1199 - source = "registry+https://github.com/rust-lang/crates.io-index" 1200 - checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 1201 - dependencies = [ 1202 - "digest", 1203 - ] 1204 - 1205 - [[package]] 1206 - name = "block" 1207 - version = "0.1.6" 1208 - source = "registry+https://github.com/rust-lang/crates.io-index" 1209 - checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 1210 - 1211 - [[package]] 1212 - name = "block-buffer" 1213 - version = "0.10.4" 1214 - source = "registry+https://github.com/rust-lang/crates.io-index" 1215 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 1216 - dependencies = [ 1217 - "generic-array", 1218 - ] 1219 - 1220 - [[package]] 1221 - name = "block-padding" 1222 - version = "0.3.3" 1223 - source = "registry+https://github.com/rust-lang/crates.io-index" 1224 - checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 1225 - dependencies = [ 1226 - "generic-array", 1227 - ] 1228 - 1229 - [[package]] 1230 - name = "block2" 1231 - version = "0.5.1" 1232 - source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 1234 - dependencies = [ 1235 - "objc2", 1236 - ] 1237 - 1238 - [[package]] 1239 - name = "blowfish" 1240 - version = "0.9.1" 1241 - source = "registry+https://github.com/rust-lang/crates.io-index" 1242 - checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" 1243 - dependencies = [ 1244 - "byteorder", 1245 - "cipher", 1246 - ] 1247 - 1248 - [[package]] 1249 - name = "borsh" 1250 - version = "1.5.1" 1251 - source = "registry+https://github.com/rust-lang/crates.io-index" 1252 - checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" 1253 - dependencies = [ 1254 - "borsh-derive", 1255 - "cfg_aliases", 1256 - ] 1257 - 1258 - [[package]] 1259 - name = "borsh-derive" 1260 - version = "1.5.1" 1261 - source = "registry+https://github.com/rust-lang/crates.io-index" 1262 - checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b" 1263 - dependencies = [ 1264 - "once_cell", 1265 - "proc-macro-crate 3.2.0", 1266 - "proc-macro2", 1267 - "quote", 1268 - "syn 2.0.87", 1269 - "syn_derive", 1270 - ] 1271 - 1272 - [[package]] 1273 - name = "brotli" 1274 - version = "7.0.0" 1275 - source = "registry+https://github.com/rust-lang/crates.io-index" 1276 - checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" 1277 - dependencies = [ 1278 - "alloc-no-stdlib", 1279 - "alloc-stdlib", 1280 - "brotli-decompressor", 1281 - ] 1282 - 1283 - [[package]] 1284 - name = "brotli-decompressor" 1285 - version = "4.0.1" 1286 - source = "registry+https://github.com/rust-lang/crates.io-index" 1287 - checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" 1288 - dependencies = [ 1289 - "alloc-no-stdlib", 1290 - "alloc-stdlib", 1291 - ] 1292 - 1293 - [[package]] 1294 - name = "bstr" 1295 - version = "1.10.0" 1296 - source = "registry+https://github.com/rust-lang/crates.io-index" 1297 - checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" 1298 - dependencies = [ 1299 - "memchr", 1300 - "serde", 1301 - ] 1302 - 1303 - [[package]] 1304 - name = "buffer-redux" 1305 - version = "1.0.2" 1306 - source = "registry+https://github.com/rust-lang/crates.io-index" 1307 - checksum = "4e8acf87c5b9f5897cd3ebb9a327f420e0cae9dd4e5c1d2e36f2c84c571a58f1" 1308 - dependencies = [ 1309 - "memchr", 1310 - ] 1311 - 1312 - [[package]] 1313 - name = "built" 1314 - version = "0.7.4" 1315 - source = "registry+https://github.com/rust-lang/crates.io-index" 1316 - checksum = "236e6289eda5a812bc6b53c3b024039382a2895fbbeef2d748b2931546d392c4" 1317 - 1318 - [[package]] 1319 - name = "bumpalo" 1320 - version = "3.16.0" 1321 - source = "registry+https://github.com/rust-lang/crates.io-index" 1322 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 1323 - dependencies = [ 1324 - "allocator-api2", 1325 - ] 1326 - 1327 - [[package]] 1328 - name = "byte-unit" 1329 - version = "5.1.4" 1330 - source = "registry+https://github.com/rust-lang/crates.io-index" 1331 - checksum = "33ac19bdf0b2665407c39d82dbc937e951e7e2001609f0fb32edd0af45a2d63e" 1332 - dependencies = [ 1333 - "rust_decimal", 1334 - "serde", 1335 - "utf8-width", 1336 - ] 1337 - 1338 - [[package]] 1339 - name = "bytecheck" 1340 - version = "0.6.12" 1341 - source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 1343 - dependencies = [ 1344 - "bytecheck_derive", 1345 - "ptr_meta", 1346 - "simdutf8", 1347 - ] 1348 - 1349 - [[package]] 1350 - name = "bytecheck_derive" 1351 - version = "0.6.12" 1352 - source = "registry+https://github.com/rust-lang/crates.io-index" 1353 - checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 1354 - dependencies = [ 1355 - "proc-macro2", 1356 - "quote", 1357 - "syn 1.0.109", 1358 - ] 1359 - 1360 - [[package]] 1361 - name = "bytecount" 1362 - version = "0.6.8" 1363 - source = "registry+https://github.com/rust-lang/crates.io-index" 1364 - checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce" 1365 - 1366 - [[package]] 1367 - name = "bytemuck" 1368 - version = "1.18.0" 1369 - source = "registry+https://github.com/rust-lang/crates.io-index" 1370 - checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae" 1371 - 1372 - [[package]] 1373 - name = "byteorder" 1374 - version = "1.5.0" 1375 - source = "registry+https://github.com/rust-lang/crates.io-index" 1376 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 1377 - 1378 - [[package]] 1379 - name = "byteorder-lite" 1380 - version = "0.1.0" 1381 - source = "registry+https://github.com/rust-lang/crates.io-index" 1382 - checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 1383 - 1384 - [[package]] 1385 - name = "bytes" 1386 - version = "1.8.0" 1387 - source = "registry+https://github.com/rust-lang/crates.io-index" 1388 - checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" 1389 - dependencies = [ 1390 - "serde", 1391 - ] 1392 - 1393 - [[package]] 1394 - name = "bytes-utils" 1395 - version = "0.1.4" 1396 - source = "registry+https://github.com/rust-lang/crates.io-index" 1397 - checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" 1398 - dependencies = [ 1399 - "bytes", 1400 - "either", 1401 - ] 1402 - 1403 - [[package]] 1404 - name = "bytesize" 1405 - version = "1.3.0" 1406 - source = "registry+https://github.com/rust-lang/crates.io-index" 1407 - checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" 1408 - 1409 - [[package]] 1410 - name = "bzip2" 1411 - version = "0.4.4" 1412 - source = "registry+https://github.com/rust-lang/crates.io-index" 1413 - checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 1414 - dependencies = [ 1415 - "bzip2-sys", 1416 - "libc", 1417 - ] 1418 - 1419 - [[package]] 1420 - name = "bzip2-sys" 1421 - version = "0.1.11+1.0.8" 1422 - source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 1424 - dependencies = [ 1425 - "cc", 1426 - "libc", 1427 - "pkg-config", 1428 - ] 1429 - 1430 - [[package]] 1431 - name = "cairo-rs" 1432 - version = "0.18.5" 1433 - source = "registry+https://github.com/rust-lang/crates.io-index" 1434 - checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 1435 - dependencies = [ 1436 - "bitflags 2.6.0", 1437 - "cairo-sys-rs", 1438 - "glib", 1439 - "libc", 1440 - "once_cell", 1441 - "thiserror 1.0.68", 1442 - ] 1443 - 1444 - [[package]] 1445 - name = "cairo-sys-rs" 1446 - version = "0.18.2" 1447 - source = "registry+https://github.com/rust-lang/crates.io-index" 1448 - checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 1449 - dependencies = [ 1450 - "glib-sys", 1451 - "libc", 1452 - "system-deps", 1453 - ] 1454 - 1455 - [[package]] 1456 - name = "camellia" 1457 - version = "0.1.0" 1458 - source = "registry+https://github.com/rust-lang/crates.io-index" 1459 - checksum = "3264e2574e9ef2b53ce6f536dea83a69ac0bc600b762d1523ff83fe07230ce30" 1460 - dependencies = [ 1461 - "byteorder", 1462 - "cipher", 1463 - ] 1464 - 1465 - [[package]] 1466 - name = "camino" 1467 - version = "1.1.9" 1468 - source = "registry+https://github.com/rust-lang/crates.io-index" 1469 - checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" 1470 - dependencies = [ 1471 - "serde", 1472 - ] 1473 - 1474 - [[package]] 1475 - name = "cargo-mobile2" 1476 - version = "0.17.3" 1477 - source = "registry+https://github.com/rust-lang/crates.io-index" 1478 - checksum = "5c8052fc43184dc6c572437c2f8dae83e4ca9a5b27c790e269b90b080c1b9301" 1479 - dependencies = [ 1480 - "colored", 1481 - "core-foundation 0.10.0", 1482 - "deunicode", 1483 - "duct", 1484 - "dunce", 1485 - "embed-resource", 1486 - "english-numbers", 1487 - "freedesktop_entry_parser", 1488 - "handlebars", 1489 - "heck 0.5.0", 1490 - "home", 1491 - "ignore", 1492 - "java-properties", 1493 - "libc", 1494 - "log", 1495 - "once-cell-regex", 1496 - "os_info", 1497 - "os_pipe", 1498 - "path_abs", 1499 - "serde", 1500 - "serde_json", 1501 - "textwrap", 1502 - "thiserror 1.0.68", 1503 - "toml 0.8.19", 1504 - "ureq", 1505 - "which 6.0.3", 1506 - "windows", 1507 - "x509-certificate", 1508 - ] 1509 - 1510 - [[package]] 1511 - name = "cargo-platform" 1512 - version = "0.1.8" 1513 - source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" 1515 - dependencies = [ 1516 - "serde", 1517 - ] 1518 - 1519 - [[package]] 1520 - name = "cargo_metadata" 1521 - version = "0.18.1" 1522 - source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" 1524 - dependencies = [ 1525 - "camino", 1526 - "cargo-platform", 1527 - "semver", 1528 - "serde", 1529 - "serde_json", 1530 - "thiserror 1.0.68", 1531 - ] 1532 - 1533 - [[package]] 1534 - name = "cargo_toml" 1535 - version = "0.17.2" 1536 - source = "registry+https://github.com/rust-lang/crates.io-index" 1537 - checksum = "8a969e13a7589e9e3e4207e153bae624ade2b5622fb4684a4923b23ec3d57719" 1538 - dependencies = [ 1539 - "serde", 1540 - "toml 0.8.19", 1541 - ] 1542 - 1543 - [[package]] 1544 - name = "cast5" 1545 - version = "0.11.1" 1546 - source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "26b07d673db1ccf000e90f54b819db9e75a8348d6eb056e9b8ab53231b7a9911" 1548 - dependencies = [ 1549 - "cipher", 1550 - ] 1551 - 1552 - [[package]] 1553 - name = "castaway" 1554 - version = "0.2.3" 1555 - source = "registry+https://github.com/rust-lang/crates.io-index" 1556 - checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5" 1557 - dependencies = [ 1558 - "rustversion", 1559 - ] 1560 - 1561 - [[package]] 1562 - name = "cbc" 1563 - version = "0.1.2" 1564 - source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 1566 - dependencies = [ 1567 - "cipher", 1568 - ] 1569 - 1570 - [[package]] 1571 - name = "cc" 1572 - version = "1.1.24" 1573 - source = "registry+https://github.com/rust-lang/crates.io-index" 1574 - checksum = "812acba72f0a070b003d3697490d2b55b837230ae7c6c6497f05cc2ddbb8d938" 1575 - dependencies = [ 1576 - "jobserver", 1577 - "libc", 1578 - "shlex", 1579 - ] 1580 - 1581 - [[package]] 1582 - name = "cesu8" 1583 - version = "1.1.0" 1584 - source = "registry+https://github.com/rust-lang/crates.io-index" 1585 - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 1586 - 1587 - [[package]] 1588 - name = "cfb" 1589 - version = "0.7.3" 1590 - source = "registry+https://github.com/rust-lang/crates.io-index" 1591 - checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 1592 - dependencies = [ 1593 - "byteorder", 1594 - "fnv", 1595 - "uuid", 1596 - ] 1597 - 1598 - [[package]] 1599 - name = "cfb-mode" 1600 - version = "0.8.2" 1601 - source = "registry+https://github.com/rust-lang/crates.io-index" 1602 - checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330" 1603 - dependencies = [ 1604 - "cipher", 1605 - ] 1606 - 1607 - [[package]] 1608 - name = "cfg-expr" 1609 - version = "0.15.8" 1610 - source = "registry+https://github.com/rust-lang/crates.io-index" 1611 - checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 1612 - dependencies = [ 1613 - "smallvec", 1614 - "target-lexicon", 1615 - ] 1616 - 1617 - [[package]] 1618 - name = "cfg-if" 1619 - version = "1.0.0" 1620 - source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1622 - 1623 - [[package]] 1624 - name = "cfg_aliases" 1625 - version = "0.2.1" 1626 - source = "registry+https://github.com/rust-lang/crates.io-index" 1627 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 1628 - 1629 - [[package]] 1630 - name = "chrono" 1631 - version = "0.4.38" 1632 - source = "registry+https://github.com/rust-lang/crates.io-index" 1633 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 1634 - dependencies = [ 1635 - "android-tzdata", 1636 - "iana-time-zone", 1637 - "js-sys", 1638 - "num-traits", 1639 - "serde", 1640 - "wasm-bindgen", 1641 - "windows-targets 0.52.6", 1642 - ] 1643 - 1644 - [[package]] 1645 - name = "chunked_transfer" 1646 - version = "1.5.0" 1647 - source = "registry+https://github.com/rust-lang/crates.io-index" 1648 - checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901" 1649 - 1650 - [[package]] 1651 - name = "cipher" 1652 - version = "0.4.4" 1653 - source = "registry+https://github.com/rust-lang/crates.io-index" 1654 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1655 - dependencies = [ 1656 - "crypto-common", 1657 - "inout", 1658 - ] 1659 - 1660 - [[package]] 1661 - name = "clap" 1662 - version = "4.5.19" 1663 - source = "registry+https://github.com/rust-lang/crates.io-index" 1664 - checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615" 1665 - dependencies = [ 1666 - "clap_builder", 1667 - "clap_derive", 1668 - ] 1669 - 1670 - [[package]] 1671 - name = "clap_builder" 1672 - version = "4.5.19" 1673 - source = "registry+https://github.com/rust-lang/crates.io-index" 1674 - checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b" 1675 - dependencies = [ 1676 - "anstream", 1677 - "anstyle", 1678 - "clap_lex", 1679 - "strsim", 1680 - ] 1681 - 1682 - [[package]] 1683 - name = "clap_complete" 1684 - version = "4.5.29" 1685 - source = "registry+https://github.com/rust-lang/crates.io-index" 1686 - checksum = "8937760c3f4c60871870b8c3ee5f9b30771f792a7045c48bcbba999d7d6b3b8e" 1687 - dependencies = [ 1688 - "clap", 1689 - ] 1690 - 1691 - [[package]] 1692 - name = "clap_derive" 1693 - version = "4.5.18" 1694 - source = "registry+https://github.com/rust-lang/crates.io-index" 1695 - checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 1696 - dependencies = [ 1697 - "heck 0.5.0", 1698 - "proc-macro2", 1699 - "quote", 1700 - "syn 2.0.87", 1701 - ] 1702 - 1703 - [[package]] 1704 - name = "clap_lex" 1705 - version = "0.7.2" 1706 - source = "registry+https://github.com/rust-lang/crates.io-index" 1707 - checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 1708 - 1709 - [[package]] 1710 - name = "cmac" 1711 - version = "0.7.2" 1712 - source = "registry+https://github.com/rust-lang/crates.io-index" 1713 - checksum = "8543454e3c3f5126effff9cd44d562af4e31fb8ce1cc0d3dcd8f084515dbc1aa" 1714 - dependencies = [ 1715 - "cipher", 1716 - "dbl", 1717 - "digest", 1718 - ] 1719 - 1720 - [[package]] 1721 - name = "cocoa" 1722 - version = "0.25.0" 1723 - source = "registry+https://github.com/rust-lang/crates.io-index" 1724 - checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c" 1725 - dependencies = [ 1726 - "bitflags 1.3.2", 1727 - "block", 1728 - "cocoa-foundation 0.1.2", 1729 - "core-foundation 0.9.4", 1730 - "core-graphics 0.23.2", 1731 - "foreign-types 0.5.0", 1732 - "libc", 1733 - "objc", 1734 - ] 1735 - 1736 - [[package]] 1737 - name = "cocoa" 1738 - version = "0.26.0" 1739 - source = "registry+https://github.com/rust-lang/crates.io-index" 1740 - checksum = "f79398230a6e2c08f5c9760610eb6924b52aa9e7950a619602baba59dcbbdbb2" 1741 - dependencies = [ 1742 - "bitflags 2.6.0", 1743 - "block", 1744 - "cocoa-foundation 0.2.0", 1745 - "core-foundation 0.10.0", 1746 - "core-graphics 0.24.0", 1747 - "foreign-types 0.5.0", 1748 - "libc", 1749 - "objc", 1750 - ] 1751 - 1752 - [[package]] 1753 - name = "cocoa-foundation" 1754 - version = "0.1.2" 1755 - source = "registry+https://github.com/rust-lang/crates.io-index" 1756 - checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" 1757 - dependencies = [ 1758 - "bitflags 1.3.2", 1759 - "block", 1760 - "core-foundation 0.9.4", 1761 - "core-graphics-types 0.1.3", 1762 - "libc", 1763 - "objc", 1764 - ] 1765 - 1766 - [[package]] 1767 - name = "cocoa-foundation" 1768 - version = "0.2.0" 1769 - source = "registry+https://github.com/rust-lang/crates.io-index" 1770 - checksum = "e14045fb83be07b5acf1c0884b2180461635b433455fa35d1cd6f17f1450679d" 1771 - dependencies = [ 1772 - "bitflags 2.6.0", 1773 - "block", 1774 - "core-foundation 0.10.0", 1775 - "core-graphics-types 0.2.0", 1776 - "libc", 1777 - "objc", 1778 - ] 1779 - 1780 - [[package]] 1781 - name = "color_quant" 1782 - version = "1.1.0" 1783 - source = "registry+https://github.com/rust-lang/crates.io-index" 1784 - checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 1785 - 1786 - [[package]] 1787 - name = "colorchoice" 1788 - version = "1.0.2" 1789 - source = "registry+https://github.com/rust-lang/crates.io-index" 1790 - checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 1791 - 1792 - [[package]] 1793 - name = "colored" 1794 - version = "2.1.0" 1795 - source = "registry+https://github.com/rust-lang/crates.io-index" 1796 - checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" 1797 - dependencies = [ 1798 - "lazy_static", 1799 - "windows-sys 0.48.0", 1800 - ] 1801 - 1802 - [[package]] 1803 - name = "combine" 1804 - version = "4.6.7" 1805 - source = "registry+https://github.com/rust-lang/crates.io-index" 1806 - checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 1807 - dependencies = [ 1808 - "bytes", 1809 - "memchr", 1810 - ] 1811 - 1812 - [[package]] 1813 - name = "common-path" 1814 - version = "1.0.0" 1815 - source = "registry+https://github.com/rust-lang/crates.io-index" 1816 - checksum = "2382f75942f4b3be3690fe4f86365e9c853c1587d6ee58212cebf6e2a9ccd101" 1817 - 1818 - [[package]] 1819 - name = "compact_str" 1820 - version = "0.8.0" 1821 - source = "registry+https://github.com/rust-lang/crates.io-index" 1822 - checksum = "6050c3a16ddab2e412160b31f2c871015704239bca62f72f6e5f0be631d3f644" 1823 - dependencies = [ 1824 - "castaway", 1825 - "cfg-if", 1826 - "itoa 1.0.11", 1827 - "rustversion", 1828 - "ryu", 1829 - "static_assertions", 1830 - ] 1831 - 1832 - [[package]] 1833 - name = "console" 1834 - version = "0.15.8" 1835 - source = "registry+https://github.com/rust-lang/crates.io-index" 1836 - checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 1837 - dependencies = [ 1838 - "encode_unicode", 1839 - "lazy_static", 1840 - "libc", 1841 - "unicode-width", 1842 - "windows-sys 0.52.0", 1843 - ] 1844 - 1845 - [[package]] 1846 - name = "console_error_panic_hook" 1847 - version = "0.1.7" 1848 - source = "registry+https://github.com/rust-lang/crates.io-index" 1849 - checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 1850 - dependencies = [ 1851 - "cfg-if", 1852 - "wasm-bindgen", 1853 - ] 1854 - 1855 - [[package]] 1856 - name = "const-oid" 1857 - version = "0.9.6" 1858 - source = "registry+https://github.com/rust-lang/crates.io-index" 1859 - checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1860 - 1861 - [[package]] 1862 - name = "const_panic" 1863 - version = "0.2.10" 1864 - source = "registry+https://github.com/rust-lang/crates.io-index" 1865 - checksum = "013b6c2c3a14d678f38cd23994b02da3a1a1b6a5d1eedddfe63a5a5f11b13a81" 1866 - 1867 - [[package]] 1868 - name = "convert_case" 1869 - version = "0.4.0" 1870 - source = "registry+https://github.com/rust-lang/crates.io-index" 1871 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1872 - 1873 - [[package]] 1874 - name = "convert_case" 1875 - version = "0.6.0" 1876 - source = "registry+https://github.com/rust-lang/crates.io-index" 1877 - checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 1878 - dependencies = [ 1879 - "unicode-segmentation", 1880 - ] 1881 - 1882 - [[package]] 1883 - name = "cookie" 1884 - version = "0.18.1" 1885 - source = "registry+https://github.com/rust-lang/crates.io-index" 1886 - checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 1887 - dependencies = [ 1888 - "time", 1889 - "version_check", 1890 - ] 1891 - 1892 - [[package]] 1893 - name = "cookie-factory" 1894 - version = "0.3.3" 1895 - source = "registry+https://github.com/rust-lang/crates.io-index" 1896 - checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2" 1897 - dependencies = [ 1898 - "futures", 1899 - ] 1900 - 1901 - [[package]] 1902 - name = "core-foundation" 1903 - version = "0.9.4" 1904 - source = "registry+https://github.com/rust-lang/crates.io-index" 1905 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1906 - dependencies = [ 1907 - "core-foundation-sys", 1908 - "libc", 1909 - ] 1910 - 1911 - [[package]] 1912 - name = "core-foundation" 1913 - version = "0.10.0" 1914 - source = "registry+https://github.com/rust-lang/crates.io-index" 1915 - checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" 1916 - dependencies = [ 1917 - "core-foundation-sys", 1918 - "libc", 1919 - ] 1920 - 1921 - [[package]] 1922 - name = "core-foundation-sys" 1923 - version = "0.8.7" 1924 - source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 1926 - 1927 - [[package]] 1928 - name = "core-graphics" 1929 - version = "0.23.2" 1930 - source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" 1932 - dependencies = [ 1933 - "bitflags 1.3.2", 1934 - "core-foundation 0.9.4", 1935 - "core-graphics-types 0.1.3", 1936 - "foreign-types 0.5.0", 1937 - "libc", 1938 - ] 1939 - 1940 - [[package]] 1941 - name = "core-graphics" 1942 - version = "0.24.0" 1943 - source = "registry+https://github.com/rust-lang/crates.io-index" 1944 - checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" 1945 - dependencies = [ 1946 - "bitflags 2.6.0", 1947 - "core-foundation 0.10.0", 1948 - "core-graphics-types 0.2.0", 1949 - "foreign-types 0.5.0", 1950 - "libc", 1951 - ] 1952 - 1953 - [[package]] 1954 - name = "core-graphics-types" 1955 - version = "0.1.3" 1956 - source = "registry+https://github.com/rust-lang/crates.io-index" 1957 - checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 1958 - dependencies = [ 1959 - "bitflags 1.3.2", 1960 - "core-foundation 0.9.4", 1961 - "libc", 1962 - ] 1963 - 1964 - [[package]] 1965 - name = "core-graphics-types" 1966 - version = "0.2.0" 1967 - source = "registry+https://github.com/rust-lang/crates.io-index" 1968 - checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" 1969 - dependencies = [ 1970 - "bitflags 2.6.0", 1971 - "core-foundation 0.10.0", 1972 - "libc", 1973 - ] 1974 - 1975 - [[package]] 1976 - name = "core_maths" 1977 - version = "0.1.0" 1978 - source = "registry+https://github.com/rust-lang/crates.io-index" 1979 - checksum = "e3b02505ccb8c50b0aa21ace0fc08c3e53adebd4e58caa18a36152803c7709a3" 1980 - dependencies = [ 1981 - "libm", 1982 - ] 1983 - 1984 - [[package]] 1985 - name = "cpio" 1986 - version = "0.4.0" 1987 - source = "registry+https://github.com/rust-lang/crates.io-index" 1988 - checksum = "80e3adec7390c7643049466136117057188edf5f23efc5c8b4fc8079c8dc34a6" 1989 - 1990 - [[package]] 1991 - name = "cpio-archive" 1992 - version = "0.9.0" 1993 - source = "registry+https://github.com/rust-lang/crates.io-index" 1994 - checksum = "63d5133d716d3d82da8c76367ddb0ab1733e2629f1462e4f39947e13b8b4b741" 1995 - dependencies = [ 1996 - "chrono", 1997 - "is_executable", 1998 - "simple-file-manifest", 1999 - "thiserror 1.0.68", 2000 - ] 2001 - 2002 - [[package]] 2003 - name = "cpufeatures" 2004 - version = "0.2.14" 2005 - source = "registry+https://github.com/rust-lang/crates.io-index" 2006 - checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" 2007 - dependencies = [ 2008 - "libc", 2009 - ] 2010 - 2011 - [[package]] 2012 - name = "crc24" 2013 - version = "0.1.6" 2014 - source = "registry+https://github.com/rust-lang/crates.io-index" 2015 - checksum = "fd121741cf3eb82c08dd3023eb55bf2665e5f60ec20f89760cf836ae4562e6a0" 2016 - 2017 - [[package]] 2018 - name = "crc32c" 2019 - version = "0.6.8" 2020 - source = "registry+https://github.com/rust-lang/crates.io-index" 2021 - checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" 2022 - dependencies = [ 2023 - "rustc_version", 2024 - ] 2025 - 2026 - [[package]] 2027 - name = "crc32fast" 2028 - version = "1.4.2" 2029 - source = "registry+https://github.com/rust-lang/crates.io-index" 2030 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 2031 - dependencies = [ 2032 - "cfg-if", 2033 - ] 2034 - 2035 - [[package]] 2036 - name = "crossbeam-channel" 2037 - version = "0.5.13" 2038 - source = "registry+https://github.com/rust-lang/crates.io-index" 2039 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 2040 - dependencies = [ 2041 - "crossbeam-utils", 2042 - ] 2043 - 2044 - [[package]] 2045 - name = "crossbeam-deque" 2046 - version = "0.8.5" 2047 - source = "registry+https://github.com/rust-lang/crates.io-index" 2048 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 2049 - dependencies = [ 2050 - "crossbeam-epoch", 2051 - "crossbeam-utils", 2052 - ] 2053 - 2054 - [[package]] 2055 - name = "crossbeam-epoch" 2056 - version = "0.9.18" 2057 - source = "registry+https://github.com/rust-lang/crates.io-index" 2058 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 2059 - dependencies = [ 2060 - "crossbeam-utils", 2061 - ] 2062 - 2063 - [[package]] 2064 - name = "crossbeam-utils" 2065 - version = "0.8.20" 2066 - source = "registry+https://github.com/rust-lang/crates.io-index" 2067 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 2068 - 2069 - [[package]] 2070 - name = "crunchy" 2071 - version = "0.2.2" 2072 - source = "registry+https://github.com/rust-lang/crates.io-index" 2073 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 2074 - 2075 - [[package]] 2076 - name = "crypto-bigint" 2077 - version = "0.4.9" 2078 - source = "registry+https://github.com/rust-lang/crates.io-index" 2079 - checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 2080 - dependencies = [ 2081 - "generic-array", 2082 - "rand_core 0.6.4", 2083 - "subtle", 2084 - "zeroize", 2085 - ] 2086 - 2087 - [[package]] 2088 - name = "crypto-bigint" 2089 - version = "0.5.5" 2090 - source = "registry+https://github.com/rust-lang/crates.io-index" 2091 - checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 2092 - dependencies = [ 2093 - "generic-array", 2094 - "rand_core 0.6.4", 2095 - "subtle", 2096 - "zeroize", 2097 - ] 2098 - 2099 - [[package]] 2100 - name = "crypto-common" 2101 - version = "0.1.6" 2102 - source = "registry+https://github.com/rust-lang/crates.io-index" 2103 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 2104 - dependencies = [ 2105 - "generic-array", 2106 - "rand_core 0.6.4", 2107 - "typenum", 2108 - ] 2109 - 2110 - [[package]] 2111 - name = "cryptographic-message-syntax" 2112 - version = "0.26.0" 2113 - source = "registry+https://github.com/rust-lang/crates.io-index" 2114 - checksum = "43c324ba1028cef7e3a71a00cbf585637bb0215dec2f6a2b566d094190a1309b" 2115 - dependencies = [ 2116 - "bcder", 2117 - "bytes", 2118 - "chrono", 2119 - "hex", 2120 - "pem", 2121 - "reqwest 0.11.27", 2122 - "ring", 2123 - "signature 2.2.0", 2124 - "x509-certificate", 2125 - ] 2126 - 2127 - [[package]] 2128 - name = "css-color" 2129 - version = "0.2.8" 2130 - source = "registry+https://github.com/rust-lang/crates.io-index" 2131 - checksum = "42aaeae719fd78ce501d77c6cdf01f7e96f26bcd5617a4903a1c2b97e388543a" 2132 - 2133 - [[package]] 2134 - name = "cssparser" 2135 - version = "0.27.2" 2136 - source = "registry+https://github.com/rust-lang/crates.io-index" 2137 - checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 2138 - dependencies = [ 2139 - "cssparser-macros", 2140 - "dtoa-short", 2141 - "itoa 0.4.8", 2142 - "matches", 2143 - "phf 0.8.0", 2144 - "proc-macro2", 2145 - "quote", 2146 - "smallvec", 2147 - "syn 1.0.109", 2148 - ] 2149 - 2150 - [[package]] 2151 - name = "cssparser-macros" 2152 - version = "0.6.1" 2153 - source = "registry+https://github.com/rust-lang/crates.io-index" 2154 - checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 2155 - dependencies = [ 2156 - "quote", 2157 - "syn 2.0.87", 2158 - ] 2159 - 2160 - [[package]] 2161 - name = "ctor" 2162 - version = "0.2.8" 2163 - source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" 2165 - dependencies = [ 2166 - "quote", 2167 - "syn 2.0.87", 2168 - ] 2169 - 2170 - [[package]] 2171 - name = "ctr" 2172 - version = "0.9.2" 2173 - source = "registry+https://github.com/rust-lang/crates.io-index" 2174 - checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 2175 - dependencies = [ 2176 - "cipher", 2177 - ] 2178 - 2179 - [[package]] 2180 - name = "ctrlc" 2181 - version = "3.4.5" 2182 - source = "registry+https://github.com/rust-lang/crates.io-index" 2183 - checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3" 2184 - dependencies = [ 2185 - "nix", 2186 - "windows-sys 0.59.0", 2187 - ] 2188 - 2189 - [[package]] 2190 - name = "curve25519-dalek" 2191 - version = "4.1.3" 2192 - source = "registry+https://github.com/rust-lang/crates.io-index" 2193 - checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 2194 - dependencies = [ 2195 - "cfg-if", 2196 - "cpufeatures", 2197 - "curve25519-dalek-derive", 2198 - "digest", 2199 - "fiat-crypto", 2200 - "rand_core 0.6.4", 2201 - "rustc_version", 2202 - "subtle", 2203 - "zeroize", 2204 - ] 2205 - 2206 - [[package]] 2207 - name = "curve25519-dalek-derive" 2208 - version = "0.1.1" 2209 - source = "registry+https://github.com/rust-lang/crates.io-index" 2210 - checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 2211 - dependencies = [ 2212 - "proc-macro2", 2213 - "quote", 2214 - "syn 2.0.87", 2215 - ] 2216 - 2217 - [[package]] 2218 - name = "darling" 2219 - version = "0.20.10" 2220 - source = "registry+https://github.com/rust-lang/crates.io-index" 2221 - checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 2222 - dependencies = [ 2223 - "darling_core", 2224 - "darling_macro", 2225 - ] 2226 - 2227 - [[package]] 2228 - name = "darling_core" 2229 - version = "0.20.10" 2230 - source = "registry+https://github.com/rust-lang/crates.io-index" 2231 - checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 2232 - dependencies = [ 2233 - "fnv", 2234 - "ident_case", 2235 - "proc-macro2", 2236 - "quote", 2237 - "strsim", 2238 - "syn 2.0.87", 2239 - ] 2240 - 2241 - [[package]] 2242 - name = "darling_macro" 2243 - version = "0.20.10" 2244 - source = "registry+https://github.com/rust-lang/crates.io-index" 2245 - checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 2246 - dependencies = [ 2247 - "darling_core", 2248 - "quote", 2249 - "syn 2.0.87", 2250 - ] 2251 - 2252 - [[package]] 2253 - name = "dashmap" 2254 - version = "6.1.0" 2255 - source = "registry+https://github.com/rust-lang/crates.io-index" 2256 - checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 2257 - dependencies = [ 2258 - "cfg-if", 2259 - "crossbeam-utils", 2260 - "hashbrown 0.14.5", 2261 - "lock_api", 2262 - "once_cell", 2263 - "parking_lot_core", 2264 - ] 2265 - 2266 - [[package]] 2267 - name = "data-encoding" 2268 - version = "2.6.0" 2269 - source = "registry+https://github.com/rust-lang/crates.io-index" 2270 - checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 2271 - 2272 - [[package]] 2273 - name = "data-url" 2274 - version = "0.3.1" 2275 - source = "registry+https://github.com/rust-lang/crates.io-index" 2276 - checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a" 2277 - 2278 - [[package]] 2279 - name = "dbl" 2280 - version = "0.3.2" 2281 - source = "registry+https://github.com/rust-lang/crates.io-index" 2282 - checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9" 2283 - dependencies = [ 2284 - "generic-array", 2285 - ] 2286 - 2287 - [[package]] 2288 - name = "der" 2289 - version = "0.6.1" 2290 - source = "registry+https://github.com/rust-lang/crates.io-index" 2291 - checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 2292 - dependencies = [ 2293 - "const-oid", 2294 - "zeroize", 2295 - ] 2296 - 2297 - [[package]] 2298 - name = "der" 2299 - version = "0.7.9" 2300 - source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" 2302 - dependencies = [ 2303 - "const-oid", 2304 - "pem-rfc7468", 2305 - "zeroize", 2306 - ] 2307 - 2308 - [[package]] 2309 - name = "deranged" 2310 - version = "0.3.11" 2311 - source = "registry+https://github.com/rust-lang/crates.io-index" 2312 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 2313 - dependencies = [ 2314 - "powerfmt", 2315 - "serde", 2316 - ] 2317 - 2318 - [[package]] 2319 - name = "derive_arbitrary" 2320 - version = "1.3.2" 2321 - source = "registry+https://github.com/rust-lang/crates.io-index" 2322 - checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 2323 - dependencies = [ 2324 - "proc-macro2", 2325 - "quote", 2326 - "syn 2.0.87", 2327 - ] 2328 - 2329 - [[package]] 2330 - name = "derive_builder" 2331 - version = "0.20.1" 2332 - source = "registry+https://github.com/rust-lang/crates.io-index" 2333 - checksum = "cd33f37ee6a119146a1781d3356a7c26028f83d779b2e04ecd45fdc75c76877b" 2334 - dependencies = [ 2335 - "derive_builder_macro", 2336 - ] 2337 - 2338 - [[package]] 2339 - name = "derive_builder_core" 2340 - version = "0.20.1" 2341 - source = "registry+https://github.com/rust-lang/crates.io-index" 2342 - checksum = "7431fa049613920234f22c47fdc33e6cf3ee83067091ea4277a3f8c4587aae38" 2343 - dependencies = [ 2344 - "darling", 2345 - "proc-macro2", 2346 - "quote", 2347 - "syn 2.0.87", 2348 - ] 2349 - 2350 - [[package]] 2351 - name = "derive_builder_macro" 2352 - version = "0.20.1" 2353 - source = "registry+https://github.com/rust-lang/crates.io-index" 2354 - checksum = "4abae7035bf79b9877b779505d8cf3749285b80c43941eda66604841889451dc" 2355 - dependencies = [ 2356 - "derive_builder_core", 2357 - "syn 2.0.87", 2358 - ] 2359 - 2360 - [[package]] 2361 - name = "derive_more" 2362 - version = "0.99.18" 2363 - source = "registry+https://github.com/rust-lang/crates.io-index" 2364 - checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" 2365 - dependencies = [ 2366 - "convert_case 0.4.0", 2367 - "proc-macro2", 2368 - "quote", 2369 - "rustc_version", 2370 - "syn 2.0.87", 2371 - ] 2372 - 2373 - [[package]] 2374 - name = "des" 2375 - version = "0.8.1" 2376 - source = "registry+https://github.com/rust-lang/crates.io-index" 2377 - checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e" 2378 - dependencies = [ 2379 - "cipher", 2380 - ] 2381 - 2382 - [[package]] 2383 - name = "deunicode" 2384 - version = "1.6.0" 2385 - source = "registry+https://github.com/rust-lang/crates.io-index" 2386 - checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00" 2387 - 2388 - [[package]] 2389 - name = "dialoguer" 2390 - version = "0.11.0" 2391 - source = "registry+https://github.com/rust-lang/crates.io-index" 2392 - checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" 2393 - dependencies = [ 2394 - "console", 2395 - "shell-words", 2396 - "tempfile", 2397 - "thiserror 1.0.68", 2398 - "zeroize", 2399 - ] 2400 - 2401 - [[package]] 2402 - name = "diff" 2403 - version = "0.1.13" 2404 - source = "registry+https://github.com/rust-lang/crates.io-index" 2405 - checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 2406 - 2407 - [[package]] 2408 - name = "difference" 2409 - version = "2.0.0" 2410 - source = "registry+https://github.com/rust-lang/crates.io-index" 2411 - checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" 2412 - 2413 - [[package]] 2414 - name = "digest" 2415 - version = "0.10.7" 2416 - source = "registry+https://github.com/rust-lang/crates.io-index" 2417 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 2418 - dependencies = [ 2419 - "block-buffer", 2420 - "const-oid", 2421 - "crypto-common", 2422 - "subtle", 2423 - ] 2424 - 2425 - [[package]] 2426 - name = "dirs" 2427 - version = "5.0.1" 2428 - source = "registry+https://github.com/rust-lang/crates.io-index" 2429 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 2430 - dependencies = [ 2431 - "dirs-sys", 2432 - ] 2433 - 2434 - [[package]] 2435 - name = "dirs-next" 2436 - version = "2.0.0" 2437 - source = "registry+https://github.com/rust-lang/crates.io-index" 2438 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 2439 - dependencies = [ 2440 - "cfg-if", 2441 - "dirs-sys-next", 2442 - ] 2443 - 2444 - [[package]] 2445 - name = "dirs-sys" 2446 - version = "0.4.1" 2447 - source = "registry+https://github.com/rust-lang/crates.io-index" 2448 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 2449 - dependencies = [ 2450 - "libc", 2451 - "option-ext", 2452 - "redox_users", 2453 - "windows-sys 0.48.0", 2454 - ] 2455 - 2456 - [[package]] 2457 - name = "dirs-sys-next" 2458 - version = "0.1.2" 2459 - source = "registry+https://github.com/rust-lang/crates.io-index" 2460 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 2461 - dependencies = [ 2462 - "libc", 2463 - "redox_users", 2464 - "winapi", 2465 - ] 2466 - 2467 - [[package]] 2468 - name = "dispatch" 2469 - version = "0.2.0" 2470 - source = "registry+https://github.com/rust-lang/crates.io-index" 2471 - checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 2472 - 2473 - [[package]] 2474 - name = "displaydoc" 2475 - version = "0.2.5" 2476 - source = "registry+https://github.com/rust-lang/crates.io-index" 2477 - checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 2478 - dependencies = [ 2479 - "proc-macro2", 2480 - "quote", 2481 - "syn 2.0.87", 2482 - ] 2483 - 2484 - [[package]] 2485 - name = "dlopen2" 2486 - version = "0.7.0" 2487 - source = "registry+https://github.com/rust-lang/crates.io-index" 2488 - checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" 2489 - dependencies = [ 2490 - "dlopen2_derive", 2491 - "libc", 2492 - "once_cell", 2493 - "winapi", 2494 - ] 2495 - 2496 - [[package]] 2497 - name = "dlopen2_derive" 2498 - version = "0.4.0" 2499 - source = "registry+https://github.com/rust-lang/crates.io-index" 2500 - checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54" 2501 - dependencies = [ 2502 - "proc-macro2", 2503 - "quote", 2504 - "syn 2.0.87", 2505 - ] 2506 - 2507 - [[package]] 2508 - name = "doc-comment" 2509 - version = "0.3.3" 2510 - source = "registry+https://github.com/rust-lang/crates.io-index" 2511 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 2512 - 2513 - [[package]] 2514 - name = "dpi" 2515 - version = "0.1.1" 2516 - source = "registry+https://github.com/rust-lang/crates.io-index" 2517 - checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53" 2518 - dependencies = [ 2519 - "serde", 2520 - ] 2521 - 2522 - [[package]] 2523 - name = "dsa" 2524 - version = "0.6.3" 2525 - source = "registry+https://github.com/rust-lang/crates.io-index" 2526 - checksum = "48bc224a9084ad760195584ce5abb3c2c34a225fa312a128ad245a6b412b7689" 2527 - dependencies = [ 2528 - "digest", 2529 - "num-bigint-dig", 2530 - "num-traits", 2531 - "pkcs8 0.10.2", 2532 - "rfc6979 0.4.0", 2533 - "sha2", 2534 - "signature 2.2.0", 2535 - "zeroize", 2536 - ] 2537 - 2538 - [[package]] 2539 - name = "dtoa" 2540 - version = "1.0.9" 2541 - source = "registry+https://github.com/rust-lang/crates.io-index" 2542 - checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" 2543 - 2544 - [[package]] 2545 - name = "dtoa-short" 2546 - version = "0.3.5" 2547 - source = "registry+https://github.com/rust-lang/crates.io-index" 2548 - checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 2549 - dependencies = [ 2550 - "dtoa", 2551 - ] 2552 - 2553 - [[package]] 2554 - name = "duct" 2555 - version = "0.13.7" 2556 - source = "registry+https://github.com/rust-lang/crates.io-index" 2557 - checksum = "e4ab5718d1224b63252cd0c6f74f6480f9ffeb117438a2e0f5cf6d9a4798929c" 2558 - dependencies = [ 2559 - "libc", 2560 - "once_cell", 2561 - "os_pipe", 2562 - "shared_child", 2563 - ] 2564 - 2565 - [[package]] 2566 - name = "dunce" 2567 - version = "1.0.5" 2568 - source = "registry+https://github.com/rust-lang/crates.io-index" 2569 - checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 2570 - 2571 - [[package]] 2572 - name = "dyn-clone" 2573 - version = "1.0.17" 2574 - source = "registry+https://github.com/rust-lang/crates.io-index" 2575 - checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" 2576 - 2577 - [[package]] 2578 - name = "eax" 2579 - version = "0.5.0" 2580 - source = "registry+https://github.com/rust-lang/crates.io-index" 2581 - checksum = "9954fabd903b82b9d7a68f65f97dc96dd9ad368e40ccc907a7c19d53e6bfac28" 2582 - dependencies = [ 2583 - "aead", 2584 - "cipher", 2585 - "cmac", 2586 - "ctr", 2587 - "subtle", 2588 - ] 2589 - 2590 - [[package]] 2591 - name = "ecdsa" 2592 - version = "0.14.8" 2593 - source = "registry+https://github.com/rust-lang/crates.io-index" 2594 - checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 2595 - dependencies = [ 2596 - "der 0.6.1", 2597 - "elliptic-curve 0.12.3", 2598 - "rfc6979 0.3.1", 2599 - "signature 1.6.4", 2600 - ] 2601 - 2602 - [[package]] 2603 - name = "ecdsa" 2604 - version = "0.16.9" 2605 - source = "registry+https://github.com/rust-lang/crates.io-index" 2606 - checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 2607 - dependencies = [ 2608 - "der 0.7.9", 2609 - "digest", 2610 - "elliptic-curve 0.13.8", 2611 - "rfc6979 0.4.0", 2612 - "signature 2.2.0", 2613 - "spki 0.7.3", 2614 - ] 2615 - 2616 - [[package]] 2617 - name = "ed25519" 2618 - version = "2.2.3" 2619 - source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 2621 - dependencies = [ 2622 - "pkcs8 0.10.2", 2623 - "signature 2.2.0", 2624 - ] 2625 - 2626 - [[package]] 2627 - name = "ed25519-dalek" 2628 - version = "2.1.1" 2629 - source = "registry+https://github.com/rust-lang/crates.io-index" 2630 - checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 2631 - dependencies = [ 2632 - "curve25519-dalek", 2633 - "ed25519", 2634 - "serde", 2635 - "sha2", 2636 - "subtle", 2637 - "zeroize", 2638 - ] 2639 - 2640 - [[package]] 2641 - name = "either" 2642 - version = "1.13.0" 2643 - source = "registry+https://github.com/rust-lang/crates.io-index" 2644 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 2645 - 2646 - [[package]] 2647 - name = "elf" 2648 - version = "0.7.4" 2649 - source = "registry+https://github.com/rust-lang/crates.io-index" 2650 - checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b" 2651 - 2652 - [[package]] 2653 - name = "elliptic-curve" 2654 - version = "0.12.3" 2655 - source = "registry+https://github.com/rust-lang/crates.io-index" 2656 - checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 2657 - dependencies = [ 2658 - "base16ct 0.1.1", 2659 - "crypto-bigint 0.4.9", 2660 - "der 0.6.1", 2661 - "digest", 2662 - "ff 0.12.1", 2663 - "generic-array", 2664 - "group 0.12.1", 2665 - "pkcs8 0.9.0", 2666 - "rand_core 0.6.4", 2667 - "sec1 0.3.0", 2668 - "subtle", 2669 - "zeroize", 2670 - ] 2671 - 2672 - [[package]] 2673 - name = "elliptic-curve" 2674 - version = "0.13.8" 2675 - source = "registry+https://github.com/rust-lang/crates.io-index" 2676 - checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 2677 - dependencies = [ 2678 - "base16ct 0.2.0", 2679 - "crypto-bigint 0.5.5", 2680 - "digest", 2681 - "ff 0.13.0", 2682 - "generic-array", 2683 - "group 0.13.0", 2684 - "hkdf", 2685 - "pem-rfc7468", 2686 - "pkcs8 0.10.2", 2687 - "rand_core 0.6.4", 2688 - "sec1 0.7.3", 2689 - "subtle", 2690 - "zeroize", 2691 - ] 2692 - 2693 - [[package]] 2694 - name = "embed-resource" 2695 - version = "2.5.0" 2696 - source = "registry+https://github.com/rust-lang/crates.io-index" 2697 - checksum = "f4e24052d7be71f0efb50c201557f6fe7d237cfd5a64fd5bcd7fd8fe32dbbffa" 2698 - dependencies = [ 2699 - "cc", 2700 - "memchr", 2701 - "rustc_version", 2702 - "toml 0.8.19", 2703 - "vswhom", 2704 - "winreg 0.52.0", 2705 - ] 2706 - 2707 - [[package]] 2708 - name = "embed_plist" 2709 - version = "1.2.2" 2710 - source = "registry+https://github.com/rust-lang/crates.io-index" 2711 - checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 2712 - 2713 - [[package]] 2714 - name = "encode_unicode" 2715 - version = "0.3.6" 2716 - source = "registry+https://github.com/rust-lang/crates.io-index" 2717 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 2718 - 2719 - [[package]] 2720 - name = "encoding_rs" 2721 - version = "0.8.34" 2722 - source = "registry+https://github.com/rust-lang/crates.io-index" 2723 - checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 2724 - dependencies = [ 2725 - "cfg-if", 2726 - ] 2727 - 2728 - [[package]] 2729 - name = "english-numbers" 2730 - version = "0.3.3" 2731 - source = "registry+https://github.com/rust-lang/crates.io-index" 2732 - checksum = "4e4f5d6e192964d498b45abee72ca445e91909094bc8e8791259e82c2a0d1aa6" 2733 - 2734 - [[package]] 2735 - name = "enum-display-derive" 2736 - version = "0.1.1" 2737 - source = "registry+https://github.com/rust-lang/crates.io-index" 2738 - checksum = "f16ef37b2a9b242295d61a154ee91ae884afff6b8b933b486b12481cc58310ca" 2739 - dependencies = [ 2740 - "proc-macro2", 2741 - "quote", 2742 - "syn 1.0.109", 2743 - ] 2744 - 2745 - [[package]] 2746 - name = "enum-primitive-derive" 2747 - version = "0.3.0" 2748 - source = "registry+https://github.com/rust-lang/crates.io-index" 2749 - checksum = "ba7795da175654fe16979af73f81f26a8ea27638d8d9823d317016888a63dc4c" 2750 - dependencies = [ 2751 - "num-traits", 2752 - "quote", 2753 - "syn 2.0.87", 2754 - ] 2755 - 2756 - [[package]] 2757 - name = "env_filter" 2758 - version = "0.1.2" 2759 - source = "registry+https://github.com/rust-lang/crates.io-index" 2760 - checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" 2761 - dependencies = [ 2762 - "log", 2763 - "regex", 2764 - ] 2765 - 2766 - [[package]] 2767 - name = "env_logger" 2768 - version = "0.8.4" 2769 - source = "registry+https://github.com/rust-lang/crates.io-index" 2770 - checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" 2771 - dependencies = [ 2772 - "log", 2773 - "regex", 2774 - ] 2775 - 2776 - [[package]] 2777 - name = "env_logger" 2778 - version = "0.10.2" 2779 - source = "registry+https://github.com/rust-lang/crates.io-index" 2780 - checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 2781 - dependencies = [ 2782 - "humantime", 2783 - "is-terminal", 2784 - "log", 2785 - "regex", 2786 - "termcolor", 2787 - ] 2788 - 2789 - [[package]] 2790 - name = "env_logger" 2791 - version = "0.11.5" 2792 - source = "registry+https://github.com/rust-lang/crates.io-index" 2793 - checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" 2794 - dependencies = [ 2795 - "anstream", 2796 - "anstyle", 2797 - "env_filter", 2798 - "humantime", 2799 - "log", 2800 - ] 2801 - 2802 - [[package]] 2803 - name = "equivalent" 2804 - version = "1.0.1" 2805 - source = "registry+https://github.com/rust-lang/crates.io-index" 2806 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 2807 - 2808 - [[package]] 2809 - name = "erased-serde" 2810 - version = "0.4.5" 2811 - source = "registry+https://github.com/rust-lang/crates.io-index" 2812 - checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d" 2813 - dependencies = [ 2814 - "serde", 2815 - "typeid", 2816 - ] 2817 - 2818 - [[package]] 2819 - name = "errno" 2820 - version = "0.3.9" 2821 - source = "registry+https://github.com/rust-lang/crates.io-index" 2822 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 2823 - dependencies = [ 2824 - "libc", 2825 - "windows-sys 0.52.0", 2826 - ] 2827 - 2828 - [[package]] 2829 - name = "exr" 2830 - version = "1.72.0" 2831 - source = "registry+https://github.com/rust-lang/crates.io-index" 2832 - checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4" 2833 - dependencies = [ 2834 - "bit_field", 2835 - "flume", 2836 - "half", 2837 - "lebe", 2838 - "miniz_oxide 0.7.4", 2839 - "rayon-core", 2840 - "smallvec", 2841 - "zune-inflate", 2842 - ] 2843 - 2844 - [[package]] 2845 - name = "fancy-regex" 2846 - version = "0.13.0" 2847 - source = "registry+https://github.com/rust-lang/crates.io-index" 2848 - checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2" 2849 - dependencies = [ 2850 - "bit-set", 2851 - "regex-automata", 2852 - "regex-syntax", 2853 - ] 2854 - 2855 - [[package]] 2856 - name = "fastrand" 2857 - version = "2.1.1" 2858 - source = "registry+https://github.com/rust-lang/crates.io-index" 2859 - checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" 2860 - 2861 - [[package]] 2862 - name = "fdeflate" 2863 - version = "0.3.5" 2864 - source = "registry+https://github.com/rust-lang/crates.io-index" 2865 - checksum = "d8090f921a24b04994d9929e204f50b498a33ea6ba559ffaa05e04f7ee7fb5ab" 2866 - dependencies = [ 2867 - "simd-adler32", 2868 - ] 2869 - 2870 - [[package]] 2871 - name = "fern" 2872 - version = "0.6.2" 2873 - source = "registry+https://github.com/rust-lang/crates.io-index" 2874 - checksum = "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee" 2875 - dependencies = [ 2876 - "log", 2877 - ] 2878 - 2879 - [[package]] 2880 - name = "ff" 2881 - version = "0.12.1" 2882 - source = "registry+https://github.com/rust-lang/crates.io-index" 2883 - checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 2884 - dependencies = [ 2885 - "rand_core 0.6.4", 2886 - "subtle", 2887 - ] 2888 - 2889 - [[package]] 2890 - name = "ff" 2891 - version = "0.13.0" 2892 - source = "registry+https://github.com/rust-lang/crates.io-index" 2893 - checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" 2894 - dependencies = [ 2895 - "rand_core 0.6.4", 2896 - "subtle", 2897 - ] 2898 - 2899 - [[package]] 2900 - name = "fiat-crypto" 2901 - version = "0.2.9" 2902 - source = "registry+https://github.com/rust-lang/crates.io-index" 2903 - checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 2904 - 2905 - [[package]] 2906 - name = "field-offset" 2907 - version = "0.3.6" 2908 - source = "registry+https://github.com/rust-lang/crates.io-index" 2909 - checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 2910 - dependencies = [ 2911 - "memoffset", 2912 - "rustc_version", 2913 - ] 2914 - 2915 - [[package]] 2916 - name = "figment" 2917 - version = "0.10.19" 2918 - source = "registry+https://github.com/rust-lang/crates.io-index" 2919 - checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3" 2920 - dependencies = [ 2921 - "atomic", 2922 - "pear", 2923 - "serde", 2924 - "toml 0.8.19", 2925 - "uncased", 2926 - "version_check", 2927 - ] 2928 - 2929 - [[package]] 2930 - name = "filetime" 2931 - version = "0.2.25" 2932 - source = "registry+https://github.com/rust-lang/crates.io-index" 2933 - checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" 2934 - dependencies = [ 2935 - "cfg-if", 2936 - "libc", 2937 - "libredox", 2938 - "windows-sys 0.59.0", 2939 - ] 2940 - 2941 - [[package]] 2942 - name = "flate2" 2943 - version = "1.0.34" 2944 - source = "registry+https://github.com/rust-lang/crates.io-index" 2945 - checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" 2946 - dependencies = [ 2947 - "crc32fast", 2948 - "miniz_oxide 0.8.0", 2949 - ] 2950 - 2951 - [[package]] 2952 - name = "float-cmp" 2953 - version = "0.9.0" 2954 - source = "registry+https://github.com/rust-lang/crates.io-index" 2955 - checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 2956 - 2957 - [[package]] 2958 - name = "fluent-uri" 2959 - version = "0.1.4" 2960 - source = "registry+https://github.com/rust-lang/crates.io-index" 2961 - checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d" 2962 - dependencies = [ 2963 - "bitflags 1.3.2", 2964 - ] 2965 - 2966 - [[package]] 2967 - name = "flume" 2968 - version = "0.11.0" 2969 - source = "registry+https://github.com/rust-lang/crates.io-index" 2970 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 2971 - dependencies = [ 2972 - "spin", 2973 - ] 2974 - 2975 - [[package]] 2976 - name = "fnv" 2977 - version = "1.0.7" 2978 - source = "registry+https://github.com/rust-lang/crates.io-index" 2979 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 2980 - 2981 - [[package]] 2982 - name = "fontconfig-parser" 2983 - version = "0.5.7" 2984 - source = "registry+https://github.com/rust-lang/crates.io-index" 2985 - checksum = "c1fcfcd44ca6e90c921fee9fa665d530b21ef1327a4c1a6c5250ea44b776ada7" 2986 - dependencies = [ 2987 - "roxmltree", 2988 - ] 2989 - 2990 - [[package]] 2991 - name = "fontdb" 2992 - version = "0.21.0" 2993 - source = "registry+https://github.com/rust-lang/crates.io-index" 2994 - checksum = "37be9fc20d966be438cd57a45767f73349477fb0f85ce86e000557f787298afb" 2995 - dependencies = [ 2996 - "fontconfig-parser", 2997 - "log", 2998 - "memmap2", 2999 - "slotmap", 3000 - "tinyvec", 3001 - "ttf-parser", 3002 - ] 3003 - 3004 - [[package]] 3005 - name = "foreign-types" 3006 - version = "0.3.2" 3007 - source = "registry+https://github.com/rust-lang/crates.io-index" 3008 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 3009 - dependencies = [ 3010 - "foreign-types-shared 0.1.1", 3011 - ] 3012 - 3013 - [[package]] 3014 - name = "foreign-types" 3015 - version = "0.5.0" 3016 - source = "registry+https://github.com/rust-lang/crates.io-index" 3017 - checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 3018 - dependencies = [ 3019 - "foreign-types-macros", 3020 - "foreign-types-shared 0.3.1", 3021 - ] 3022 - 3023 - [[package]] 3024 - name = "foreign-types-macros" 3025 - version = "0.2.3" 3026 - source = "registry+https://github.com/rust-lang/crates.io-index" 3027 - checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 3028 - dependencies = [ 3029 - "proc-macro2", 3030 - "quote", 3031 - "syn 2.0.87", 3032 - ] 3033 - 3034 - [[package]] 3035 - name = "foreign-types-shared" 3036 - version = "0.1.1" 3037 - source = "registry+https://github.com/rust-lang/crates.io-index" 3038 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 3039 - 3040 - [[package]] 3041 - name = "foreign-types-shared" 3042 - version = "0.3.1" 3043 - source = "registry+https://github.com/rust-lang/crates.io-index" 3044 - checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 3045 - 3046 - [[package]] 3047 - name = "form_urlencoded" 3048 - version = "1.2.1" 3049 - source = "registry+https://github.com/rust-lang/crates.io-index" 3050 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 3051 - dependencies = [ 3052 - "percent-encoding", 3053 - ] 3054 - 3055 - [[package]] 3056 - name = "fraction" 3057 - version = "0.15.3" 3058 - source = "registry+https://github.com/rust-lang/crates.io-index" 3059 - checksum = "0f158e3ff0a1b334408dc9fb811cd99b446986f4d8b741bb08f9df1604085ae7" 3060 - dependencies = [ 3061 - "lazy_static", 3062 - "num", 3063 - ] 3064 - 3065 - [[package]] 3066 - name = "freedesktop_entry_parser" 3067 - version = "1.3.0" 3068 - source = "registry+https://github.com/rust-lang/crates.io-index" 3069 - checksum = "db9c27b72f19a99a895f8ca89e2d26e4ef31013376e56fdafef697627306c3e4" 3070 - dependencies = [ 3071 - "nom", 3072 - "thiserror 1.0.68", 3073 - ] 3074 - 3075 - [[package]] 3076 - name = "fsevent-sys" 3077 - version = "4.1.0" 3078 - source = "registry+https://github.com/rust-lang/crates.io-index" 3079 - checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 3080 - dependencies = [ 3081 - "libc", 3082 - ] 3083 - 3084 - [[package]] 3085 - name = "funty" 3086 - version = "2.0.0" 3087 - source = "registry+https://github.com/rust-lang/crates.io-index" 3088 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 3089 - 3090 - [[package]] 3091 - name = "futf" 3092 - version = "0.1.5" 3093 - source = "registry+https://github.com/rust-lang/crates.io-index" 3094 - checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 3095 - dependencies = [ 3096 - "mac", 3097 - "new_debug_unreachable", 3098 - ] 3099 - 3100 - [[package]] 3101 - name = "futures" 3102 - version = "0.3.30" 3103 - source = "registry+https://github.com/rust-lang/crates.io-index" 3104 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 3105 - dependencies = [ 3106 - "futures-channel", 3107 - "futures-core", 3108 - "futures-executor", 3109 - "futures-io", 3110 - "futures-sink", 3111 - "futures-task", 3112 - "futures-util", 3113 - ] 3114 - 3115 - [[package]] 3116 - name = "futures-channel" 3117 - version = "0.3.30" 3118 - source = "registry+https://github.com/rust-lang/crates.io-index" 3119 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 3120 - dependencies = [ 3121 - "futures-core", 3122 - "futures-sink", 3123 - ] 3124 - 3125 - [[package]] 3126 - name = "futures-core" 3127 - version = "0.3.30" 3128 - source = "registry+https://github.com/rust-lang/crates.io-index" 3129 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 3130 - 3131 - [[package]] 3132 - name = "futures-executor" 3133 - version = "0.3.30" 3134 - source = "registry+https://github.com/rust-lang/crates.io-index" 3135 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 3136 - dependencies = [ 3137 - "futures-core", 3138 - "futures-task", 3139 - "futures-util", 3140 - ] 3141 - 3142 - [[package]] 3143 - name = "futures-io" 3144 - version = "0.3.30" 3145 - source = "registry+https://github.com/rust-lang/crates.io-index" 3146 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 3147 - 3148 - [[package]] 3149 - name = "futures-macro" 3150 - version = "0.3.30" 3151 - source = "registry+https://github.com/rust-lang/crates.io-index" 3152 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 3153 - dependencies = [ 3154 - "proc-macro2", 3155 - "quote", 3156 - "syn 2.0.87", 3157 - ] 3158 - 3159 - [[package]] 3160 - name = "futures-sink" 3161 - version = "0.3.30" 3162 - source = "registry+https://github.com/rust-lang/crates.io-index" 3163 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 3164 - 3165 - [[package]] 3166 - name = "futures-task" 3167 - version = "0.3.30" 3168 - source = "registry+https://github.com/rust-lang/crates.io-index" 3169 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 3170 - 3171 - [[package]] 3172 - name = "futures-timer" 3173 - version = "3.0.3" 3174 - source = "registry+https://github.com/rust-lang/crates.io-index" 3175 - checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 3176 - 3177 - [[package]] 3178 - name = "futures-util" 3179 - version = "0.3.30" 3180 - source = "registry+https://github.com/rust-lang/crates.io-index" 3181 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 3182 - dependencies = [ 3183 - "futures-channel", 3184 - "futures-core", 3185 - "futures-io", 3186 - "futures-macro", 3187 - "futures-sink", 3188 - "futures-task", 3189 - "memchr", 3190 - "pin-project-lite", 3191 - "pin-utils", 3192 - "slab", 3193 - ] 3194 - 3195 - [[package]] 3196 - name = "fxhash" 3197 - version = "0.2.1" 3198 - source = "registry+https://github.com/rust-lang/crates.io-index" 3199 - checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 3200 - dependencies = [ 3201 - "byteorder", 3202 - ] 3203 - 3204 - [[package]] 3205 - name = "gdk" 3206 - version = "0.18.0" 3207 - source = "registry+https://github.com/rust-lang/crates.io-index" 3208 - checksum = "f5ba081bdef3b75ebcdbfc953699ed2d7417d6bd853347a42a37d76406a33646" 3209 - dependencies = [ 3210 - "cairo-rs", 3211 - "gdk-pixbuf", 3212 - "gdk-sys", 3213 - "gio", 3214 - "glib", 3215 - "libc", 3216 - "pango", 3217 - ] 3218 - 3219 - [[package]] 3220 - name = "gdk-pixbuf" 3221 - version = "0.18.5" 3222 - source = "registry+https://github.com/rust-lang/crates.io-index" 3223 - checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" 3224 - dependencies = [ 3225 - "gdk-pixbuf-sys", 3226 - "gio", 3227 - "glib", 3228 - "libc", 3229 - "once_cell", 3230 - ] 3231 - 3232 - [[package]] 3233 - name = "gdk-pixbuf-sys" 3234 - version = "0.18.0" 3235 - source = "registry+https://github.com/rust-lang/crates.io-index" 3236 - checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 3237 - dependencies = [ 3238 - "gio-sys", 3239 - "glib-sys", 3240 - "gobject-sys", 3241 - "libc", 3242 - "system-deps", 3243 - ] 3244 - 3245 - [[package]] 3246 - name = "gdk-sys" 3247 - version = "0.18.0" 3248 - source = "registry+https://github.com/rust-lang/crates.io-index" 3249 - checksum = "31ff856cb3386dae1703a920f803abafcc580e9b5f711ca62ed1620c25b51ff2" 3250 - dependencies = [ 3251 - "cairo-sys-rs", 3252 - "gdk-pixbuf-sys", 3253 - "gio-sys", 3254 - "glib-sys", 3255 - "gobject-sys", 3256 - "libc", 3257 - "pango-sys", 3258 - "pkg-config", 3259 - "system-deps", 3260 - ] 3261 - 3262 - [[package]] 3263 - name = "gdkwayland-sys" 3264 - version = "0.18.0" 3265 - source = "registry+https://github.com/rust-lang/crates.io-index" 3266 - checksum = "a90fbf5c033c65d93792192a49a8efb5bb1e640c419682a58bb96f5ae77f3d4a" 3267 - dependencies = [ 3268 - "gdk-sys", 3269 - "glib-sys", 3270 - "gobject-sys", 3271 - "libc", 3272 - "pkg-config", 3273 - "system-deps", 3274 - ] 3275 - 3276 - [[package]] 3277 - name = "gdkx11" 3278 - version = "0.18.0" 3279 - source = "registry+https://github.com/rust-lang/crates.io-index" 3280 - checksum = "db2ea8a4909d530f79921290389cbd7c34cb9d623bfe970eaae65ca5f9cd9cce" 3281 - dependencies = [ 3282 - "gdk", 3283 - "gdkx11-sys", 3284 - "gio", 3285 - "glib", 3286 - "libc", 3287 - "x11", 3288 - ] 3289 - 3290 - [[package]] 3291 - name = "gdkx11-sys" 3292 - version = "0.18.0" 3293 - source = "registry+https://github.com/rust-lang/crates.io-index" 3294 - checksum = "fee8f00f4ee46cad2939b8990f5c70c94ff882c3028f3cc5abf950fa4ab53043" 3295 - dependencies = [ 3296 - "gdk-sys", 3297 - "glib-sys", 3298 - "libc", 3299 - "system-deps", 3300 - "x11", 3301 - ] 3302 - 3303 - [[package]] 3304 - name = "generic-array" 3305 - version = "0.14.7" 3306 - source = "registry+https://github.com/rust-lang/crates.io-index" 3307 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 3308 - dependencies = [ 3309 - "typenum", 3310 - "version_check", 3311 - "zeroize", 3312 - ] 3313 - 3314 - [[package]] 3315 - name = "getrandom" 3316 - version = "0.1.16" 3317 - source = "registry+https://github.com/rust-lang/crates.io-index" 3318 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 3319 - dependencies = [ 3320 - "cfg-if", 3321 - "libc", 3322 - "wasi 0.9.0+wasi-snapshot-preview1", 3323 - ] 3324 - 3325 - [[package]] 3326 - name = "getrandom" 3327 - version = "0.2.15" 3328 - source = "registry+https://github.com/rust-lang/crates.io-index" 3329 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 3330 - dependencies = [ 3331 - "cfg-if", 3332 - "js-sys", 3333 - "libc", 3334 - "wasi 0.11.0+wasi-snapshot-preview1", 3335 - "wasm-bindgen", 3336 - ] 3337 - 3338 - [[package]] 3339 - name = "ghash" 3340 - version = "0.5.1" 3341 - source = "registry+https://github.com/rust-lang/crates.io-index" 3342 - checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 3343 - dependencies = [ 3344 - "opaque-debug", 3345 - "polyval", 3346 - ] 3347 - 3348 - [[package]] 3349 - name = "gif" 3350 - version = "0.13.1" 3351 - source = "registry+https://github.com/rust-lang/crates.io-index" 3352 - checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" 3353 - dependencies = [ 3354 - "color_quant", 3355 - "weezl", 3356 - ] 3357 - 3358 - [[package]] 3359 - name = "gimli" 3360 - version = "0.31.0" 3361 - source = "registry+https://github.com/rust-lang/crates.io-index" 3362 - checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64" 3363 - 3364 - [[package]] 3365 - name = "gio" 3366 - version = "0.18.4" 3367 - source = "registry+https://github.com/rust-lang/crates.io-index" 3368 - checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 3369 - dependencies = [ 3370 - "futures-channel", 3371 - "futures-core", 3372 - "futures-io", 3373 - "futures-util", 3374 - "gio-sys", 3375 - "glib", 3376 - "libc", 3377 - "once_cell", 3378 - "pin-project-lite", 3379 - "smallvec", 3380 - "thiserror 1.0.68", 3381 - ] 3382 - 3383 - [[package]] 3384 - name = "gio-sys" 3385 - version = "0.18.1" 3386 - source = "registry+https://github.com/rust-lang/crates.io-index" 3387 - checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 3388 - dependencies = [ 3389 - "glib-sys", 3390 - "gobject-sys", 3391 - "libc", 3392 - "system-deps", 3393 - "winapi", 3394 - ] 3395 - 3396 - [[package]] 3397 - name = "glib" 3398 - version = "0.18.5" 3399 - source = "registry+https://github.com/rust-lang/crates.io-index" 3400 - checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 3401 - dependencies = [ 3402 - "bitflags 2.6.0", 3403 - "futures-channel", 3404 - "futures-core", 3405 - "futures-executor", 3406 - "futures-task", 3407 - "futures-util", 3408 - "gio-sys", 3409 - "glib-macros", 3410 - "glib-sys", 3411 - "gobject-sys", 3412 - "libc", 3413 - "memchr", 3414 - "once_cell", 3415 - "smallvec", 3416 - "thiserror 1.0.68", 3417 - ] 3418 - 3419 - [[package]] 3420 - name = "glib-macros" 3421 - version = "0.18.5" 3422 - source = "registry+https://github.com/rust-lang/crates.io-index" 3423 - checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 3424 - dependencies = [ 3425 - "heck 0.4.1", 3426 - "proc-macro-crate 2.0.0", 3427 - "proc-macro-error", 3428 - "proc-macro2", 3429 - "quote", 3430 - "syn 2.0.87", 3431 - ] 3432 - 3433 - [[package]] 3434 - name = "glib-sys" 3435 - version = "0.18.1" 3436 - source = "registry+https://github.com/rust-lang/crates.io-index" 3437 - checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 3438 - dependencies = [ 3439 - "libc", 3440 - "system-deps", 3441 - ] 3442 - 3443 - [[package]] 3444 - name = "glob" 3445 - version = "0.3.1" 3446 - source = "registry+https://github.com/rust-lang/crates.io-index" 3447 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 3448 - 3449 - [[package]] 3450 - name = "globset" 3451 - version = "0.4.15" 3452 - source = "registry+https://github.com/rust-lang/crates.io-index" 3453 - checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19" 3454 - dependencies = [ 3455 - "aho-corasick", 3456 - "bstr", 3457 - "log", 3458 - "regex-automata", 3459 - "regex-syntax", 3460 - ] 3461 - 3462 - [[package]] 3463 - name = "gobject-sys" 3464 - version = "0.18.0" 3465 - source = "registry+https://github.com/rust-lang/crates.io-index" 3466 - checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 3467 - dependencies = [ 3468 - "glib-sys", 3469 - "libc", 3470 - "system-deps", 3471 - ] 3472 - 3473 - [[package]] 3474 - name = "goblin" 3475 - version = "0.8.2" 3476 - source = "registry+https://github.com/rust-lang/crates.io-index" 3477 - checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47" 3478 - dependencies = [ 3479 - "log", 3480 - "plain", 3481 - "scroll", 3482 - ] 3483 - 3484 - [[package]] 3485 - name = "group" 3486 - version = "0.12.1" 3487 - source = "registry+https://github.com/rust-lang/crates.io-index" 3488 - checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 3489 - dependencies = [ 3490 - "ff 0.12.1", 3491 - "rand_core 0.6.4", 3492 - "subtle", 3493 - ] 3494 - 3495 - [[package]] 3496 - name = "group" 3497 - version = "0.13.0" 3498 - source = "registry+https://github.com/rust-lang/crates.io-index" 3499 - checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 3500 - dependencies = [ 3501 - "ff 0.13.0", 3502 - "rand_core 0.6.4", 3503 - "subtle", 3504 - ] 3505 - 3506 - [[package]] 3507 - name = "gtk" 3508 - version = "0.18.1" 3509 - source = "registry+https://github.com/rust-lang/crates.io-index" 3510 - checksum = "93c4f5e0e20b60e10631a5f06da7fe3dda744b05ad0ea71fee2f47adf865890c" 3511 - dependencies = [ 3512 - "atk", 3513 - "cairo-rs", 3514 - "field-offset", 3515 - "futures-channel", 3516 - "gdk", 3517 - "gdk-pixbuf", 3518 - "gio", 3519 - "glib", 3520 - "gtk-sys", 3521 - "gtk3-macros", 3522 - "libc", 3523 - "pango", 3524 - "pkg-config", 3525 - ] 3526 - 3527 - [[package]] 3528 - name = "gtk-sys" 3529 - version = "0.18.0" 3530 - source = "registry+https://github.com/rust-lang/crates.io-index" 3531 - checksum = "771437bf1de2c1c0b496c11505bdf748e26066bbe942dfc8f614c9460f6d7722" 3532 - dependencies = [ 3533 - "atk-sys", 3534 - "cairo-sys-rs", 3535 - "gdk-pixbuf-sys", 3536 - "gdk-sys", 3537 - "gio-sys", 3538 - "glib-sys", 3539 - "gobject-sys", 3540 - "libc", 3541 - "pango-sys", 3542 - "system-deps", 3543 - ] 3544 - 3545 - [[package]] 3546 - name = "gtk3-macros" 3547 - version = "0.18.0" 3548 - source = "registry+https://github.com/rust-lang/crates.io-index" 3549 - checksum = "c6063efb63db582968fb7df72e1ae68aa6360dcfb0a75143f34fc7d616bad75e" 3550 - dependencies = [ 3551 - "proc-macro-crate 1.3.1", 3552 - "proc-macro-error", 3553 - "proc-macro2", 3554 - "quote", 3555 - "syn 2.0.87", 3556 - ] 3557 - 3558 - [[package]] 3559 - name = "h2" 3560 - version = "0.3.26" 3561 - source = "registry+https://github.com/rust-lang/crates.io-index" 3562 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 3563 - dependencies = [ 3564 - "bytes", 3565 - "fnv", 3566 - "futures-core", 3567 - "futures-sink", 3568 - "futures-util", 3569 - "http 0.2.12", 3570 - "indexmap 2.6.0", 3571 - "slab", 3572 - "tokio", 3573 - "tokio-util", 3574 - "tracing", 3575 - ] 3576 - 3577 - [[package]] 3578 - name = "h2" 3579 - version = "0.4.6" 3580 - source = "registry+https://github.com/rust-lang/crates.io-index" 3581 - checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" 3582 - dependencies = [ 3583 - "atomic-waker", 3584 - "bytes", 3585 - "fnv", 3586 - "futures-core", 3587 - "futures-sink", 3588 - "http 1.1.0", 3589 - "indexmap 2.6.0", 3590 - "slab", 3591 - "tokio", 3592 - "tokio-util", 3593 - "tracing", 3594 - ] 3595 - 3596 - [[package]] 3597 - name = "half" 3598 - version = "2.4.1" 3599 - source = "registry+https://github.com/rust-lang/crates.io-index" 3600 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 3601 - dependencies = [ 3602 - "cfg-if", 3603 - "crunchy", 3604 - ] 3605 - 3606 - [[package]] 3607 - name = "handlebars" 3608 - version = "6.2.0" 3609 - source = "registry+https://github.com/rust-lang/crates.io-index" 3610 - checksum = "fd4ccde012831f9a071a637b0d4e31df31c0f6c525784b35ae76a9ac6bc1e315" 3611 - dependencies = [ 3612 - "log", 3613 - "num-order", 3614 - "pest", 3615 - "pest_derive", 3616 - "serde", 3617 - "serde_json", 3618 - "thiserror 1.0.68", 3619 - ] 3620 - 3621 - [[package]] 3622 - name = "hashbrown" 3623 - version = "0.12.3" 3624 - source = "registry+https://github.com/rust-lang/crates.io-index" 3625 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 3626 - dependencies = [ 3627 - "ahash 0.7.8", 3628 - ] 3629 - 3630 - [[package]] 3631 - name = "hashbrown" 3632 - version = "0.14.5" 3633 - source = "registry+https://github.com/rust-lang/crates.io-index" 3634 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 3635 - dependencies = [ 3636 - "ahash 0.8.11", 3637 - "allocator-api2", 3638 - ] 3639 - 3640 - [[package]] 3641 - name = "hashbrown" 3642 - version = "0.15.0" 3643 - source = "registry+https://github.com/rust-lang/crates.io-index" 3644 - checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" 3645 - 3646 - [[package]] 3647 - name = "heck" 3648 - version = "0.4.1" 3649 - source = "registry+https://github.com/rust-lang/crates.io-index" 3650 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 3651 - 3652 - [[package]] 3653 - name = "heck" 3654 - version = "0.5.0" 3655 - source = "registry+https://github.com/rust-lang/crates.io-index" 3656 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 3657 - 3658 - [[package]] 3659 - name = "hermit-abi" 3660 - version = "0.3.9" 3661 - source = "registry+https://github.com/rust-lang/crates.io-index" 3662 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 3663 - 3664 - [[package]] 3665 - name = "hermit-abi" 3666 - version = "0.4.0" 3667 - source = "registry+https://github.com/rust-lang/crates.io-index" 3668 - checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" 3669 - 3670 - [[package]] 3671 - name = "hex" 3672 - version = "0.4.3" 3673 - source = "registry+https://github.com/rust-lang/crates.io-index" 3674 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 3675 - 3676 - [[package]] 3677 - name = "hkdf" 3678 - version = "0.12.4" 3679 - source = "registry+https://github.com/rust-lang/crates.io-index" 3680 - checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 3681 - dependencies = [ 3682 - "hmac", 3683 - ] 3684 - 3685 - [[package]] 3686 - name = "hmac" 3687 - version = "0.12.1" 3688 - source = "registry+https://github.com/rust-lang/crates.io-index" 3689 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 3690 - dependencies = [ 3691 - "digest", 3692 - ] 3693 - 3694 - [[package]] 3695 - name = "home" 3696 - version = "0.5.9" 3697 - source = "registry+https://github.com/rust-lang/crates.io-index" 3698 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 3699 - dependencies = [ 3700 - "windows-sys 0.52.0", 3701 - ] 3702 - 3703 - [[package]] 3704 - name = "html5ever" 3705 - version = "0.26.0" 3706 - source = "registry+https://github.com/rust-lang/crates.io-index" 3707 - checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 3708 - dependencies = [ 3709 - "log", 3710 - "mac", 3711 - "markup5ever", 3712 - "proc-macro2", 3713 - "quote", 3714 - "syn 1.0.109", 3715 - ] 3716 - 3717 - [[package]] 3718 - name = "http" 3719 - version = "0.2.12" 3720 - source = "registry+https://github.com/rust-lang/crates.io-index" 3721 - checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 3722 - dependencies = [ 3723 - "bytes", 3724 - "fnv", 3725 - "itoa 1.0.11", 3726 - ] 3727 - 3728 - [[package]] 3729 - name = "http" 3730 - version = "1.1.0" 3731 - source = "registry+https://github.com/rust-lang/crates.io-index" 3732 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 3733 - dependencies = [ 3734 - "bytes", 3735 - "fnv", 3736 - "itoa 1.0.11", 3737 - ] 3738 - 3739 - [[package]] 3740 - name = "http-body" 3741 - version = "0.4.6" 3742 - source = "registry+https://github.com/rust-lang/crates.io-index" 3743 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 3744 - dependencies = [ 3745 - "bytes", 3746 - "http 0.2.12", 3747 - "pin-project-lite", 3748 - ] 3749 - 3750 - [[package]] 3751 - name = "http-body" 3752 - version = "1.0.1" 3753 - source = "registry+https://github.com/rust-lang/crates.io-index" 3754 - checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 3755 - dependencies = [ 3756 - "bytes", 3757 - "http 1.1.0", 3758 - ] 3759 - 3760 - [[package]] 3761 - name = "http-body-util" 3762 - version = "0.1.2" 3763 - source = "registry+https://github.com/rust-lang/crates.io-index" 3764 - checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 3765 - dependencies = [ 3766 - "bytes", 3767 - "futures-util", 3768 - "http 1.1.0", 3769 - "http-body 1.0.1", 3770 - "pin-project-lite", 3771 - ] 3772 - 3773 - [[package]] 3774 - name = "http-range" 3775 - version = "0.1.5" 3776 - source = "registry+https://github.com/rust-lang/crates.io-index" 3777 - checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 3778 - 3779 - [[package]] 3780 - name = "httparse" 3781 - version = "1.9.5" 3782 - source = "registry+https://github.com/rust-lang/crates.io-index" 3783 - checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 3784 - 3785 - [[package]] 3786 - name = "httpdate" 3787 - version = "1.0.3" 3788 - source = "registry+https://github.com/rust-lang/crates.io-index" 3789 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 3790 - 3791 - [[package]] 3792 - name = "humantime" 3793 - version = "2.1.0" 3794 - source = "registry+https://github.com/rust-lang/crates.io-index" 3795 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 3796 - 3797 - [[package]] 3798 - name = "hyper" 3799 - version = "0.14.30" 3800 - source = "registry+https://github.com/rust-lang/crates.io-index" 3801 - checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" 3802 - dependencies = [ 3803 - "bytes", 3804 - "futures-channel", 3805 - "futures-core", 3806 - "futures-util", 3807 - "h2 0.3.26", 3808 - "http 0.2.12", 3809 - "http-body 0.4.6", 3810 - "httparse", 3811 - "httpdate", 3812 - "itoa 1.0.11", 3813 - "pin-project-lite", 3814 - "socket2", 3815 - "tokio", 3816 - "tower-service", 3817 - "tracing", 3818 - "want", 3819 - ] 3820 - 3821 - [[package]] 3822 - name = "hyper" 3823 - version = "1.4.1" 3824 - source = "registry+https://github.com/rust-lang/crates.io-index" 3825 - checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 3826 - dependencies = [ 3827 - "bytes", 3828 - "futures-channel", 3829 - "futures-util", 3830 - "h2 0.4.6", 3831 - "http 1.1.0", 3832 - "http-body 1.0.1", 3833 - "httparse", 3834 - "httpdate", 3835 - "itoa 1.0.11", 3836 - "pin-project-lite", 3837 - "smallvec", 3838 - "tokio", 3839 - "want", 3840 - ] 3841 - 3842 - [[package]] 3843 - name = "hyper-rustls" 3844 - version = "0.24.2" 3845 - source = "registry+https://github.com/rust-lang/crates.io-index" 3846 - checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 3847 - dependencies = [ 3848 - "futures-util", 3849 - "http 0.2.12", 3850 - "hyper 0.14.30", 3851 - "log", 3852 - "rustls 0.21.12", 3853 - "rustls-native-certs 0.6.3", 3854 - "tokio", 3855 - "tokio-rustls 0.24.1", 3856 - ] 3857 - 3858 - [[package]] 3859 - name = "hyper-rustls" 3860 - version = "0.27.3" 3861 - source = "registry+https://github.com/rust-lang/crates.io-index" 3862 - checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" 3863 - dependencies = [ 3864 - "futures-util", 3865 - "http 1.1.0", 3866 - "hyper 1.4.1", 3867 - "hyper-util", 3868 - "rustls 0.23.13", 3869 - "rustls-pki-types", 3870 - "tokio", 3871 - "tokio-rustls 0.26.0", 3872 - "tower-service", 3873 - "webpki-roots 0.26.6", 3874 - ] 3875 - 3876 - [[package]] 3877 - name = "hyper-tls" 3878 - version = "0.6.0" 3879 - source = "registry+https://github.com/rust-lang/crates.io-index" 3880 - checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 3881 - dependencies = [ 3882 - "bytes", 3883 - "http-body-util", 3884 - "hyper 1.4.1", 3885 - "hyper-util", 3886 - "native-tls", 3887 - "tokio", 3888 - "tokio-native-tls", 3889 - "tower-service", 3890 - ] 3891 - 3892 - [[package]] 3893 - name = "hyper-util" 3894 - version = "0.1.9" 3895 - source = "registry+https://github.com/rust-lang/crates.io-index" 3896 - checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" 3897 - dependencies = [ 3898 - "bytes", 3899 - "futures-channel", 3900 - "futures-util", 3901 - "http 1.1.0", 3902 - "http-body 1.0.1", 3903 - "hyper 1.4.1", 3904 - "pin-project-lite", 3905 - "socket2", 3906 - "tokio", 3907 - "tower-service", 3908 - "tracing", 3909 - ] 3910 - 3911 - [[package]] 3912 - name = "iana-time-zone" 3913 - version = "0.1.61" 3914 - source = "registry+https://github.com/rust-lang/crates.io-index" 3915 - checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 3916 - dependencies = [ 3917 - "android_system_properties", 3918 - "core-foundation-sys", 3919 - "iana-time-zone-haiku", 3920 - "js-sys", 3921 - "wasm-bindgen", 3922 - "windows-core 0.52.0", 3923 - ] 3924 - 3925 - [[package]] 3926 - name = "iana-time-zone-haiku" 3927 - version = "0.1.2" 3928 - source = "registry+https://github.com/rust-lang/crates.io-index" 3929 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 3930 - dependencies = [ 3931 - "cc", 3932 - ] 3933 - 3934 - [[package]] 3935 - name = "ico" 3936 - version = "0.3.0" 3937 - source = "registry+https://github.com/rust-lang/crates.io-index" 3938 - checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae" 3939 - dependencies = [ 3940 - "byteorder", 3941 - "png", 3942 - ] 3943 - 3944 - [[package]] 3945 - name = "icu_collections" 3946 - version = "1.5.0" 3947 - source = "registry+https://github.com/rust-lang/crates.io-index" 3948 - checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 3949 - dependencies = [ 3950 - "displaydoc", 3951 - "yoke", 3952 - "zerofrom", 3953 - "zerovec", 3954 - ] 3955 - 3956 - [[package]] 3957 - name = "icu_locid" 3958 - version = "1.5.0" 3959 - source = "registry+https://github.com/rust-lang/crates.io-index" 3960 - checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 3961 - dependencies = [ 3962 - "displaydoc", 3963 - "litemap", 3964 - "tinystr", 3965 - "writeable", 3966 - "zerovec", 3967 - ] 3968 - 3969 - [[package]] 3970 - name = "icu_locid_transform" 3971 - version = "1.5.0" 3972 - source = "registry+https://github.com/rust-lang/crates.io-index" 3973 - checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 3974 - dependencies = [ 3975 - "displaydoc", 3976 - "icu_locid", 3977 - "icu_locid_transform_data", 3978 - "icu_provider", 3979 - "tinystr", 3980 - "zerovec", 3981 - ] 3982 - 3983 - [[package]] 3984 - name = "icu_locid_transform_data" 3985 - version = "1.5.0" 3986 - source = "registry+https://github.com/rust-lang/crates.io-index" 3987 - checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 3988 - 3989 - [[package]] 3990 - name = "icu_normalizer" 3991 - version = "1.5.0" 3992 - source = "registry+https://github.com/rust-lang/crates.io-index" 3993 - checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 3994 - dependencies = [ 3995 - "displaydoc", 3996 - "icu_collections", 3997 - "icu_normalizer_data", 3998 - "icu_properties", 3999 - "icu_provider", 4000 - "smallvec", 4001 - "utf16_iter", 4002 - "utf8_iter", 4003 - "write16", 4004 - "zerovec", 4005 - ] 4006 - 4007 - [[package]] 4008 - name = "icu_normalizer_data" 4009 - version = "1.5.0" 4010 - source = "registry+https://github.com/rust-lang/crates.io-index" 4011 - checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 4012 - 4013 - [[package]] 4014 - name = "icu_properties" 4015 - version = "1.5.1" 4016 - source = "registry+https://github.com/rust-lang/crates.io-index" 4017 - checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 4018 - dependencies = [ 4019 - "displaydoc", 4020 - "icu_collections", 4021 - "icu_locid_transform", 4022 - "icu_properties_data", 4023 - "icu_provider", 4024 - "tinystr", 4025 - "zerovec", 4026 - ] 4027 - 4028 - [[package]] 4029 - name = "icu_properties_data" 4030 - version = "1.5.0" 4031 - source = "registry+https://github.com/rust-lang/crates.io-index" 4032 - checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 4033 - 4034 - [[package]] 4035 - name = "icu_provider" 4036 - version = "1.5.0" 4037 - source = "registry+https://github.com/rust-lang/crates.io-index" 4038 - checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 4039 - dependencies = [ 4040 - "displaydoc", 4041 - "icu_locid", 4042 - "icu_provider_macros", 4043 - "stable_deref_trait", 4044 - "tinystr", 4045 - "writeable", 4046 - "yoke", 4047 - "zerofrom", 4048 - "zerovec", 4049 - ] 4050 - 4051 - [[package]] 4052 - name = "icu_provider_macros" 4053 - version = "1.5.0" 4054 - source = "registry+https://github.com/rust-lang/crates.io-index" 4055 - checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 4056 - dependencies = [ 4057 - "proc-macro2", 4058 - "quote", 4059 - "syn 2.0.87", 4060 - ] 4061 - 4062 - [[package]] 4063 - name = "idea" 4064 - version = "0.5.1" 4065 - source = "registry+https://github.com/rust-lang/crates.io-index" 4066 - checksum = "075557004419d7f2031b8bb7f44bb43e55a83ca7b63076a8fb8fe75753836477" 4067 - dependencies = [ 4068 - "cipher", 4069 - ] 4070 - 4071 - [[package]] 4072 - name = "ident_case" 4073 - version = "1.0.1" 4074 - source = "registry+https://github.com/rust-lang/crates.io-index" 4075 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 4076 - 4077 - [[package]] 4078 - name = "idna" 4079 - version = "1.0.3" 4080 - source = "registry+https://github.com/rust-lang/crates.io-index" 4081 - checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 4082 - dependencies = [ 4083 - "idna_adapter", 4084 - "smallvec", 4085 - "utf8_iter", 4086 - ] 4087 - 4088 - [[package]] 4089 - name = "idna_adapter" 4090 - version = "1.2.0" 4091 - source = "registry+https://github.com/rust-lang/crates.io-index" 4092 - checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 4093 - dependencies = [ 4094 - "icu_normalizer", 4095 - "icu_properties", 4096 - ] 4097 - 4098 - [[package]] 4099 - name = "ignore" 4100 - version = "0.4.23" 4101 - source = "registry+https://github.com/rust-lang/crates.io-index" 4102 - checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b" 4103 - dependencies = [ 4104 - "crossbeam-deque", 4105 - "globset", 4106 - "log", 4107 - "memchr", 4108 - "regex-automata", 4109 - "same-file", 4110 - "walkdir", 4111 - "winapi-util", 4112 - ] 4113 - 4114 - [[package]] 4115 - name = "image" 4116 - version = "0.25.5" 4117 - source = "registry+https://github.com/rust-lang/crates.io-index" 4118 - checksum = "cd6f44aed642f18953a158afeb30206f4d50da59fbc66ecb53c66488de73563b" 4119 - dependencies = [ 4120 - "bytemuck", 4121 - "byteorder-lite", 4122 - "color_quant", 4123 - "exr", 4124 - "gif", 4125 - "image-webp 0.2.0", 4126 - "num-traits", 4127 - "png", 4128 - "qoi", 4129 - "ravif", 4130 - "rayon", 4131 - "rgb", 4132 - "tiff", 4133 - "zune-core", 4134 - "zune-jpeg", 4135 - ] 4136 - 4137 - [[package]] 4138 - name = "image-webp" 4139 - version = "0.1.3" 4140 - source = "registry+https://github.com/rust-lang/crates.io-index" 4141 - checksum = "f79afb8cbee2ef20f59ccd477a218c12a93943d075b492015ecb1bb81f8ee904" 4142 - dependencies = [ 4143 - "byteorder-lite", 4144 - "quick-error 2.0.1", 4145 - ] 4146 - 4147 - [[package]] 4148 - name = "image-webp" 4149 - version = "0.2.0" 4150 - source = "registry+https://github.com/rust-lang/crates.io-index" 4151 - checksum = "e031e8e3d94711a9ccb5d6ea357439ef3dcbed361798bd4071dc4d9793fbe22f" 4152 - dependencies = [ 4153 - "byteorder-lite", 4154 - "quick-error 2.0.1", 4155 - ] 4156 - 4157 - [[package]] 4158 - name = "imagesize" 4159 - version = "0.13.0" 4160 - source = "registry+https://github.com/rust-lang/crates.io-index" 4161 - checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285" 4162 - 4163 - [[package]] 4164 - name = "imgref" 4165 - version = "1.10.1" 4166 - source = "registry+https://github.com/rust-lang/crates.io-index" 4167 - checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126" 4168 - 4169 - [[package]] 4170 - name = "include_dir" 4171 - version = "0.7.4" 4172 - source = "registry+https://github.com/rust-lang/crates.io-index" 4173 - checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd" 4174 - dependencies = [ 4175 - "include_dir_macros", 4176 - ] 4177 - 4178 - [[package]] 4179 - name = "include_dir_macros" 4180 - version = "0.7.4" 4181 - source = "registry+https://github.com/rust-lang/crates.io-index" 4182 - checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75" 4183 - dependencies = [ 4184 - "proc-macro2", 4185 - "quote", 4186 - ] 4187 - 4188 - [[package]] 4189 - name = "indexmap" 4190 - version = "1.9.3" 4191 - source = "registry+https://github.com/rust-lang/crates.io-index" 4192 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 4193 - dependencies = [ 4194 - "autocfg", 4195 - "hashbrown 0.12.3", 4196 - "serde", 4197 - ] 4198 - 4199 - [[package]] 4200 - name = "indexmap" 4201 - version = "2.6.0" 4202 - source = "registry+https://github.com/rust-lang/crates.io-index" 4203 - checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" 4204 - dependencies = [ 4205 - "equivalent", 4206 - "hashbrown 0.15.0", 4207 - "serde", 4208 - ] 4209 - 4210 - [[package]] 4211 - name = "infer" 4212 - version = "0.13.0" 4213 - source = "registry+https://github.com/rust-lang/crates.io-index" 4214 - checksum = "f551f8c3a39f68f986517db0d1759de85881894fdc7db798bd2a9df9cb04b7fc" 4215 - dependencies = [ 4216 - "cfb", 4217 - ] 4218 - 4219 - [[package]] 4220 - name = "infer" 4221 - version = "0.16.0" 4222 - source = "registry+https://github.com/rust-lang/crates.io-index" 4223 - checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847" 4224 - dependencies = [ 4225 - "cfb", 4226 - ] 4227 - 4228 - [[package]] 4229 - name = "inlinable_string" 4230 - version = "0.1.15" 4231 - source = "registry+https://github.com/rust-lang/crates.io-index" 4232 - checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb" 4233 - 4234 - [[package]] 4235 - name = "inotify" 4236 - version = "0.9.6" 4237 - source = "registry+https://github.com/rust-lang/crates.io-index" 4238 - checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 4239 - dependencies = [ 4240 - "bitflags 1.3.2", 4241 - "inotify-sys", 4242 - "libc", 4243 - ] 4244 - 4245 - [[package]] 4246 - name = "inotify-sys" 4247 - version = "0.1.5" 4248 - source = "registry+https://github.com/rust-lang/crates.io-index" 4249 - checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 4250 - dependencies = [ 4251 - "libc", 4252 - ] 4253 - 4254 - [[package]] 4255 - name = "inout" 4256 - version = "0.1.3" 4257 - source = "registry+https://github.com/rust-lang/crates.io-index" 4258 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 4259 - dependencies = [ 4260 - "block-padding", 4261 - "generic-array", 4262 - ] 4263 - 4264 - [[package]] 4265 - name = "insta" 4266 - version = "1.40.0" 4267 - source = "registry+https://github.com/rust-lang/crates.io-index" 4268 - checksum = "6593a41c7a73841868772495db7dc1e8ecab43bb5c0b6da2059246c4b506ab60" 4269 - dependencies = [ 4270 - "console", 4271 - "lazy_static", 4272 - "linked-hash-map", 4273 - "similar", 4274 - ] 4275 - 4276 - [[package]] 4277 - name = "instant" 4278 - version = "0.1.13" 4279 - source = "registry+https://github.com/rust-lang/crates.io-index" 4280 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 4281 - dependencies = [ 4282 - "cfg-if", 4283 - ] 4284 - 4285 - [[package]] 4286 - name = "interpolate_name" 4287 - version = "0.2.4" 4288 - source = "registry+https://github.com/rust-lang/crates.io-index" 4289 - checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 4290 - dependencies = [ 4291 - "proc-macro2", 4292 - "quote", 4293 - "syn 2.0.87", 4294 - ] 4295 - 4296 - [[package]] 4297 - name = "io-lifetimes" 4298 - version = "1.0.11" 4299 - source = "registry+https://github.com/rust-lang/crates.io-index" 4300 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 4301 - dependencies = [ 4302 - "hermit-abi 0.3.9", 4303 - "libc", 4304 - "windows-sys 0.48.0", 4305 - ] 4306 - 4307 - [[package]] 4308 - name = "ipnet" 4309 - version = "2.10.0" 4310 - source = "registry+https://github.com/rust-lang/crates.io-index" 4311 - checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" 4312 - 4313 - [[package]] 4314 - name = "is-terminal" 4315 - version = "0.4.13" 4316 - source = "registry+https://github.com/rust-lang/crates.io-index" 4317 - checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" 4318 - dependencies = [ 4319 - "hermit-abi 0.4.0", 4320 - "libc", 4321 - "windows-sys 0.52.0", 4322 - ] 4323 - 4324 - [[package]] 4325 - name = "is_executable" 4326 - version = "1.0.4" 4327 - source = "registry+https://github.com/rust-lang/crates.io-index" 4328 - checksum = "d4a1b5bad6f9072935961dfbf1cced2f3d129963d091b6f69f007fe04e758ae2" 4329 - dependencies = [ 4330 - "winapi", 4331 - ] 4332 - 4333 - [[package]] 4334 - name = "is_terminal_polyfill" 4335 - version = "1.70.1" 4336 - source = "registry+https://github.com/rust-lang/crates.io-index" 4337 - checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 4338 - 4339 - [[package]] 4340 - name = "iso8601" 4341 - version = "0.6.1" 4342 - source = "registry+https://github.com/rust-lang/crates.io-index" 4343 - checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153" 4344 - dependencies = [ 4345 - "nom", 4346 - ] 4347 - 4348 - [[package]] 4349 - name = "iter-read" 4350 - version = "1.1.0" 4351 - source = "registry+https://github.com/rust-lang/crates.io-index" 4352 - checksum = "071ed4cc1afd86650602c7b11aa2e1ce30762a1c27193201cb5cee9c6ebb1294" 4353 - 4354 - [[package]] 4355 - name = "itertools" 4356 - version = "0.10.5" 4357 - source = "registry+https://github.com/rust-lang/crates.io-index" 4358 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 4359 - dependencies = [ 4360 - "either", 4361 - ] 4362 - 4363 - [[package]] 4364 - name = "itertools" 4365 - version = "0.12.1" 4366 - source = "registry+https://github.com/rust-lang/crates.io-index" 4367 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 4368 - dependencies = [ 4369 - "either", 4370 - ] 4371 - 4372 - [[package]] 4373 - name = "itertools" 4374 - version = "0.13.0" 4375 - source = "registry+https://github.com/rust-lang/crates.io-index" 4376 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 4377 - dependencies = [ 4378 - "either", 4379 - ] 4380 - 4381 - [[package]] 4382 - name = "itoa" 4383 - version = "0.4.8" 4384 - source = "registry+https://github.com/rust-lang/crates.io-index" 4385 - checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 4386 - 4387 - [[package]] 4388 - name = "itoa" 4389 - version = "1.0.11" 4390 - source = "registry+https://github.com/rust-lang/crates.io-index" 4391 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 4392 - 4393 - [[package]] 4394 - name = "java-properties" 4395 - version = "2.0.0" 4396 - source = "registry+https://github.com/rust-lang/crates.io-index" 4397 - checksum = "37bf6f484471c451f2b51eabd9e66b3fa7274550c5ec4b6c3d6070840945117f" 4398 - dependencies = [ 4399 - "encoding_rs", 4400 - "lazy_static", 4401 - "regex", 4402 - ] 4403 - 4404 - [[package]] 4405 - name = "javascriptcore-rs" 4406 - version = "1.1.2" 4407 - source = "registry+https://github.com/rust-lang/crates.io-index" 4408 - checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" 4409 - dependencies = [ 4410 - "bitflags 1.3.2", 4411 - "glib", 4412 - "javascriptcore-rs-sys", 4413 - ] 4414 - 4415 - [[package]] 4416 - name = "javascriptcore-rs-sys" 4417 - version = "1.1.1" 4418 - source = "registry+https://github.com/rust-lang/crates.io-index" 4419 - checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" 4420 - dependencies = [ 4421 - "glib-sys", 4422 - "gobject-sys", 4423 - "libc", 4424 - "system-deps", 4425 - ] 4426 - 4427 - [[package]] 4428 - name = "jni" 4429 - version = "0.21.1" 4430 - source = "registry+https://github.com/rust-lang/crates.io-index" 4431 - checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 4432 - dependencies = [ 4433 - "cesu8", 4434 - "cfg-if", 4435 - "combine", 4436 - "jni-sys", 4437 - "log", 4438 - "thiserror 1.0.68", 4439 - "walkdir", 4440 - "windows-sys 0.45.0", 4441 - ] 4442 - 4443 - [[package]] 4444 - name = "jni-sys" 4445 - version = "0.3.0" 4446 - source = "registry+https://github.com/rust-lang/crates.io-index" 4447 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 4448 - 4449 - [[package]] 4450 - name = "jobserver" 4451 - version = "0.1.32" 4452 - source = "registry+https://github.com/rust-lang/crates.io-index" 4453 - checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 4454 - dependencies = [ 4455 - "libc", 4456 - ] 4457 - 4458 - [[package]] 4459 - name = "jpeg-decoder" 4460 - version = "0.3.1" 4461 - source = "registry+https://github.com/rust-lang/crates.io-index" 4462 - checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" 4463 - 4464 - [[package]] 4465 - name = "js-sys" 4466 - version = "0.3.70" 4467 - source = "registry+https://github.com/rust-lang/crates.io-index" 4468 - checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" 4469 - dependencies = [ 4470 - "wasm-bindgen", 4471 - ] 4472 - 4473 - [[package]] 4474 - name = "json-patch" 4475 - version = "1.4.0" 4476 - source = "registry+https://github.com/rust-lang/crates.io-index" 4477 - checksum = "ec9ad60d674508f3ca8f380a928cfe7b096bc729c4e2dbfe3852bc45da3ab30b" 4478 - dependencies = [ 4479 - "serde", 4480 - "serde_json", 4481 - "thiserror 1.0.68", 4482 - ] 4483 - 4484 - [[package]] 4485 - name = "json-patch" 4486 - version = "2.0.0" 4487 - source = "registry+https://github.com/rust-lang/crates.io-index" 4488 - checksum = "5b1fb8864823fad91877e6caea0baca82e49e8db50f8e5c9f9a453e27d3330fc" 4489 - dependencies = [ 4490 - "jsonptr 0.4.7", 4491 - "serde", 4492 - "serde_json", 4493 - "thiserror 1.0.68", 4494 - ] 4495 - 4496 - [[package]] 4497 - name = "json-patch" 4498 - version = "3.0.1" 4499 - source = "registry+https://github.com/rust-lang/crates.io-index" 4500 - checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" 4501 - dependencies = [ 4502 - "jsonptr 0.6.3", 4503 - "serde", 4504 - "serde_json", 4505 - "thiserror 1.0.68", 4506 - ] 4507 - 4508 - [[package]] 4509 - name = "json5" 4510 - version = "0.4.1" 4511 - source = "registry+https://github.com/rust-lang/crates.io-index" 4512 - checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1" 4513 - dependencies = [ 4514 - "pest", 4515 - "pest_derive", 4516 - "serde", 4517 - ] 4518 - 4519 - [[package]] 4520 - name = "jsonptr" 4521 - version = "0.4.7" 4522 - source = "registry+https://github.com/rust-lang/crates.io-index" 4523 - checksum = "1c6e529149475ca0b2820835d3dce8fcc41c6b943ca608d32f35b449255e4627" 4524 - dependencies = [ 4525 - "fluent-uri", 4526 - "serde", 4527 - "serde_json", 4528 - ] 4529 - 4530 - [[package]] 4531 - name = "jsonptr" 4532 - version = "0.6.3" 4533 - source = "registry+https://github.com/rust-lang/crates.io-index" 4534 - checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" 4535 - dependencies = [ 4536 - "serde", 4537 - "serde_json", 4538 - ] 4539 - 4540 - [[package]] 4541 - name = "jsonrpsee" 4542 - version = "0.24.5" 4543 - source = "registry+https://github.com/rust-lang/crates.io-index" 4544 - checksum = "126b48a5acc3c52fbd5381a77898cb60e145123179588a29e7ac48f9c06e401b" 4545 - dependencies = [ 4546 - "jsonrpsee-core", 4547 - "jsonrpsee-server", 4548 - "jsonrpsee-types", 4549 - "tokio", 4550 - ] 4551 - 4552 - [[package]] 4553 - name = "jsonrpsee-client-transport" 4554 - version = "0.24.5" 4555 - source = "registry+https://github.com/rust-lang/crates.io-index" 4556 - checksum = "bf679a8e0e083c77997f7c4bb4ca826577105906027ae462aac70ff348d02c6a" 4557 - dependencies = [ 4558 - "base64 0.22.1", 4559 - "futures-util", 4560 - "http 1.1.0", 4561 - "jsonrpsee-core", 4562 - "pin-project", 4563 - "soketto", 4564 - "thiserror 1.0.68", 4565 - "tokio", 4566 - "tokio-util", 4567 - "tracing", 4568 - "url", 4569 - ] 4570 - 4571 - [[package]] 4572 - name = "jsonrpsee-core" 4573 - version = "0.24.5" 4574 - source = "registry+https://github.com/rust-lang/crates.io-index" 4575 - checksum = "b0e503369a76e195b65af35058add0e6900b794a4e9a9316900ddd3a87a80477" 4576 - dependencies = [ 4577 - "async-trait", 4578 - "bytes", 4579 - "futures-timer", 4580 - "futures-util", 4581 - "http 1.1.0", 4582 - "http-body 1.0.1", 4583 - "http-body-util", 4584 - "jsonrpsee-types", 4585 - "parking_lot", 4586 - "pin-project", 4587 - "rand 0.8.5", 4588 - "rustc-hash", 4589 - "serde", 4590 - "serde_json", 4591 - "thiserror 1.0.68", 4592 - "tokio", 4593 - "tokio-stream", 4594 - "tracing", 4595 - ] 4596 - 4597 - [[package]] 4598 - name = "jsonrpsee-server" 4599 - version = "0.24.5" 4600 - source = "registry+https://github.com/rust-lang/crates.io-index" 4601 - checksum = "af6e6c9b6d975edcb443565d648b605f3e85a04ec63aa6941811a8894cc9cded" 4602 - dependencies = [ 4603 - "futures-util", 4604 - "http 1.1.0", 4605 - "http-body 1.0.1", 4606 - "http-body-util", 4607 - "hyper 1.4.1", 4608 - "hyper-util", 4609 - "jsonrpsee-core", 4610 - "jsonrpsee-types", 4611 - "pin-project", 4612 - "route-recognizer", 4613 - "serde", 4614 - "serde_json", 4615 - "soketto", 4616 - "thiserror 1.0.68", 4617 - "tokio", 4618 - "tokio-stream", 4619 - "tokio-util", 4620 - "tower 0.4.13", 4621 - "tracing", 4622 - ] 4623 - 4624 - [[package]] 4625 - name = "jsonrpsee-types" 4626 - version = "0.24.5" 4627 - source = "registry+https://github.com/rust-lang/crates.io-index" 4628 - checksum = "d8fb16314327cbc94fdf7965ef7e4422509cd5597f76d137bd104eb34aeede67" 4629 - dependencies = [ 4630 - "http 1.1.0", 4631 - "serde", 4632 - "serde_json", 4633 - "thiserror 1.0.68", 4634 - ] 4635 - 4636 - [[package]] 4637 - name = "jsonrpsee-ws-client" 4638 - version = "0.24.5" 4639 - source = "registry+https://github.com/rust-lang/crates.io-index" 4640 - checksum = "39aabf5d6c6f22da8d5b808eea1fab0736059f11fb42f71f141b14f404e5046a" 4641 - dependencies = [ 4642 - "http 1.1.0", 4643 - "jsonrpsee-client-transport", 4644 - "jsonrpsee-core", 4645 - "jsonrpsee-types", 4646 - "url", 4647 - ] 4648 - 4649 - [[package]] 4650 - name = "jsonschema" 4651 - version = "0.18.3" 4652 - source = "registry+https://github.com/rust-lang/crates.io-index" 4653 - checksum = "fa0f4bea31643be4c6a678e9aa4ae44f0db9e5609d5ca9dc9083d06eb3e9a27a" 4654 - dependencies = [ 4655 - "ahash 0.8.11", 4656 - "anyhow", 4657 - "base64 0.22.1", 4658 - "bytecount", 4659 - "clap", 4660 - "fancy-regex", 4661 - "fraction", 4662 - "getrandom 0.2.15", 4663 - "iso8601", 4664 - "itoa 1.0.11", 4665 - "memchr", 4666 - "num-cmp", 4667 - "once_cell", 4668 - "parking_lot", 4669 - "percent-encoding", 4670 - "regex", 4671 - "reqwest 0.12.9", 4672 - "serde", 4673 - "serde_json", 4674 - "time", 4675 - "url", 4676 - "uuid", 4677 - ] 4678 - 4679 - [[package]] 4680 - name = "jsonwebtoken" 4681 - version = "9.3.0" 4682 - source = "registry+https://github.com/rust-lang/crates.io-index" 4683 - checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 4684 - dependencies = [ 4685 - "base64 0.21.7", 4686 - "js-sys", 4687 - "pem", 4688 - "ring", 4689 - "serde", 4690 - "serde_json", 4691 - "simple_asn1", 4692 - ] 4693 - 4694 - [[package]] 4695 - name = "jzon" 4696 - version = "0.12.5" 4697 - source = "registry+https://github.com/rust-lang/crates.io-index" 4698 - checksum = "17ab85f84ca42c5ec520e6f3c9966ba1fd62909ce260f8837e248857d2560509" 4699 - 4700 - [[package]] 4701 - name = "k256" 4702 - version = "0.13.4" 4703 - source = "registry+https://github.com/rust-lang/crates.io-index" 4704 - checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 4705 - dependencies = [ 4706 - "cfg-if", 4707 - "ecdsa 0.16.9", 4708 - "elliptic-curve 0.13.8", 4709 - "once_cell", 4710 - "sha2", 4711 - "signature 2.2.0", 4712 - ] 4713 - 4714 - [[package]] 4715 - name = "keccak" 4716 - version = "0.1.5" 4717 - source = "registry+https://github.com/rust-lang/crates.io-index" 4718 - checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" 4719 - dependencies = [ 4720 - "cpufeatures", 4721 - ] 4722 - 4723 - [[package]] 4724 - name = "keyboard-types" 4725 - version = "0.7.0" 4726 - source = "registry+https://github.com/rust-lang/crates.io-index" 4727 - checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" 4728 - dependencies = [ 4729 - "bitflags 2.6.0", 4730 - "serde", 4731 - "unicode-segmentation", 4732 - ] 4733 - 4734 - [[package]] 4735 - name = "konst" 4736 - version = "0.3.9" 4737 - source = "registry+https://github.com/rust-lang/crates.io-index" 4738 - checksum = "50a0ba6de5f7af397afff922f22c149ff605c766cd3269cf6c1cd5e466dbe3b9" 4739 - dependencies = [ 4740 - "const_panic", 4741 - "konst_kernel", 4742 - "typewit", 4743 - ] 4744 - 4745 - [[package]] 4746 - name = "konst_kernel" 4747 - version = "0.3.9" 4748 - source = "registry+https://github.com/rust-lang/crates.io-index" 4749 - checksum = "be0a455a1719220fd6adf756088e1c69a85bf14b6a9e24537a5cc04f503edb2b" 4750 - dependencies = [ 4751 - "typewit", 4752 - ] 4753 - 4754 - [[package]] 4755 - name = "kqueue" 4756 - version = "1.0.8" 4757 - source = "registry+https://github.com/rust-lang/crates.io-index" 4758 - checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" 4759 - dependencies = [ 4760 - "kqueue-sys", 4761 - "libc", 4762 - ] 4763 - 4764 - [[package]] 4765 - name = "kqueue-sys" 4766 - version = "1.0.4" 4767 - source = "registry+https://github.com/rust-lang/crates.io-index" 4768 - checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" 4769 - dependencies = [ 4770 - "bitflags 1.3.2", 4771 - "libc", 4772 - ] 4773 - 4774 - [[package]] 4775 - name = "kuchikiki" 4776 - version = "0.8.2" 4777 - source = "registry+https://github.com/rust-lang/crates.io-index" 4778 - checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" 4779 - dependencies = [ 4780 - "cssparser", 4781 - "html5ever", 4782 - "indexmap 1.9.3", 4783 - "matches", 4784 - "selectors", 4785 - ] 4786 - 4787 - [[package]] 4788 - name = "kurbo" 4789 - version = "0.11.1" 4790 - source = "registry+https://github.com/rust-lang/crates.io-index" 4791 - checksum = "89234b2cc610a7dd927ebde6b41dd1a5d4214cffaef4cf1fb2195d592f92518f" 4792 - dependencies = [ 4793 - "arrayvec", 4794 - "smallvec", 4795 - ] 4796 - 4797 - [[package]] 4798 - name = "lazy_static" 4799 - version = "1.5.0" 4800 - source = "registry+https://github.com/rust-lang/crates.io-index" 4801 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 4802 - dependencies = [ 4803 - "spin", 4804 - ] 4805 - 4806 - [[package]] 4807 - name = "lebe" 4808 - version = "0.5.2" 4809 - source = "registry+https://github.com/rust-lang/crates.io-index" 4810 - checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" 4811 - 4812 - [[package]] 4813 - name = "libappindicator" 4814 - version = "0.9.0" 4815 - source = "registry+https://github.com/rust-lang/crates.io-index" 4816 - checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" 4817 - dependencies = [ 4818 - "glib", 4819 - "gtk", 4820 - "gtk-sys", 4821 - "libappindicator-sys", 4822 - "log", 4823 - ] 4824 - 4825 - [[package]] 4826 - name = "libappindicator-sys" 4827 - version = "0.9.0" 4828 - source = "registry+https://github.com/rust-lang/crates.io-index" 4829 - checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" 4830 - dependencies = [ 4831 - "gtk-sys", 4832 - "libloading 0.7.4", 4833 - "once_cell", 4834 - ] 4835 - 4836 - [[package]] 4837 - name = "libc" 4838 - version = "0.2.159" 4839 - source = "registry+https://github.com/rust-lang/crates.io-index" 4840 - checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" 4841 - 4842 - [[package]] 4843 - name = "libfuzzer-sys" 4844 - version = "0.4.7" 4845 - source = "registry+https://github.com/rust-lang/crates.io-index" 4846 - checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" 4847 - dependencies = [ 4848 - "arbitrary", 4849 - "cc", 4850 - "once_cell", 4851 - ] 4852 - 4853 - [[package]] 4854 - name = "libloading" 4855 - version = "0.7.4" 4856 - source = "registry+https://github.com/rust-lang/crates.io-index" 4857 - checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 4858 - dependencies = [ 4859 - "cfg-if", 4860 - "winapi", 4861 - ] 4862 - 4863 - [[package]] 4864 - name = "libloading" 4865 - version = "0.8.5" 4866 - source = "registry+https://github.com/rust-lang/crates.io-index" 4867 - checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" 4868 - dependencies = [ 4869 - "cfg-if", 4870 - "windows-targets 0.52.6", 4871 - ] 4872 - 4873 - [[package]] 4874 - name = "libm" 4875 - version = "0.2.8" 4876 - source = "registry+https://github.com/rust-lang/crates.io-index" 4877 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 4878 - 4879 - [[package]] 4880 - name = "libredox" 4881 - version = "0.1.3" 4882 - source = "registry+https://github.com/rust-lang/crates.io-index" 4883 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 4884 - dependencies = [ 4885 - "bitflags 2.6.0", 4886 - "libc", 4887 - "redox_syscall", 4888 - ] 4889 - 4890 - [[package]] 4891 - name = "libxdo" 4892 - version = "0.6.0" 4893 - source = "registry+https://github.com/rust-lang/crates.io-index" 4894 - checksum = "00333b8756a3d28e78def82067a377de7fa61b24909000aeaa2b446a948d14db" 4895 - dependencies = [ 4896 - "libxdo-sys", 4897 - ] 4898 - 4899 - [[package]] 4900 - name = "libxdo-sys" 4901 - version = "0.11.0" 4902 - source = "registry+https://github.com/rust-lang/crates.io-index" 4903 - checksum = "db23b9e7e2b7831bbd8aac0bbeeeb7b68cbebc162b227e7052e8e55829a09212" 4904 - dependencies = [ 4905 - "libc", 4906 - "x11", 4907 - ] 4908 - 4909 - [[package]] 4910 - name = "linked-hash-map" 4911 - version = "0.5.6" 4912 - source = "registry+https://github.com/rust-lang/crates.io-index" 4913 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 4914 - 4915 - [[package]] 4916 - name = "linux-raw-sys" 4917 - version = "0.3.8" 4918 - source = "registry+https://github.com/rust-lang/crates.io-index" 4919 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 4920 - 4921 - [[package]] 4922 - name = "linux-raw-sys" 4923 - version = "0.4.14" 4924 - source = "registry+https://github.com/rust-lang/crates.io-index" 4925 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 4926 - 4927 - [[package]] 4928 - name = "litemap" 4929 - version = "0.7.3" 4930 - source = "registry+https://github.com/rust-lang/crates.io-index" 4931 - checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" 4932 - 4933 - [[package]] 4934 - name = "local-ip-address" 4935 - version = "0.6.3" 4936 - source = "registry+https://github.com/rust-lang/crates.io-index" 4937 - checksum = "3669cf5561f8d27e8fc84cc15e58350e70f557d4d65f70e3154e54cd2f8e1782" 4938 - dependencies = [ 4939 - "libc", 4940 - "neli", 4941 - "thiserror 1.0.68", 4942 - "windows-sys 0.59.0", 4943 - ] 4944 - 4945 - [[package]] 4946 - name = "lock_api" 4947 - version = "0.4.12" 4948 - source = "registry+https://github.com/rust-lang/crates.io-index" 4949 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 4950 - dependencies = [ 4951 - "autocfg", 4952 - "scopeguard", 4953 - ] 4954 - 4955 - [[package]] 4956 - name = "lockfree-object-pool" 4957 - version = "0.1.6" 4958 - source = "registry+https://github.com/rust-lang/crates.io-index" 4959 - checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e" 4960 - 4961 - [[package]] 4962 - name = "log" 4963 - version = "0.4.22" 4964 - source = "registry+https://github.com/rust-lang/crates.io-index" 4965 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 4966 - dependencies = [ 4967 - "value-bag", 4968 - ] 4969 - 4970 - [[package]] 4971 - name = "loop9" 4972 - version = "0.1.5" 4973 - source = "registry+https://github.com/rust-lang/crates.io-index" 4974 - checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 4975 - dependencies = [ 4976 - "imgref", 4977 - ] 4978 - 4979 - [[package]] 4980 - name = "lru" 4981 - version = "0.12.4" 4982 - source = "registry+https://github.com/rust-lang/crates.io-index" 4983 - checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904" 4984 - dependencies = [ 4985 - "hashbrown 0.14.5", 4986 - ] 4987 - 4988 - [[package]] 4989 - name = "lzma-sys" 4990 - version = "0.1.20" 4991 - source = "registry+https://github.com/rust-lang/crates.io-index" 4992 - checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" 4993 - dependencies = [ 4994 - "cc", 4995 - "libc", 4996 - "pkg-config", 4997 - ] 4998 - 4999 - [[package]] 5000 - name = "mac" 5001 - version = "0.1.1" 5002 - source = "registry+https://github.com/rust-lang/crates.io-index" 5003 - checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 5004 - 5005 - [[package]] 5006 - name = "magic_string" 5007 - version = "0.3.4" 5008 - source = "registry+https://github.com/rust-lang/crates.io-index" 5009 - checksum = "6c8033ce8c43f7ccb207e4699f30eed50d7526379ee08fab47159f80b7934e18" 5010 - dependencies = [ 5011 - "base64 0.13.1", 5012 - "regex", 5013 - "serde", 5014 - "serde_json", 5015 - "vlq", 5016 - ] 5017 - 5018 - [[package]] 5019 - name = "malloc_buf" 5020 - version = "0.0.6" 5021 - source = "registry+https://github.com/rust-lang/crates.io-index" 5022 - checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 5023 - dependencies = [ 5024 - "libc", 5025 - ] 5026 - 5027 - [[package]] 5028 - name = "markup5ever" 5029 - version = "0.11.0" 5030 - source = "registry+https://github.com/rust-lang/crates.io-index" 5031 - checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 5032 - dependencies = [ 5033 - "log", 5034 - "phf 0.10.1", 5035 - "phf_codegen 0.10.0", 5036 - "string_cache", 5037 - "string_cache_codegen", 5038 - "tendril", 5039 - ] 5040 - 5041 - [[package]] 5042 - name = "matches" 5043 - version = "0.1.10" 5044 - source = "registry+https://github.com/rust-lang/crates.io-index" 5045 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 5046 - 5047 - [[package]] 5048 - name = "matchit" 5049 - version = "0.7.3" 5050 - source = "registry+https://github.com/rust-lang/crates.io-index" 5051 - checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 5052 - 5053 - [[package]] 5054 - name = "maybe-rayon" 5055 - version = "0.1.1" 5056 - source = "registry+https://github.com/rust-lang/crates.io-index" 5057 - checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 5058 - dependencies = [ 5059 - "cfg-if", 5060 - "rayon", 5061 - ] 5062 - 5063 - [[package]] 5064 - name = "md-5" 5065 - version = "0.10.6" 5066 - source = "registry+https://github.com/rust-lang/crates.io-index" 5067 - checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 5068 - dependencies = [ 5069 - "cfg-if", 5070 - "digest", 5071 - ] 5072 - 5073 - [[package]] 5074 - name = "md5" 5075 - version = "0.7.0" 5076 - source = "registry+https://github.com/rust-lang/crates.io-index" 5077 - checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 5078 - 5079 - [[package]] 5080 - name = "memchr" 5081 - version = "2.7.4" 5082 - source = "registry+https://github.com/rust-lang/crates.io-index" 5083 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 5084 - 5085 - [[package]] 5086 - name = "memmap2" 5087 - version = "0.9.5" 5088 - source = "registry+https://github.com/rust-lang/crates.io-index" 5089 - checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" 5090 - dependencies = [ 5091 - "libc", 5092 - ] 5093 - 5094 - [[package]] 5095 - name = "memoffset" 5096 - version = "0.9.1" 5097 - source = "registry+https://github.com/rust-lang/crates.io-index" 5098 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 5099 - dependencies = [ 5100 - "autocfg", 5101 - ] 5102 - 5103 - [[package]] 5104 - name = "miette" 5105 - version = "7.2.0" 5106 - source = "registry+https://github.com/rust-lang/crates.io-index" 5107 - checksum = "4edc8853320c2a0dab800fbda86253c8938f6ea88510dc92c5f1ed20e794afc1" 5108 - dependencies = [ 5109 - "cfg-if", 5110 - "miette-derive", 5111 - "owo-colors", 5112 - "textwrap", 5113 - "thiserror 1.0.68", 5114 - "unicode-width", 5115 - ] 5116 - 5117 - [[package]] 5118 - name = "miette-derive" 5119 - version = "7.2.0" 5120 - source = "registry+https://github.com/rust-lang/crates.io-index" 5121 - checksum = "dcf09caffaac8068c346b6df2a7fc27a177fd20b39421a39ce0a211bde679a6c" 5122 - dependencies = [ 5123 - "proc-macro2", 5124 - "quote", 5125 - "syn 2.0.87", 5126 - ] 5127 - 5128 - [[package]] 5129 - name = "mime" 5130 - version = "0.3.17" 5131 - source = "registry+https://github.com/rust-lang/crates.io-index" 5132 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 5133 - 5134 - [[package]] 5135 - name = "minicbor" 5136 - version = "0.20.0" 5137 - source = "registry+https://github.com/rust-lang/crates.io-index" 5138 - checksum = "9d15f4203d71fdf90903c2696e55426ac97a363c67b218488a73b534ce7aca10" 5139 - dependencies = [ 5140 - "minicbor-derive", 5141 - ] 5142 - 5143 - [[package]] 5144 - name = "minicbor-derive" 5145 - version = "0.13.0" 5146 - source = "registry+https://github.com/rust-lang/crates.io-index" 5147 - checksum = "1154809406efdb7982841adb6311b3d095b46f78342dd646736122fe6b19e267" 5148 - dependencies = [ 5149 - "proc-macro2", 5150 - "quote", 5151 - "syn 1.0.109", 5152 - ] 5153 - 5154 - [[package]] 5155 - name = "minimal-lexical" 5156 - version = "0.2.1" 5157 - source = "registry+https://github.com/rust-lang/crates.io-index" 5158 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 5159 - 5160 - [[package]] 5161 - name = "minisign" 5162 - version = "0.7.3" 5163 - source = "registry+https://github.com/rust-lang/crates.io-index" 5164 - checksum = "b23ef13ff1d745b1e52397daaa247e333c607f3cff96d4df2b798dc252db974b" 5165 - dependencies = [ 5166 - "getrandom 0.2.15", 5167 - "rpassword", 5168 - "scrypt", 5169 - ] 5170 - 5171 - [[package]] 5172 - name = "miniz_oxide" 5173 - version = "0.7.4" 5174 - source = "registry+https://github.com/rust-lang/crates.io-index" 5175 - checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 5176 - dependencies = [ 5177 - "adler", 5178 - ] 5179 - 5180 - [[package]] 5181 - name = "miniz_oxide" 5182 - version = "0.8.0" 5183 - source = "registry+https://github.com/rust-lang/crates.io-index" 5184 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 5185 - dependencies = [ 5186 - "adler2", 5187 - "simd-adler32", 5188 - ] 5189 - 5190 - [[package]] 5191 - name = "mio" 5192 - version = "0.8.11" 5193 - source = "registry+https://github.com/rust-lang/crates.io-index" 5194 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 5195 - dependencies = [ 5196 - "libc", 5197 - "log", 5198 - "wasi 0.11.0+wasi-snapshot-preview1", 5199 - "windows-sys 0.48.0", 5200 - ] 5201 - 5202 - [[package]] 5203 - name = "mio" 5204 - version = "1.0.2" 5205 - source = "registry+https://github.com/rust-lang/crates.io-index" 5206 - checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 5207 - dependencies = [ 5208 - "hermit-abi 0.3.9", 5209 - "libc", 5210 - "wasi 0.11.0+wasi-snapshot-preview1", 5211 - "windows-sys 0.52.0", 5212 - ] 5213 - 5214 - [[package]] 5215 - name = "muda" 5216 - version = "0.15.1" 5217 - source = "registry+https://github.com/rust-lang/crates.io-index" 5218 - checksum = "b8123dfd4996055ac9b15a60ad263b44b01e539007523ad7a4a533a3d93b0591" 5219 - dependencies = [ 5220 - "crossbeam-channel", 5221 - "dpi", 5222 - "gtk", 5223 - "keyboard-types", 5224 - "libxdo", 5225 - "objc2", 5226 - "objc2-app-kit", 5227 - "objc2-foundation", 5228 - "once_cell", 5229 - "png", 5230 - "serde", 5231 - "thiserror 1.0.68", 5232 - "windows-sys 0.59.0", 5233 - ] 5234 - 5235 - [[package]] 5236 - name = "napi" 5237 - version = "2.16.11" 5238 - source = "registry+https://github.com/rust-lang/crates.io-index" 5239 - checksum = "53575dfa17f208dd1ce3a2da2da4659aae393b256a472f2738a8586a6c4107fd" 5240 - dependencies = [ 5241 - "bitflags 2.6.0", 5242 - "ctor", 5243 - "napi-derive", 5244 - "napi-sys", 5245 - "once_cell", 5246 - ] 5247 - 5248 - [[package]] 5249 - name = "napi-build" 5250 - version = "2.1.3" 5251 - source = "registry+https://github.com/rust-lang/crates.io-index" 5252 - checksum = "e1c0f5d67ee408a4685b61f5ab7e58605c8ae3f2b4189f0127d804ff13d5560a" 5253 - 5254 - [[package]] 5255 - name = "napi-derive" 5256 - version = "2.16.12" 5257 - source = "registry+https://github.com/rust-lang/crates.io-index" 5258 - checksum = "17435f7a00bfdab20b0c27d9c56f58f6499e418252253081bfff448099da31d1" 5259 - dependencies = [ 5260 - "cfg-if", 5261 - "convert_case 0.6.0", 5262 - "napi-derive-backend", 5263 - "proc-macro2", 5264 - "quote", 5265 - "syn 2.0.87", 5266 - ] 5267 - 5268 - [[package]] 5269 - name = "napi-derive-backend" 5270 - version = "1.0.74" 5271 - source = "registry+https://github.com/rust-lang/crates.io-index" 5272 - checksum = "967c485e00f0bf3b1bdbe510a38a4606919cf1d34d9a37ad41f25a81aa077abe" 5273 - dependencies = [ 5274 - "convert_case 0.6.0", 5275 - "once_cell", 5276 - "proc-macro2", 5277 - "quote", 5278 - "regex", 5279 - "semver", 5280 - "syn 2.0.87", 5281 - ] 5282 - 5283 - [[package]] 5284 - name = "napi-sys" 5285 - version = "2.4.0" 5286 - source = "registry+https://github.com/rust-lang/crates.io-index" 5287 - checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3" 5288 - dependencies = [ 5289 - "libloading 0.8.5", 5290 - ] 5291 - 5292 - [[package]] 5293 - name = "native-tls" 5294 - version = "0.2.12" 5295 - source = "registry+https://github.com/rust-lang/crates.io-index" 5296 - checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 5297 - dependencies = [ 5298 - "libc", 5299 - "log", 5300 - "openssl", 5301 - "openssl-probe", 5302 - "openssl-sys", 5303 - "schannel", 5304 - "security-framework", 5305 - "security-framework-sys", 5306 - "tempfile", 5307 - ] 5308 - 5309 - [[package]] 5310 - name = "ndk" 5311 - version = "0.9.0" 5312 - source = "registry+https://github.com/rust-lang/crates.io-index" 5313 - checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 5314 - dependencies = [ 5315 - "bitflags 2.6.0", 5316 - "jni-sys", 5317 - "log", 5318 - "ndk-sys", 5319 - "num_enum", 5320 - "raw-window-handle", 5321 - "thiserror 1.0.68", 5322 - ] 5323 - 5324 - [[package]] 5325 - name = "ndk-context" 5326 - version = "0.1.1" 5327 - source = "registry+https://github.com/rust-lang/crates.io-index" 5328 - checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 5329 - 5330 - [[package]] 5331 - name = "ndk-sys" 5332 - version = "0.6.0+11769913" 5333 - source = "registry+https://github.com/rust-lang/crates.io-index" 5334 - checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 5335 - dependencies = [ 5336 - "jni-sys", 5337 - ] 5338 - 5339 - [[package]] 5340 - name = "neli" 5341 - version = "0.6.4" 5342 - source = "registry+https://github.com/rust-lang/crates.io-index" 5343 - checksum = "1100229e06604150b3becd61a4965d5c70f3be1759544ea7274166f4be41ef43" 5344 - dependencies = [ 5345 - "byteorder", 5346 - "libc", 5347 - "log", 5348 - "neli-proc-macros", 5349 - ] 5350 - 5351 - [[package]] 5352 - name = "neli-proc-macros" 5353 - version = "0.1.3" 5354 - source = "registry+https://github.com/rust-lang/crates.io-index" 5355 - checksum = "c168194d373b1e134786274020dae7fc5513d565ea2ebb9bc9ff17ffb69106d4" 5356 - dependencies = [ 5357 - "either", 5358 - "proc-macro2", 5359 - "quote", 5360 - "serde", 5361 - "syn 1.0.109", 5362 - ] 5363 - 5364 - [[package]] 5365 - name = "new_debug_unreachable" 5366 - version = "1.0.6" 5367 - source = "registry+https://github.com/rust-lang/crates.io-index" 5368 - checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 5369 - 5370 - [[package]] 5371 - name = "nix" 5372 - version = "0.29.0" 5373 - source = "registry+https://github.com/rust-lang/crates.io-index" 5374 - checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 5375 - dependencies = [ 5376 - "bitflags 2.6.0", 5377 - "cfg-if", 5378 - "cfg_aliases", 5379 - "libc", 5380 - ] 5381 - 5382 - [[package]] 5383 - name = "nodrop" 5384 - version = "0.1.14" 5385 - source = "registry+https://github.com/rust-lang/crates.io-index" 5386 - checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 5387 - 5388 - [[package]] 5389 - name = "nom" 5390 - version = "7.1.3" 5391 - source = "registry+https://github.com/rust-lang/crates.io-index" 5392 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 5393 - dependencies = [ 5394 - "memchr", 5395 - "minimal-lexical", 5396 - ] 5397 - 5398 - [[package]] 5399 - name = "nonmax" 5400 - version = "0.5.5" 5401 - source = "registry+https://github.com/rust-lang/crates.io-index" 5402 - checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51" 5403 - 5404 - [[package]] 5405 - name = "noop_proc_macro" 5406 - version = "0.3.0" 5407 - source = "registry+https://github.com/rust-lang/crates.io-index" 5408 - checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 5409 - 5410 - [[package]] 5411 - name = "notify" 5412 - version = "6.1.1" 5413 - source = "registry+https://github.com/rust-lang/crates.io-index" 5414 - checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 5415 - dependencies = [ 5416 - "bitflags 2.6.0", 5417 - "crossbeam-channel", 5418 - "filetime", 5419 - "fsevent-sys", 5420 - "inotify", 5421 - "kqueue", 5422 - "libc", 5423 - "log", 5424 - "mio 0.8.11", 5425 - "walkdir", 5426 - "windows-sys 0.48.0", 5427 - ] 5428 - 5429 - [[package]] 5430 - name = "notify-debouncer-mini" 5431 - version = "0.4.1" 5432 - source = "registry+https://github.com/rust-lang/crates.io-index" 5433 - checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" 5434 - dependencies = [ 5435 - "crossbeam-channel", 5436 - "log", 5437 - "notify", 5438 - ] 5439 - 5440 - [[package]] 5441 - name = "num" 5442 - version = "0.4.3" 5443 - source = "registry+https://github.com/rust-lang/crates.io-index" 5444 - checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 5445 - dependencies = [ 5446 - "num-bigint", 5447 - "num-complex", 5448 - "num-integer", 5449 - "num-iter", 5450 - "num-rational", 5451 - "num-traits", 5452 - ] 5453 - 5454 - [[package]] 5455 - name = "num-bigint" 5456 - version = "0.4.6" 5457 - source = "registry+https://github.com/rust-lang/crates.io-index" 5458 - checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 5459 - dependencies = [ 5460 - "num-integer", 5461 - "num-traits", 5462 - ] 5463 - 5464 - [[package]] 5465 - name = "num-bigint-dig" 5466 - version = "0.8.4" 5467 - source = "registry+https://github.com/rust-lang/crates.io-index" 5468 - checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 5469 - dependencies = [ 5470 - "byteorder", 5471 - "lazy_static", 5472 - "libm", 5473 - "num-integer", 5474 - "num-iter", 5475 - "num-traits", 5476 - "rand 0.8.5", 5477 - "serde", 5478 - "smallvec", 5479 - "zeroize", 5480 - ] 5481 - 5482 - [[package]] 5483 - name = "num-cmp" 5484 - version = "0.1.0" 5485 - source = "registry+https://github.com/rust-lang/crates.io-index" 5486 - checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa" 5487 - 5488 - [[package]] 5489 - name = "num-complex" 5490 - version = "0.4.6" 5491 - source = "registry+https://github.com/rust-lang/crates.io-index" 5492 - checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 5493 - dependencies = [ 5494 - "num-traits", 5495 - ] 5496 - 5497 - [[package]] 5498 - name = "num-conv" 5499 - version = "0.1.0" 5500 - source = "registry+https://github.com/rust-lang/crates.io-index" 5501 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 5502 - 5503 - [[package]] 5504 - name = "num-derive" 5505 - version = "0.4.2" 5506 - source = "registry+https://github.com/rust-lang/crates.io-index" 5507 - checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 5508 - dependencies = [ 5509 - "proc-macro2", 5510 - "quote", 5511 - "syn 2.0.87", 5512 - ] 5513 - 5514 - [[package]] 5515 - name = "num-integer" 5516 - version = "0.1.46" 5517 - source = "registry+https://github.com/rust-lang/crates.io-index" 5518 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 5519 - dependencies = [ 5520 - "num-traits", 5521 - ] 5522 - 5523 - [[package]] 5524 - name = "num-iter" 5525 - version = "0.1.45" 5526 - source = "registry+https://github.com/rust-lang/crates.io-index" 5527 - checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 5528 - dependencies = [ 5529 - "autocfg", 5530 - "num-integer", 5531 - "num-traits", 5532 - ] 5533 - 5534 - [[package]] 5535 - name = "num-modular" 5536 - version = "0.6.1" 5537 - source = "registry+https://github.com/rust-lang/crates.io-index" 5538 - checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f" 5539 - 5540 - [[package]] 5541 - name = "num-order" 5542 - version = "1.2.0" 5543 - source = "registry+https://github.com/rust-lang/crates.io-index" 5544 - checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6" 5545 - dependencies = [ 5546 - "num-modular", 5547 - ] 5548 - 5549 - [[package]] 5550 - name = "num-rational" 5551 - version = "0.4.2" 5552 - source = "registry+https://github.com/rust-lang/crates.io-index" 5553 - checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 5554 - dependencies = [ 5555 - "num-bigint", 5556 - "num-integer", 5557 - "num-traits", 5558 - ] 5559 - 5560 - [[package]] 5561 - name = "num-traits" 5562 - version = "0.2.19" 5563 - source = "registry+https://github.com/rust-lang/crates.io-index" 5564 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 5565 - dependencies = [ 5566 - "autocfg", 5567 - "libm", 5568 - ] 5569 - 5570 - [[package]] 5571 - name = "num_enum" 5572 - version = "0.7.3" 5573 - source = "registry+https://github.com/rust-lang/crates.io-index" 5574 - checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" 5575 - dependencies = [ 5576 - "num_enum_derive", 5577 - ] 5578 - 5579 - [[package]] 5580 - name = "num_enum_derive" 5581 - version = "0.7.3" 5582 - source = "registry+https://github.com/rust-lang/crates.io-index" 5583 - checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" 5584 - dependencies = [ 5585 - "proc-macro-crate 3.2.0", 5586 - "proc-macro2", 5587 - "quote", 5588 - "syn 2.0.87", 5589 - ] 5590 - 5591 - [[package]] 5592 - name = "num_threads" 5593 - version = "0.1.7" 5594 - source = "registry+https://github.com/rust-lang/crates.io-index" 5595 - checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 5596 - dependencies = [ 5597 - "libc", 5598 - ] 5599 - 5600 - [[package]] 5601 - name = "objc" 5602 - version = "0.2.7" 5603 - source = "registry+https://github.com/rust-lang/crates.io-index" 5604 - checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 5605 - dependencies = [ 5606 - "malloc_buf", 5607 - ] 5608 - 5609 - [[package]] 5610 - name = "objc-sys" 5611 - version = "0.3.5" 5612 - source = "registry+https://github.com/rust-lang/crates.io-index" 5613 - checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 5614 - dependencies = [ 5615 - "cc", 5616 - ] 5617 - 5618 - [[package]] 5619 - name = "objc2" 5620 - version = "0.5.2" 5621 - source = "registry+https://github.com/rust-lang/crates.io-index" 5622 - checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 5623 - dependencies = [ 5624 - "objc-sys", 5625 - "objc2-encode", 5626 - ] 5627 - 5628 - [[package]] 5629 - name = "objc2-app-kit" 5630 - version = "0.2.2" 5631 - source = "registry+https://github.com/rust-lang/crates.io-index" 5632 - checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" 5633 - dependencies = [ 5634 - "bitflags 2.6.0", 5635 - "block2", 5636 - "libc", 5637 - "objc2", 5638 - "objc2-core-data", 5639 - "objc2-core-image", 5640 - "objc2-foundation", 5641 - "objc2-quartz-core", 5642 - ] 5643 - 5644 - [[package]] 5645 - name = "objc2-cloud-kit" 5646 - version = "0.2.2" 5647 - source = "registry+https://github.com/rust-lang/crates.io-index" 5648 - checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" 5649 - dependencies = [ 5650 - "bitflags 2.6.0", 5651 - "block2", 5652 - "objc2", 5653 - "objc2-core-location", 5654 - "objc2-foundation", 5655 - ] 5656 - 5657 - [[package]] 5658 - name = "objc2-contacts" 5659 - version = "0.2.2" 5660 - source = "registry+https://github.com/rust-lang/crates.io-index" 5661 - checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" 5662 - dependencies = [ 5663 - "block2", 5664 - "objc2", 5665 - "objc2-foundation", 5666 - ] 5667 - 5668 - [[package]] 5669 - name = "objc2-core-data" 5670 - version = "0.2.2" 5671 - source = "registry+https://github.com/rust-lang/crates.io-index" 5672 - checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" 5673 - dependencies = [ 5674 - "bitflags 2.6.0", 5675 - "block2", 5676 - "objc2", 5677 - "objc2-foundation", 5678 - ] 5679 - 5680 - [[package]] 5681 - name = "objc2-core-image" 5682 - version = "0.2.2" 5683 - source = "registry+https://github.com/rust-lang/crates.io-index" 5684 - checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" 5685 - dependencies = [ 5686 - "block2", 5687 - "objc2", 5688 - "objc2-foundation", 5689 - "objc2-metal", 5690 - ] 5691 - 5692 - [[package]] 5693 - name = "objc2-core-location" 5694 - version = "0.2.2" 5695 - source = "registry+https://github.com/rust-lang/crates.io-index" 5696 - checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" 5697 - dependencies = [ 5698 - "block2", 5699 - "objc2", 5700 - "objc2-contacts", 5701 - "objc2-foundation", 5702 - ] 5703 - 5704 - [[package]] 5705 - name = "objc2-encode" 5706 - version = "4.0.3" 5707 - source = "registry+https://github.com/rust-lang/crates.io-index" 5708 - checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 5709 - 5710 - [[package]] 5711 - name = "objc2-foundation" 5712 - version = "0.2.2" 5713 - source = "registry+https://github.com/rust-lang/crates.io-index" 5714 - checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 5715 - dependencies = [ 5716 - "bitflags 2.6.0", 5717 - "block2", 5718 - "libc", 5719 - "objc2", 5720 - ] 5721 - 5722 - [[package]] 5723 - name = "objc2-link-presentation" 5724 - version = "0.2.2" 5725 - source = "registry+https://github.com/rust-lang/crates.io-index" 5726 - checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" 5727 - dependencies = [ 5728 - "block2", 5729 - "objc2", 5730 - "objc2-app-kit", 5731 - "objc2-foundation", 5732 - ] 5733 - 5734 - [[package]] 5735 - name = "objc2-metal" 5736 - version = "0.2.2" 5737 - source = "registry+https://github.com/rust-lang/crates.io-index" 5738 - checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 5739 - dependencies = [ 5740 - "bitflags 2.6.0", 5741 - "block2", 5742 - "objc2", 5743 - "objc2-foundation", 5744 - ] 5745 - 5746 - [[package]] 5747 - name = "objc2-quartz-core" 5748 - version = "0.2.2" 5749 - source = "registry+https://github.com/rust-lang/crates.io-index" 5750 - checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 5751 - dependencies = [ 5752 - "bitflags 2.6.0", 5753 - "block2", 5754 - "objc2", 5755 - "objc2-foundation", 5756 - "objc2-metal", 5757 - ] 5758 - 5759 - [[package]] 5760 - name = "objc2-symbols" 5761 - version = "0.2.2" 5762 - source = "registry+https://github.com/rust-lang/crates.io-index" 5763 - checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" 5764 - dependencies = [ 5765 - "objc2", 5766 - "objc2-foundation", 5767 - ] 5768 - 5769 - [[package]] 5770 - name = "objc2-ui-kit" 5771 - version = "0.2.2" 5772 - source = "registry+https://github.com/rust-lang/crates.io-index" 5773 - checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" 5774 - dependencies = [ 5775 - "bitflags 2.6.0", 5776 - "block2", 5777 - "objc2", 5778 - "objc2-cloud-kit", 5779 - "objc2-core-data", 5780 - "objc2-core-image", 5781 - "objc2-core-location", 5782 - "objc2-foundation", 5783 - "objc2-link-presentation", 5784 - "objc2-quartz-core", 5785 - "objc2-symbols", 5786 - "objc2-uniform-type-identifiers", 5787 - "objc2-user-notifications", 5788 - ] 5789 - 5790 - [[package]] 5791 - name = "objc2-uniform-type-identifiers" 5792 - version = "0.2.2" 5793 - source = "registry+https://github.com/rust-lang/crates.io-index" 5794 - checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" 5795 - dependencies = [ 5796 - "block2", 5797 - "objc2", 5798 - "objc2-foundation", 5799 - ] 5800 - 5801 - [[package]] 5802 - name = "objc2-user-notifications" 5803 - version = "0.2.2" 5804 - source = "registry+https://github.com/rust-lang/crates.io-index" 5805 - checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" 5806 - dependencies = [ 5807 - "bitflags 2.6.0", 5808 - "block2", 5809 - "objc2", 5810 - "objc2-core-location", 5811 - "objc2-foundation", 5812 - ] 5813 - 5814 - [[package]] 5815 - name = "objc2-web-kit" 5816 - version = "0.2.2" 5817 - source = "registry+https://github.com/rust-lang/crates.io-index" 5818 - checksum = "68bc69301064cebefc6c4c90ce9cba69225239e4b8ff99d445a2b5563797da65" 5819 - dependencies = [ 5820 - "bitflags 2.6.0", 5821 - "block2", 5822 - "objc2", 5823 - "objc2-app-kit", 5824 - "objc2-foundation", 5825 - ] 5826 - 5827 - [[package]] 5828 - name = "object" 5829 - version = "0.32.2" 5830 - source = "registry+https://github.com/rust-lang/crates.io-index" 5831 - checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 5832 - dependencies = [ 5833 - "crc32fast", 5834 - "flate2", 5835 - "hashbrown 0.14.5", 5836 - "indexmap 2.6.0", 5837 - "memchr", 5838 - "ruzstd", 5839 - ] 5840 - 5841 - [[package]] 5842 - name = "object" 5843 - version = "0.36.5" 5844 - source = "registry+https://github.com/rust-lang/crates.io-index" 5845 - checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" 5846 - dependencies = [ 5847 - "memchr", 5848 - ] 5849 - 5850 - [[package]] 5851 - name = "ocb3" 5852 - version = "0.1.0" 5853 - source = "registry+https://github.com/rust-lang/crates.io-index" 5854 - checksum = "c196e0276c471c843dd5777e7543a36a298a4be942a2a688d8111cd43390dedb" 5855 - dependencies = [ 5856 - "aead", 5857 - "cipher", 5858 - "ctr", 5859 - "subtle", 5860 - ] 5861 - 5862 - [[package]] 5863 - name = "oid-registry" 5864 - version = "0.6.1" 5865 - source = "registry+https://github.com/rust-lang/crates.io-index" 5866 - checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" 5867 - dependencies = [ 5868 - "asn1-rs", 5869 - ] 5870 - 5871 - [[package]] 5872 - name = "once-cell-regex" 5873 - version = "0.2.1" 5874 - source = "registry+https://github.com/rust-lang/crates.io-index" 5875 - checksum = "b3de7e389a5043420c8f2b95ed03f3f104ad6f4c41f7d7e27298f033abc253e8" 5876 - dependencies = [ 5877 - "once_cell", 5878 - "regex", 5879 - ] 5880 - 5881 - [[package]] 5882 - name = "once_cell" 5883 - version = "1.20.2" 5884 - source = "registry+https://github.com/rust-lang/crates.io-index" 5885 - checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 5886 - 5887 - [[package]] 5888 - name = "opaque-debug" 5889 - version = "0.3.1" 5890 - source = "registry+https://github.com/rust-lang/crates.io-index" 5891 - checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 5892 - 5893 - [[package]] 5894 - name = "openssl" 5895 - version = "0.10.66" 5896 - source = "registry+https://github.com/rust-lang/crates.io-index" 5897 - checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" 5898 - dependencies = [ 5899 - "bitflags 2.6.0", 5900 - "cfg-if", 5901 - "foreign-types 0.3.2", 5902 - "libc", 5903 - "once_cell", 5904 - "openssl-macros", 5905 - "openssl-sys", 5906 - ] 5907 - 5908 - [[package]] 5909 - name = "openssl-macros" 5910 - version = "0.1.1" 5911 - source = "registry+https://github.com/rust-lang/crates.io-index" 5912 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 5913 - dependencies = [ 5914 - "proc-macro2", 5915 - "quote", 5916 - "syn 2.0.87", 5917 - ] 5918 - 5919 - [[package]] 5920 - name = "openssl-probe" 5921 - version = "0.1.5" 5922 - source = "registry+https://github.com/rust-lang/crates.io-index" 5923 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 5924 - 5925 - [[package]] 5926 - name = "openssl-src" 5927 - version = "300.3.2+3.3.2" 5928 - source = "registry+https://github.com/rust-lang/crates.io-index" 5929 - checksum = "a211a18d945ef7e648cc6e0058f4c548ee46aab922ea203e0d30e966ea23647b" 5930 - dependencies = [ 5931 - "cc", 5932 - ] 5933 - 5934 - [[package]] 5935 - name = "openssl-sys" 5936 - version = "0.9.103" 5937 - source = "registry+https://github.com/rust-lang/crates.io-index" 5938 - checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" 5939 - dependencies = [ 5940 - "cc", 5941 - "libc", 5942 - "openssl-src", 5943 - "pkg-config", 5944 - "vcpkg", 5945 - ] 5946 - 5947 - [[package]] 5948 - name = "option-ext" 5949 - version = "0.2.0" 5950 - source = "registry+https://github.com/rust-lang/crates.io-index" 5951 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 5952 - 5953 - [[package]] 5954 - name = "ordered-float" 5955 - version = "2.10.1" 5956 - source = "registry+https://github.com/rust-lang/crates.io-index" 5957 - checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 5958 - dependencies = [ 5959 - "num-traits", 5960 - ] 5961 - 5962 - [[package]] 5963 - name = "os_info" 5964 - version = "3.8.2" 5965 - source = "registry+https://github.com/rust-lang/crates.io-index" 5966 - checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092" 5967 - dependencies = [ 5968 - "log", 5969 - "serde", 5970 - "windows-sys 0.52.0", 5971 - ] 5972 - 5973 - [[package]] 5974 - name = "os_pipe" 5975 - version = "1.2.1" 5976 - source = "registry+https://github.com/rust-lang/crates.io-index" 5977 - checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982" 5978 - dependencies = [ 5979 - "libc", 5980 - "windows-sys 0.59.0", 5981 - ] 5982 - 5983 - [[package]] 5984 - name = "outref" 5985 - version = "0.5.1" 5986 - source = "registry+https://github.com/rust-lang/crates.io-index" 5987 - checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" 5988 - 5989 - [[package]] 5990 - name = "owo-colors" 5991 - version = "4.1.0" 5992 - source = "registry+https://github.com/rust-lang/crates.io-index" 5993 - checksum = "fb37767f6569cd834a413442455e0f066d0d522de8630436e2a1761d9726ba56" 5994 - 5995 - [[package]] 5996 - name = "oxc_allocator" 5997 - version = "0.25.0" 5998 - source = "registry+https://github.com/rust-lang/crates.io-index" 5999 - checksum = "466379b9ab2e05996bfedfae9c96753a633bb5a53aaf0898eb0e0ab09e169514" 6000 - dependencies = [ 6001 - "allocator-api2", 6002 - "bumpalo", 6003 - ] 6004 - 6005 - [[package]] 6006 - name = "oxc_ast" 6007 - version = "0.25.0" 6008 - source = "registry+https://github.com/rust-lang/crates.io-index" 6009 - checksum = "34bd4f56fe32adea489153f6d681d9ee01f0336b9b6a89f062611488d8f80797" 6010 - dependencies = [ 6011 - "bitflags 2.6.0", 6012 - "num-bigint", 6013 - "oxc_allocator", 6014 - "oxc_ast_macros", 6015 - "oxc_span", 6016 - "oxc_syntax", 6017 - ] 6018 - 6019 - [[package]] 6020 - name = "oxc_ast_macros" 6021 - version = "0.25.0" 6022 - source = "registry+https://github.com/rust-lang/crates.io-index" 6023 - checksum = "197b36739db0e80919e19a90785233eea5664697d4cd829bd49af34838ec43d2" 6024 - dependencies = [ 6025 - "proc-macro2", 6026 - "quote", 6027 - "syn 2.0.87", 6028 - ] 6029 - 6030 - [[package]] 6031 - name = "oxc_diagnostics" 6032 - version = "0.25.0" 6033 - source = "registry+https://github.com/rust-lang/crates.io-index" 6034 - checksum = "2cd4bb48b9527f5825c84acb688ec1485df4a5edadc17b3582626bb49736752b" 6035 - dependencies = [ 6036 - "miette", 6037 - "owo-colors", 6038 - "textwrap", 6039 - "unicode-width", 6040 - ] 6041 - 6042 - [[package]] 6043 - name = "oxc_index" 6044 - version = "0.25.0" 6045 - source = "registry+https://github.com/rust-lang/crates.io-index" 6046 - checksum = "bc9aa9446f6d2a64d0baa02fe20dc3d64e3e112083854b84fdacb82261be2b84" 6047 - 6048 - [[package]] 6049 - name = "oxc_parser" 6050 - version = "0.25.0" 6051 - source = "registry+https://github.com/rust-lang/crates.io-index" 6052 - checksum = "8f3432e80a58cfb38f9a138203e64d0f9a621d4c4e9d18e3e3bd870b51ce1f0e" 6053 - dependencies = [ 6054 - "assert-unchecked", 6055 - "bitflags 2.6.0", 6056 - "memchr", 6057 - "num-bigint", 6058 - "num-traits", 6059 - "oxc_allocator", 6060 - "oxc_ast", 6061 - "oxc_diagnostics", 6062 - "oxc_regular_expression", 6063 - "oxc_span", 6064 - "oxc_syntax", 6065 - "rustc-hash", 6066 - "seq-macro", 6067 - ] 6068 - 6069 - [[package]] 6070 - name = "oxc_regular_expression" 6071 - version = "0.25.0" 6072 - source = "registry+https://github.com/rust-lang/crates.io-index" 6073 - checksum = "8fc6d05fec98ad6cc864ba8cfe7ece2e258106059a9a57e35b02450650b06979" 6074 - dependencies = [ 6075 - "oxc_allocator", 6076 - "oxc_diagnostics", 6077 - "oxc_span", 6078 - "phf 0.11.2", 6079 - "rustc-hash", 6080 - "unicode-id-start", 6081 - ] 6082 - 6083 - [[package]] 6084 - name = "oxc_span" 6085 - version = "0.25.0" 6086 - source = "registry+https://github.com/rust-lang/crates.io-index" 6087 - checksum = "9a862a896ac3abd269863a19d4f77302b019458d90513705c7a017b138c8449b" 6088 - dependencies = [ 6089 - "compact_str", 6090 - "miette", 6091 - "oxc_allocator", 6092 - "oxc_ast_macros", 6093 - ] 6094 - 6095 - [[package]] 6096 - name = "oxc_syntax" 6097 - version = "0.25.0" 6098 - source = "registry+https://github.com/rust-lang/crates.io-index" 6099 - checksum = "d50c7ea034fb12f65376cfffc8ae4bfde3cda0a1e14407f82ffba1d26431703d" 6100 - dependencies = [ 6101 - "bitflags 2.6.0", 6102 - "dashmap", 6103 - "nonmax", 6104 - "oxc_allocator", 6105 - "oxc_ast_macros", 6106 - "oxc_index", 6107 - "oxc_span", 6108 - "phf 0.11.2", 6109 - "rustc-hash", 6110 - "unicode-id-start", 6111 - ] 6112 - 6113 - [[package]] 6114 - name = "p12" 6115 - version = "0.6.3" 6116 - source = "registry+https://github.com/rust-lang/crates.io-index" 6117 - checksum = "d4873306de53fe82e7e484df31e1e947d61514b6ea2ed6cd7b45d63006fd9224" 6118 - dependencies = [ 6119 - "cbc", 6120 - "cipher", 6121 - "des", 6122 - "getrandom 0.2.15", 6123 - "hmac", 6124 - "lazy_static", 6125 - "rc2", 6126 - "sha1", 6127 - "yasna", 6128 - ] 6129 - 6130 - [[package]] 6131 - name = "p256" 6132 - version = "0.11.1" 6133 - source = "registry+https://github.com/rust-lang/crates.io-index" 6134 - checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 6135 - dependencies = [ 6136 - "ecdsa 0.14.8", 6137 - "elliptic-curve 0.12.3", 6138 - "sha2", 6139 - ] 6140 - 6141 - [[package]] 6142 - name = "p256" 6143 - version = "0.13.2" 6144 - source = "registry+https://github.com/rust-lang/crates.io-index" 6145 - checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 6146 - dependencies = [ 6147 - "ecdsa 0.16.9", 6148 - "elliptic-curve 0.13.8", 6149 - "primeorder", 6150 - "sha2", 6151 - ] 6152 - 6153 - [[package]] 6154 - name = "p384" 6155 - version = "0.13.0" 6156 - source = "registry+https://github.com/rust-lang/crates.io-index" 6157 - checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" 6158 - dependencies = [ 6159 - "ecdsa 0.16.9", 6160 - "elliptic-curve 0.13.8", 6161 - "primeorder", 6162 - "sha2", 6163 - ] 6164 - 6165 - [[package]] 6166 - name = "p521" 6167 - version = "0.13.3" 6168 - source = "registry+https://github.com/rust-lang/crates.io-index" 6169 - checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2" 6170 - dependencies = [ 6171 - "base16ct 0.2.0", 6172 - "ecdsa 0.16.9", 6173 - "elliptic-curve 0.13.8", 6174 - "primeorder", 6175 - "rand_core 0.6.4", 6176 - "sha2", 6177 - ] 6178 - 6179 - [[package]] 6180 - name = "pango" 6181 - version = "0.18.3" 6182 - source = "registry+https://github.com/rust-lang/crates.io-index" 6183 - checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 6184 - dependencies = [ 6185 - "gio", 6186 - "glib", 6187 - "libc", 6188 - "once_cell", 6189 - "pango-sys", 6190 - ] 6191 - 6192 - [[package]] 6193 - name = "pango-sys" 6194 - version = "0.18.0" 6195 - source = "registry+https://github.com/rust-lang/crates.io-index" 6196 - checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 6197 - dependencies = [ 6198 - "glib-sys", 6199 - "gobject-sys", 6200 - "libc", 6201 - "system-deps", 6202 - ] 6203 - 6204 - [[package]] 6205 - name = "parking_lot" 6206 - version = "0.12.3" 6207 - source = "registry+https://github.com/rust-lang/crates.io-index" 6208 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 6209 - dependencies = [ 6210 - "lock_api", 6211 - "parking_lot_core", 6212 - ] 6213 - 6214 - [[package]] 6215 - name = "parking_lot_core" 6216 - version = "0.9.10" 6217 - source = "registry+https://github.com/rust-lang/crates.io-index" 6218 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 6219 - dependencies = [ 6220 - "cfg-if", 6221 - "libc", 6222 - "redox_syscall", 6223 - "smallvec", 6224 - "windows-targets 0.52.6", 6225 - ] 6226 - 6227 - [[package]] 6228 - name = "password-hash" 6229 - version = "0.5.0" 6230 - source = "registry+https://github.com/rust-lang/crates.io-index" 6231 - checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 6232 - dependencies = [ 6233 - "base64ct", 6234 - "rand_core 0.6.4", 6235 - "subtle", 6236 - ] 6237 - 6238 - [[package]] 6239 - name = "paste" 6240 - version = "1.0.15" 6241 - source = "registry+https://github.com/rust-lang/crates.io-index" 6242 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 6243 - 6244 - [[package]] 6245 - name = "path_abs" 6246 - version = "0.5.1" 6247 - source = "registry+https://github.com/rust-lang/crates.io-index" 6248 - checksum = "05ef02f6342ac01d8a93b65f96db53fe68a92a15f41144f97fb00a9e669633c3" 6249 - dependencies = [ 6250 - "serde", 6251 - "serde_derive", 6252 - "std_prelude", 6253 - "stfu8", 6254 - ] 6255 - 6256 - [[package]] 6257 - name = "pbkdf2" 6258 - version = "0.12.2" 6259 - source = "registry+https://github.com/rust-lang/crates.io-index" 6260 - checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 6261 - dependencies = [ 6262 - "digest", 6263 - "hmac", 6264 - ] 6265 - 6266 - [[package]] 6267 - name = "pear" 6268 - version = "0.2.9" 6269 - source = "registry+https://github.com/rust-lang/crates.io-index" 6270 - checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467" 6271 - dependencies = [ 6272 - "inlinable_string", 6273 - "pear_codegen", 6274 - "yansi", 6275 - ] 6276 - 6277 - [[package]] 6278 - name = "pear_codegen" 6279 - version = "0.2.9" 6280 - source = "registry+https://github.com/rust-lang/crates.io-index" 6281 - checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147" 6282 - dependencies = [ 6283 - "proc-macro2", 6284 - "proc-macro2-diagnostics", 6285 - "quote", 6286 - "syn 2.0.87", 6287 - ] 6288 - 6289 - [[package]] 6290 - name = "pem" 6291 - version = "3.0.4" 6292 - source = "registry+https://github.com/rust-lang/crates.io-index" 6293 - checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 6294 - dependencies = [ 6295 - "base64 0.22.1", 6296 - "serde", 6297 - ] 6298 - 6299 - [[package]] 6300 - name = "pem-rfc7468" 6301 - version = "0.7.0" 6302 - source = "registry+https://github.com/rust-lang/crates.io-index" 6303 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 6304 - dependencies = [ 6305 - "base64ct", 6306 - ] 6307 - 6308 - [[package]] 6309 - name = "percent-encoding" 6310 - version = "2.3.1" 6311 - source = "registry+https://github.com/rust-lang/crates.io-index" 6312 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 6313 - 6314 - [[package]] 6315 - name = "pest" 6316 - version = "2.7.13" 6317 - source = "registry+https://github.com/rust-lang/crates.io-index" 6318 - checksum = "fdbef9d1d47087a895abd220ed25eb4ad973a5e26f6a4367b038c25e28dfc2d9" 6319 - dependencies = [ 6320 - "memchr", 6321 - "thiserror 1.0.68", 6322 - "ucd-trie", 6323 - ] 6324 - 6325 - [[package]] 6326 - name = "pest_derive" 6327 - version = "2.7.13" 6328 - source = "registry+https://github.com/rust-lang/crates.io-index" 6329 - checksum = "4d3a6e3394ec80feb3b6393c725571754c6188490265c61aaf260810d6b95aa0" 6330 - dependencies = [ 6331 - "pest", 6332 - "pest_generator", 6333 - ] 6334 - 6335 - [[package]] 6336 - name = "pest_generator" 6337 - version = "2.7.13" 6338 - source = "registry+https://github.com/rust-lang/crates.io-index" 6339 - checksum = "94429506bde1ca69d1b5601962c73f4172ab4726571a59ea95931218cb0e930e" 6340 - dependencies = [ 6341 - "pest", 6342 - "pest_meta", 6343 - "proc-macro2", 6344 - "quote", 6345 - "syn 2.0.87", 6346 - ] 6347 - 6348 - [[package]] 6349 - name = "pest_meta" 6350 - version = "2.7.13" 6351 - source = "registry+https://github.com/rust-lang/crates.io-index" 6352 - checksum = "ac8a071862e93690b6e34e9a5fb8e33ff3734473ac0245b27232222c4906a33f" 6353 - dependencies = [ 6354 - "once_cell", 6355 - "pest", 6356 - "sha2", 6357 - ] 6358 - 6359 - [[package]] 6360 - name = "pgp" 6361 - version = "0.13.2" 6362 - source = "registry+https://github.com/rust-lang/crates.io-index" 6363 - checksum = "4a6c842436d5fa2b59eac1e9b3d142b50bfff99c1744c816b1f4c2ac55a20754" 6364 - dependencies = [ 6365 - "aes", 6366 - "aes-gcm", 6367 - "argon2", 6368 - "base64 0.22.1", 6369 - "bitfield", 6370 - "block-padding", 6371 - "blowfish", 6372 - "bstr", 6373 - "buffer-redux", 6374 - "byteorder", 6375 - "camellia", 6376 - "cast5", 6377 - "cfb-mode", 6378 - "chrono", 6379 - "cipher", 6380 - "const-oid", 6381 - "crc24", 6382 - "curve25519-dalek", 6383 - "derive_builder", 6384 - "des", 6385 - "digest", 6386 - "dsa", 6387 - "eax", 6388 - "ecdsa 0.16.9", 6389 - "ed25519-dalek", 6390 - "elliptic-curve 0.13.8", 6391 - "flate2", 6392 - "generic-array", 6393 - "hex", 6394 - "hkdf", 6395 - "idea", 6396 - "iter-read", 6397 - "k256", 6398 - "log", 6399 - "md-5", 6400 - "nom", 6401 - "num-bigint-dig", 6402 - "num-traits", 6403 - "num_enum", 6404 - "ocb3", 6405 - "p256 0.13.2", 6406 - "p384", 6407 - "p521", 6408 - "rand 0.8.5", 6409 - "ripemd", 6410 - "rsa", 6411 - "sha1", 6412 - "sha1-checked", 6413 - "sha2", 6414 - "sha3", 6415 - "signature 2.2.0", 6416 - "smallvec", 6417 - "thiserror 1.0.68", 6418 - "twofish", 6419 - "x25519-dalek", 6420 - "zeroize", 6421 - ] 6422 - 6423 - [[package]] 6424 - name = "phf" 6425 - version = "0.8.0" 6426 - source = "registry+https://github.com/rust-lang/crates.io-index" 6427 - checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 6428 - dependencies = [ 6429 - "phf_macros 0.8.0", 6430 - "phf_shared 0.8.0", 6431 - "proc-macro-hack", 6432 - ] 6433 - 6434 - [[package]] 6435 - name = "phf" 6436 - version = "0.10.1" 6437 - source = "registry+https://github.com/rust-lang/crates.io-index" 6438 - checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 6439 - dependencies = [ 6440 - "phf_shared 0.10.0", 6441 - ] 6442 - 6443 - [[package]] 6444 - name = "phf" 6445 - version = "0.11.2" 6446 - source = "registry+https://github.com/rust-lang/crates.io-index" 6447 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 6448 - dependencies = [ 6449 - "phf_macros 0.11.2", 6450 - "phf_shared 0.11.2", 6451 - ] 6452 - 6453 - [[package]] 6454 - name = "phf_codegen" 6455 - version = "0.8.0" 6456 - source = "registry+https://github.com/rust-lang/crates.io-index" 6457 - checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 6458 - dependencies = [ 6459 - "phf_generator 0.8.0", 6460 - "phf_shared 0.8.0", 6461 - ] 6462 - 6463 - [[package]] 6464 - name = "phf_codegen" 6465 - version = "0.10.0" 6466 - source = "registry+https://github.com/rust-lang/crates.io-index" 6467 - checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 6468 - dependencies = [ 6469 - "phf_generator 0.10.0", 6470 - "phf_shared 0.10.0", 6471 - ] 6472 - 6473 - [[package]] 6474 - name = "phf_generator" 6475 - version = "0.8.0" 6476 - source = "registry+https://github.com/rust-lang/crates.io-index" 6477 - checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 6478 - dependencies = [ 6479 - "phf_shared 0.8.0", 6480 - "rand 0.7.3", 6481 - ] 6482 - 6483 - [[package]] 6484 - name = "phf_generator" 6485 - version = "0.10.0" 6486 - source = "registry+https://github.com/rust-lang/crates.io-index" 6487 - checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 6488 - dependencies = [ 6489 - "phf_shared 0.10.0", 6490 - "rand 0.8.5", 6491 - ] 6492 - 6493 - [[package]] 6494 - name = "phf_generator" 6495 - version = "0.11.2" 6496 - source = "registry+https://github.com/rust-lang/crates.io-index" 6497 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 6498 - dependencies = [ 6499 - "phf_shared 0.11.2", 6500 - "rand 0.8.5", 6501 - ] 6502 - 6503 - [[package]] 6504 - name = "phf_macros" 6505 - version = "0.8.0" 6506 - source = "registry+https://github.com/rust-lang/crates.io-index" 6507 - checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 6508 - dependencies = [ 6509 - "phf_generator 0.8.0", 6510 - "phf_shared 0.8.0", 6511 - "proc-macro-hack", 6512 - "proc-macro2", 6513 - "quote", 6514 - "syn 1.0.109", 6515 - ] 6516 - 6517 - [[package]] 6518 - name = "phf_macros" 6519 - version = "0.11.2" 6520 - source = "registry+https://github.com/rust-lang/crates.io-index" 6521 - checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" 6522 - dependencies = [ 6523 - "phf_generator 0.11.2", 6524 - "phf_shared 0.11.2", 6525 - "proc-macro2", 6526 - "quote", 6527 - "syn 2.0.87", 6528 - ] 6529 - 6530 - [[package]] 6531 - name = "phf_shared" 6532 - version = "0.8.0" 6533 - source = "registry+https://github.com/rust-lang/crates.io-index" 6534 - checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 6535 - dependencies = [ 6536 - "siphasher 0.3.11", 6537 - ] 6538 - 6539 - [[package]] 6540 - name = "phf_shared" 6541 - version = "0.10.0" 6542 - source = "registry+https://github.com/rust-lang/crates.io-index" 6543 - checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 6544 - dependencies = [ 6545 - "siphasher 0.3.11", 6546 - ] 6547 - 6548 - [[package]] 6549 - name = "phf_shared" 6550 - version = "0.11.2" 6551 - source = "registry+https://github.com/rust-lang/crates.io-index" 6552 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 6553 - dependencies = [ 6554 - "siphasher 0.3.11", 6555 - ] 6556 - 6557 - [[package]] 6558 - name = "pico-args" 6559 - version = "0.4.2" 6560 - source = "registry+https://github.com/rust-lang/crates.io-index" 6561 - checksum = "db8bcd96cb740d03149cbad5518db9fd87126a10ab519c011893b1754134c468" 6562 - 6563 - [[package]] 6564 - name = "pico-args" 6565 - version = "0.5.0" 6566 - source = "registry+https://github.com/rust-lang/crates.io-index" 6567 - checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" 6568 - 6569 - [[package]] 6570 - name = "pin-project" 6571 - version = "1.1.5" 6572 - source = "registry+https://github.com/rust-lang/crates.io-index" 6573 - checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 6574 - dependencies = [ 6575 - "pin-project-internal", 6576 - ] 6577 - 6578 - [[package]] 6579 - name = "pin-project-internal" 6580 - version = "1.1.5" 6581 - source = "registry+https://github.com/rust-lang/crates.io-index" 6582 - checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 6583 - dependencies = [ 6584 - "proc-macro2", 6585 - "quote", 6586 - "syn 2.0.87", 6587 - ] 6588 - 6589 - [[package]] 6590 - name = "pin-project-lite" 6591 - version = "0.2.14" 6592 - source = "registry+https://github.com/rust-lang/crates.io-index" 6593 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 6594 - 6595 - [[package]] 6596 - name = "pin-utils" 6597 - version = "0.1.0" 6598 - source = "registry+https://github.com/rust-lang/crates.io-index" 6599 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 6600 - 6601 - [[package]] 6602 - name = "pkcs1" 6603 - version = "0.7.5" 6604 - source = "registry+https://github.com/rust-lang/crates.io-index" 6605 - checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 6606 - dependencies = [ 6607 - "der 0.7.9", 6608 - "pkcs8 0.10.2", 6609 - "spki 0.7.3", 6610 - ] 6611 - 6612 - [[package]] 6613 - name = "pkcs8" 6614 - version = "0.9.0" 6615 - source = "registry+https://github.com/rust-lang/crates.io-index" 6616 - checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 6617 - dependencies = [ 6618 - "der 0.6.1", 6619 - "spki 0.6.0", 6620 - ] 6621 - 6622 - [[package]] 6623 - name = "pkcs8" 6624 - version = "0.10.2" 6625 - source = "registry+https://github.com/rust-lang/crates.io-index" 6626 - checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 6627 - dependencies = [ 6628 - "der 0.7.9", 6629 - "spki 0.7.3", 6630 - ] 6631 - 6632 - [[package]] 6633 - name = "pkg-config" 6634 - version = "0.3.31" 6635 - source = "registry+https://github.com/rust-lang/crates.io-index" 6636 - checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 6637 - 6638 - [[package]] 6639 - name = "plain" 6640 - version = "0.2.3" 6641 - source = "registry+https://github.com/rust-lang/crates.io-index" 6642 - checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 6643 - 6644 - [[package]] 6645 - name = "plist" 6646 - version = "1.7.0" 6647 - source = "registry+https://github.com/rust-lang/crates.io-index" 6648 - checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016" 6649 - dependencies = [ 6650 - "base64 0.22.1", 6651 - "indexmap 2.6.0", 6652 - "quick-xml", 6653 - "serde", 6654 - "time", 6655 - ] 6656 - 6657 - [[package]] 6658 - name = "png" 6659 - version = "0.17.14" 6660 - source = "registry+https://github.com/rust-lang/crates.io-index" 6661 - checksum = "52f9d46a34a05a6a57566bc2bfae066ef07585a6e3fa30fbbdff5936380623f0" 6662 - dependencies = [ 6663 - "bitflags 1.3.2", 6664 - "crc32fast", 6665 - "fdeflate", 6666 - "flate2", 6667 - "miniz_oxide 0.8.0", 6668 - ] 6669 - 6670 - [[package]] 6671 - name = "polyval" 6672 - version = "0.6.2" 6673 - source = "registry+https://github.com/rust-lang/crates.io-index" 6674 - checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 6675 - dependencies = [ 6676 - "cfg-if", 6677 - "cpufeatures", 6678 - "opaque-debug", 6679 - "universal-hash", 6680 - ] 6681 - 6682 - [[package]] 6683 - name = "powerfmt" 6684 - version = "0.2.0" 6685 - source = "registry+https://github.com/rust-lang/crates.io-index" 6686 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 6687 - 6688 - [[package]] 6689 - name = "ppv-lite86" 6690 - version = "0.2.20" 6691 - source = "registry+https://github.com/rust-lang/crates.io-index" 6692 - checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 6693 - dependencies = [ 6694 - "zerocopy", 6695 - ] 6696 - 6697 - [[package]] 6698 - name = "precomputed-hash" 6699 - version = "0.1.1" 6700 - source = "registry+https://github.com/rust-lang/crates.io-index" 6701 - checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 6702 - 6703 - [[package]] 6704 - name = "pretty_assertions" 6705 - version = "1.4.1" 6706 - source = "registry+https://github.com/rust-lang/crates.io-index" 6707 - checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" 6708 - dependencies = [ 6709 - "diff", 6710 - "yansi", 6711 - ] 6712 - 6713 - [[package]] 6714 - name = "primeorder" 6715 - version = "0.13.6" 6716 - source = "registry+https://github.com/rust-lang/crates.io-index" 6717 - checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 6718 - dependencies = [ 6719 - "elliptic-curve 0.13.8", 6720 - ] 6721 - 6722 - [[package]] 6723 - name = "proc-macro-crate" 6724 - version = "1.3.1" 6725 - source = "registry+https://github.com/rust-lang/crates.io-index" 6726 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 6727 - dependencies = [ 6728 - "once_cell", 6729 - "toml_edit 0.19.15", 6730 - ] 6731 - 6732 - [[package]] 6733 - name = "proc-macro-crate" 6734 - version = "2.0.0" 6735 - source = "registry+https://github.com/rust-lang/crates.io-index" 6736 - checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 6737 - dependencies = [ 6738 - "toml_edit 0.20.7", 6739 - ] 6740 - 6741 - [[package]] 6742 - name = "proc-macro-crate" 6743 - version = "3.2.0" 6744 - source = "registry+https://github.com/rust-lang/crates.io-index" 6745 - checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" 6746 - dependencies = [ 6747 - "toml_edit 0.22.22", 6748 - ] 6749 - 6750 - [[package]] 6751 - name = "proc-macro-error" 6752 - version = "1.0.4" 6753 - source = "registry+https://github.com/rust-lang/crates.io-index" 6754 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 6755 - dependencies = [ 6756 - "proc-macro-error-attr", 6757 - "proc-macro2", 6758 - "quote", 6759 - "syn 1.0.109", 6760 - "version_check", 6761 - ] 6762 - 6763 - [[package]] 6764 - name = "proc-macro-error-attr" 6765 - version = "1.0.4" 6766 - source = "registry+https://github.com/rust-lang/crates.io-index" 6767 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 6768 - dependencies = [ 6769 - "proc-macro2", 6770 - "quote", 6771 - "version_check", 6772 - ] 6773 - 6774 - [[package]] 6775 - name = "proc-macro-hack" 6776 - version = "0.5.20+deprecated" 6777 - source = "registry+https://github.com/rust-lang/crates.io-index" 6778 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 6779 - 6780 - [[package]] 6781 - name = "proc-macro2" 6782 - version = "1.0.89" 6783 - source = "registry+https://github.com/rust-lang/crates.io-index" 6784 - checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" 6785 - dependencies = [ 6786 - "unicode-ident", 6787 - ] 6788 - 6789 - [[package]] 6790 - name = "proc-macro2-diagnostics" 6791 - version = "0.10.1" 6792 - source = "registry+https://github.com/rust-lang/crates.io-index" 6793 - checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 6794 - dependencies = [ 6795 - "proc-macro2", 6796 - "quote", 6797 - "syn 2.0.87", 6798 - "version_check", 6799 - "yansi", 6800 - ] 6801 - 6802 - [[package]] 6803 - name = "profiling" 6804 - version = "1.0.15" 6805 - source = "registry+https://github.com/rust-lang/crates.io-index" 6806 - checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58" 6807 - dependencies = [ 6808 - "profiling-procmacros", 6809 - ] 6810 - 6811 - [[package]] 6812 - name = "profiling-procmacros" 6813 - version = "1.0.15" 6814 - source = "registry+https://github.com/rust-lang/crates.io-index" 6815 - checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd" 6816 - dependencies = [ 6817 - "quote", 6818 - "syn 2.0.87", 6819 - ] 6820 - 6821 - [[package]] 6822 - name = "proptest" 6823 - version = "1.5.0" 6824 - source = "registry+https://github.com/rust-lang/crates.io-index" 6825 - checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" 6826 - dependencies = [ 6827 - "bit-set", 6828 - "bit-vec", 6829 - "bitflags 2.6.0", 6830 - "lazy_static", 6831 - "num-traits", 6832 - "rand 0.8.5", 6833 - "rand_chacha 0.3.1", 6834 - "rand_xorshift", 6835 - "regex-syntax", 6836 - "rusty-fork", 6837 - "tempfile", 6838 - "unarray", 6839 - ] 6840 - 6841 - [[package]] 6842 - name = "ptr_meta" 6843 - version = "0.1.4" 6844 - source = "registry+https://github.com/rust-lang/crates.io-index" 6845 - checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 6846 - dependencies = [ 6847 - "ptr_meta_derive", 6848 - ] 6849 - 6850 - [[package]] 6851 - name = "ptr_meta_derive" 6852 - version = "0.1.4" 6853 - source = "registry+https://github.com/rust-lang/crates.io-index" 6854 - checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 6855 - dependencies = [ 6856 - "proc-macro2", 6857 - "quote", 6858 - "syn 1.0.109", 6859 - ] 6860 - 6861 - [[package]] 6862 - name = "qoi" 6863 - version = "0.4.1" 6864 - source = "registry+https://github.com/rust-lang/crates.io-index" 6865 - checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 6866 - dependencies = [ 6867 - "bytemuck", 6868 - ] 6869 - 6870 - [[package]] 6871 - name = "quick-error" 6872 - version = "1.2.3" 6873 - source = "registry+https://github.com/rust-lang/crates.io-index" 6874 - checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 6875 - 6876 - [[package]] 6877 - name = "quick-error" 6878 - version = "2.0.1" 6879 - source = "registry+https://github.com/rust-lang/crates.io-index" 6880 - checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 6881 - 6882 - [[package]] 6883 - name = "quick-xml" 6884 - version = "0.32.0" 6885 - source = "registry+https://github.com/rust-lang/crates.io-index" 6886 - checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" 6887 - dependencies = [ 6888 - "memchr", 6889 - ] 6890 - 6891 - [[package]] 6892 - name = "quickcheck" 6893 - version = "1.0.3" 6894 - source = "registry+https://github.com/rust-lang/crates.io-index" 6895 - checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6" 6896 - dependencies = [ 6897 - "env_logger 0.8.4", 6898 - "log", 6899 - "rand 0.8.5", 6900 - ] 6901 - 6902 - [[package]] 6903 - name = "quickcheck_macros" 6904 - version = "1.0.0" 6905 - source = "registry+https://github.com/rust-lang/crates.io-index" 6906 - checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9" 6907 - dependencies = [ 6908 - "proc-macro2", 6909 - "quote", 6910 - "syn 1.0.109", 6911 - ] 6912 - 6913 - [[package]] 6914 - name = "quinn" 6915 - version = "0.11.5" 6916 - source = "registry+https://github.com/rust-lang/crates.io-index" 6917 - checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" 6918 - dependencies = [ 6919 - "bytes", 6920 - "pin-project-lite", 6921 - "quinn-proto", 6922 - "quinn-udp", 6923 - "rustc-hash", 6924 - "rustls 0.23.13", 6925 - "socket2", 6926 - "thiserror 1.0.68", 6927 - "tokio", 6928 - "tracing", 6929 - ] 6930 - 6931 - [[package]] 6932 - name = "quinn-proto" 6933 - version = "0.11.8" 6934 - source = "registry+https://github.com/rust-lang/crates.io-index" 6935 - checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 6936 - dependencies = [ 6937 - "bytes", 6938 - "rand 0.8.5", 6939 - "ring", 6940 - "rustc-hash", 6941 - "rustls 0.23.13", 6942 - "slab", 6943 - "thiserror 1.0.68", 6944 - "tinyvec", 6945 - "tracing", 6946 - ] 6947 - 6948 - [[package]] 6949 - name = "quinn-udp" 6950 - version = "0.5.5" 6951 - source = "registry+https://github.com/rust-lang/crates.io-index" 6952 - checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" 6953 - dependencies = [ 6954 - "libc", 6955 - "once_cell", 6956 - "socket2", 6957 - "tracing", 6958 - "windows-sys 0.59.0", 6959 - ] 6960 - 6961 - [[package]] 6962 - name = "quote" 6963 - version = "1.0.37" 6964 - source = "registry+https://github.com/rust-lang/crates.io-index" 6965 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 6966 - dependencies = [ 6967 - "proc-macro2", 6968 - ] 6969 - 6970 - [[package]] 6971 - name = "radium" 6972 - version = "0.7.0" 6973 - source = "registry+https://github.com/rust-lang/crates.io-index" 6974 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 6975 - 6976 - [[package]] 6977 - name = "rand" 6978 - version = "0.7.3" 6979 - source = "registry+https://github.com/rust-lang/crates.io-index" 6980 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 6981 - dependencies = [ 6982 - "getrandom 0.1.16", 6983 - "libc", 6984 - "rand_chacha 0.2.2", 6985 - "rand_core 0.5.1", 6986 - "rand_hc", 6987 - "rand_pcg", 6988 - ] 6989 - 6990 - [[package]] 6991 - name = "rand" 6992 - version = "0.8.5" 6993 - source = "registry+https://github.com/rust-lang/crates.io-index" 6994 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 6995 - dependencies = [ 6996 - "libc", 6997 - "rand_chacha 0.3.1", 6998 - "rand_core 0.6.4", 6999 - ] 7000 - 7001 - [[package]] 7002 - name = "rand_chacha" 7003 - version = "0.2.2" 7004 - source = "registry+https://github.com/rust-lang/crates.io-index" 7005 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 7006 - dependencies = [ 7007 - "ppv-lite86", 7008 - "rand_core 0.5.1", 7009 - ] 7010 - 7011 - [[package]] 7012 - name = "rand_chacha" 7013 - version = "0.3.1" 7014 - source = "registry+https://github.com/rust-lang/crates.io-index" 7015 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 7016 - dependencies = [ 7017 - "ppv-lite86", 7018 - "rand_core 0.6.4", 7019 - ] 7020 - 7021 - [[package]] 7022 - name = "rand_core" 7023 - version = "0.5.1" 7024 - source = "registry+https://github.com/rust-lang/crates.io-index" 7025 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 7026 - dependencies = [ 7027 - "getrandom 0.1.16", 7028 - ] 7029 - 7030 - [[package]] 7031 - name = "rand_core" 7032 - version = "0.6.4" 7033 - source = "registry+https://github.com/rust-lang/crates.io-index" 7034 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 7035 - dependencies = [ 7036 - "getrandom 0.2.15", 7037 - ] 7038 - 7039 - [[package]] 7040 - name = "rand_hc" 7041 - version = "0.2.0" 7042 - source = "registry+https://github.com/rust-lang/crates.io-index" 7043 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 7044 - dependencies = [ 7045 - "rand_core 0.5.1", 7046 - ] 7047 - 7048 - [[package]] 7049 - name = "rand_pcg" 7050 - version = "0.2.1" 7051 - source = "registry+https://github.com/rust-lang/crates.io-index" 7052 - checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 7053 - dependencies = [ 7054 - "rand_core 0.5.1", 7055 - ] 7056 - 7057 - [[package]] 7058 - name = "rand_xorshift" 7059 - version = "0.3.0" 7060 - source = "registry+https://github.com/rust-lang/crates.io-index" 7061 - checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" 7062 - dependencies = [ 7063 - "rand_core 0.6.4", 7064 - ] 7065 - 7066 - [[package]] 7067 - name = "rasn" 7068 - version = "0.12.5" 7069 - source = "registry+https://github.com/rust-lang/crates.io-index" 7070 - checksum = "cf9b0d03fbc7d2dcfdd35086c43ce30ac5ff62ed7eff4397e4f4f2995a2b0e2a" 7071 - dependencies = [ 7072 - "arrayvec", 7073 - "bitvec", 7074 - "bitvec-nom2", 7075 - "bytes", 7076 - "chrono", 7077 - "either", 7078 - "jzon", 7079 - "konst", 7080 - "nom", 7081 - "num-bigint", 7082 - "num-integer", 7083 - "num-traits", 7084 - "once_cell", 7085 - "rasn-derive", 7086 - "snafu", 7087 - ] 7088 - 7089 - [[package]] 7090 - name = "rasn-derive" 7091 - version = "0.12.5" 7092 - source = "registry+https://github.com/rust-lang/crates.io-index" 7093 - checksum = "cbaf7105cd254b632f4732fbcc243ce750cef87d8335826125ef6df5733b5a0c" 7094 - dependencies = [ 7095 - "either", 7096 - "itertools 0.10.5", 7097 - "proc-macro2", 7098 - "quote", 7099 - "rayon", 7100 - "syn 1.0.109", 7101 - "uuid", 7102 - ] 7103 - 7104 - [[package]] 7105 - name = "rav1e" 7106 - version = "0.7.1" 7107 - source = "registry+https://github.com/rust-lang/crates.io-index" 7108 - checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" 7109 - dependencies = [ 7110 - "arbitrary", 7111 - "arg_enum_proc_macro", 7112 - "arrayvec", 7113 - "av1-grain", 7114 - "bitstream-io", 7115 - "built", 7116 - "cfg-if", 7117 - "interpolate_name", 7118 - "itertools 0.12.1", 7119 - "libc", 7120 - "libfuzzer-sys", 7121 - "log", 7122 - "maybe-rayon", 7123 - "new_debug_unreachable", 7124 - "noop_proc_macro", 7125 - "num-derive", 7126 - "num-traits", 7127 - "once_cell", 7128 - "paste", 7129 - "profiling", 7130 - "rand 0.8.5", 7131 - "rand_chacha 0.3.1", 7132 - "simd_helpers", 7133 - "system-deps", 7134 - "thiserror 1.0.68", 7135 - "v_frame", 7136 - "wasm-bindgen", 7137 - ] 7138 - 7139 - [[package]] 7140 - name = "ravif" 7141 - version = "0.11.11" 7142 - source = "registry+https://github.com/rust-lang/crates.io-index" 7143 - checksum = "2413fd96bd0ea5cdeeb37eaf446a22e6ed7b981d792828721e74ded1980a45c6" 7144 - dependencies = [ 7145 - "avif-serialize", 7146 - "imgref", 7147 - "loop9", 7148 - "quick-error 2.0.1", 7149 - "rav1e", 7150 - "rayon", 7151 - "rgb", 7152 - ] 7153 - 7154 - [[package]] 7155 - name = "raw-window-handle" 7156 - version = "0.6.2" 7157 - source = "registry+https://github.com/rust-lang/crates.io-index" 7158 - checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 7159 - 7160 - [[package]] 7161 - name = "rayon" 7162 - version = "1.10.0" 7163 - source = "registry+https://github.com/rust-lang/crates.io-index" 7164 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 7165 - dependencies = [ 7166 - "either", 7167 - "rayon-core", 7168 - ] 7169 - 7170 - [[package]] 7171 - name = "rayon-core" 7172 - version = "1.12.1" 7173 - source = "registry+https://github.com/rust-lang/crates.io-index" 7174 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 7175 - dependencies = [ 7176 - "crossbeam-deque", 7177 - "crossbeam-utils", 7178 - ] 7179 - 7180 - [[package]] 7181 - name = "rc2" 7182 - version = "0.8.1" 7183 - source = "registry+https://github.com/rust-lang/crates.io-index" 7184 - checksum = "62c64daa8e9438b84aaae55010a93f396f8e60e3911590fcba770d04643fc1dd" 7185 - dependencies = [ 7186 - "cipher", 7187 - ] 7188 - 7189 - [[package]] 7190 - name = "redox_syscall" 7191 - version = "0.5.7" 7192 - source = "registry+https://github.com/rust-lang/crates.io-index" 7193 - checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" 7194 - dependencies = [ 7195 - "bitflags 2.6.0", 7196 - ] 7197 - 7198 - [[package]] 7199 - name = "redox_users" 7200 - version = "0.4.6" 7201 - source = "registry+https://github.com/rust-lang/crates.io-index" 7202 - checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 7203 - dependencies = [ 7204 - "getrandom 0.2.15", 7205 - "libredox", 7206 - "thiserror 1.0.68", 7207 - ] 7208 - 7209 - [[package]] 7210 - name = "regex" 7211 - version = "1.11.1" 7212 - source = "registry+https://github.com/rust-lang/crates.io-index" 7213 - checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 7214 - dependencies = [ 7215 - "aho-corasick", 7216 - "memchr", 7217 - "regex-automata", 7218 - "regex-syntax", 7219 - ] 7220 - 7221 - [[package]] 7222 - name = "regex-automata" 7223 - version = "0.4.8" 7224 - source = "registry+https://github.com/rust-lang/crates.io-index" 7225 - checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 7226 - dependencies = [ 7227 - "aho-corasick", 7228 - "memchr", 7229 - "regex-syntax", 7230 - ] 7231 - 7232 - [[package]] 7233 - name = "regex-lite" 7234 - version = "0.1.6" 7235 - source = "registry+https://github.com/rust-lang/crates.io-index" 7236 - checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 7237 - 7238 - [[package]] 7239 - name = "regex-syntax" 7240 - version = "0.8.5" 7241 - source = "registry+https://github.com/rust-lang/crates.io-index" 7242 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 7243 - 7244 - [[package]] 7245 - name = "rend" 7246 - version = "0.4.2" 7247 - source = "registry+https://github.com/rust-lang/crates.io-index" 7248 - checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 7249 - dependencies = [ 7250 - "bytecheck", 7251 - ] 7252 - 7253 - [[package]] 7254 - name = "reqwest" 7255 - version = "0.11.27" 7256 - source = "registry+https://github.com/rust-lang/crates.io-index" 7257 - checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 7258 - dependencies = [ 7259 - "base64 0.21.7", 7260 - "bytes", 7261 - "encoding_rs", 7262 - "futures-core", 7263 - "futures-util", 7264 - "h2 0.3.26", 7265 - "http 0.2.12", 7266 - "http-body 0.4.6", 7267 - "hyper 0.14.30", 7268 - "hyper-rustls 0.24.2", 7269 - "ipnet", 7270 - "js-sys", 7271 - "log", 7272 - "mime", 7273 - "once_cell", 7274 - "percent-encoding", 7275 - "pin-project-lite", 7276 - "rustls 0.21.12", 7277 - "rustls-native-certs 0.6.3", 7278 - "rustls-pemfile 1.0.4", 7279 - "serde", 7280 - "serde_json", 7281 - "serde_urlencoded", 7282 - "sync_wrapper 0.1.2", 7283 - "system-configuration", 7284 - "tokio", 7285 - "tokio-rustls 0.24.1", 7286 - "tower-service", 7287 - "url", 7288 - "wasm-bindgen", 7289 - "wasm-bindgen-futures", 7290 - "web-sys", 7291 - "webpki-roots 0.25.4", 7292 - "winreg 0.50.0", 7293 - ] 7294 - 7295 - [[package]] 7296 - name = "reqwest" 7297 - version = "0.12.9" 7298 - source = "registry+https://github.com/rust-lang/crates.io-index" 7299 - checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" 7300 - dependencies = [ 7301 - "base64 0.22.1", 7302 - "bytes", 7303 - "futures-channel", 7304 - "futures-core", 7305 - "futures-util", 7306 - "http 1.1.0", 7307 - "http-body 1.0.1", 7308 - "http-body-util", 7309 - "hyper 1.4.1", 7310 - "hyper-rustls 0.27.3", 7311 - "hyper-tls", 7312 - "hyper-util", 7313 - "ipnet", 7314 - "js-sys", 7315 - "log", 7316 - "mime", 7317 - "native-tls", 7318 - "once_cell", 7319 - "percent-encoding", 7320 - "pin-project-lite", 7321 - "quinn", 7322 - "rustls 0.23.13", 7323 - "rustls-pemfile 2.2.0", 7324 - "rustls-pki-types", 7325 - "serde", 7326 - "serde_json", 7327 - "serde_urlencoded", 7328 - "sync_wrapper 1.0.1", 7329 - "tokio", 7330 - "tokio-native-tls", 7331 - "tokio-rustls 0.26.0", 7332 - "tokio-util", 7333 - "tower-service", 7334 - "url", 7335 - "wasm-bindgen", 7336 - "wasm-bindgen-futures", 7337 - "wasm-streams", 7338 - "web-sys", 7339 - "webpki-roots 0.26.6", 7340 - "windows-registry 0.2.0", 7341 - ] 7342 - 7343 - [[package]] 7344 - name = "resources" 7345 - version = "0.1.0" 7346 - dependencies = [ 7347 - "serde", 7348 - "serde_json", 7349 - "tauri", 7350 - "tauri-build", 7351 - ] 7352 - 7353 - [[package]] 7354 - name = "restart" 7355 - version = "0.1.0" 7356 - dependencies = [ 7357 - "tauri", 7358 - "tempfile", 7359 - ] 7360 - 7361 - [[package]] 7362 - name = "resvg" 7363 - version = "0.43.0" 7364 - source = "registry+https://github.com/rust-lang/crates.io-index" 7365 - checksum = "c7314563c59c7ce31c18e23ad3dd092c37b928a0fa4e1c0a1a6504351ab411d1" 7366 - dependencies = [ 7367 - "gif", 7368 - "image-webp 0.1.3", 7369 - "log", 7370 - "pico-args 0.5.0", 7371 - "rgb", 7372 - "svgtypes", 7373 - "tiny-skia", 7374 - "usvg", 7375 - "zune-jpeg", 7376 - ] 7377 - 7378 - [[package]] 7379 - name = "rfc6979" 7380 - version = "0.3.1" 7381 - source = "registry+https://github.com/rust-lang/crates.io-index" 7382 - checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 7383 - dependencies = [ 7384 - "crypto-bigint 0.4.9", 7385 - "hmac", 7386 - "zeroize", 7387 - ] 7388 - 7389 - [[package]] 7390 - name = "rfc6979" 7391 - version = "0.4.0" 7392 - source = "registry+https://github.com/rust-lang/crates.io-index" 7393 - checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 7394 - dependencies = [ 7395 - "hmac", 7396 - "subtle", 7397 - ] 7398 - 7399 - [[package]] 7400 - name = "rgb" 7401 - version = "0.8.50" 7402 - source = "registry+https://github.com/rust-lang/crates.io-index" 7403 - checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" 7404 - dependencies = [ 7405 - "bytemuck", 7406 - ] 7407 - 7408 - [[package]] 7409 - name = "ring" 7410 - version = "0.17.8" 7411 - source = "registry+https://github.com/rust-lang/crates.io-index" 7412 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 7413 - dependencies = [ 7414 - "cc", 7415 - "cfg-if", 7416 - "getrandom 0.2.15", 7417 - "libc", 7418 - "spin", 7419 - "untrusted", 7420 - "windows-sys 0.52.0", 7421 - ] 7422 - 7423 - [[package]] 7424 - name = "ripemd" 7425 - version = "0.1.3" 7426 - source = "registry+https://github.com/rust-lang/crates.io-index" 7427 - checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" 7428 - dependencies = [ 7429 - "digest", 7430 - ] 7431 - 7432 - [[package]] 7433 - name = "rkyv" 7434 - version = "0.7.45" 7435 - source = "registry+https://github.com/rust-lang/crates.io-index" 7436 - checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" 7437 - dependencies = [ 7438 - "bitvec", 7439 - "bytecheck", 7440 - "bytes", 7441 - "hashbrown 0.12.3", 7442 - "ptr_meta", 7443 - "rend", 7444 - "rkyv_derive", 7445 - "seahash", 7446 - "tinyvec", 7447 - "uuid", 7448 - ] 7449 - 7450 - [[package]] 7451 - name = "rkyv_derive" 7452 - version = "0.7.45" 7453 - source = "registry+https://github.com/rust-lang/crates.io-index" 7454 - checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" 7455 - dependencies = [ 7456 - "proc-macro2", 7457 - "quote", 7458 - "syn 1.0.109", 7459 - ] 7460 - 7461 - [[package]] 7462 - name = "route-recognizer" 7463 - version = "0.3.1" 7464 - source = "registry+https://github.com/rust-lang/crates.io-index" 7465 - checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746" 7466 - 7467 - [[package]] 7468 - name = "roxmltree" 7469 - version = "0.20.0" 7470 - source = "registry+https://github.com/rust-lang/crates.io-index" 7471 - checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97" 7472 - 7473 - [[package]] 7474 - name = "rpassword" 7475 - version = "7.3.1" 7476 - source = "registry+https://github.com/rust-lang/crates.io-index" 7477 - checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f" 7478 - dependencies = [ 7479 - "libc", 7480 - "rtoolbox", 7481 - "windows-sys 0.48.0", 7482 - ] 7483 - 7484 - [[package]] 7485 - name = "rpm" 7486 - version = "0.15.1" 7487 - source = "registry+https://github.com/rust-lang/crates.io-index" 7488 - checksum = "95c49b6baaa0e8fa864b2069d1e94e7a132471da3ac26a132f3fa7e71416772c" 7489 - dependencies = [ 7490 - "bitflags 2.6.0", 7491 - "bzip2", 7492 - "chrono", 7493 - "cpio", 7494 - "digest", 7495 - "enum-display-derive", 7496 - "enum-primitive-derive", 7497 - "flate2", 7498 - "hex", 7499 - "itertools 0.13.0", 7500 - "log", 7501 - "md-5", 7502 - "nom", 7503 - "num", 7504 - "num-derive", 7505 - "num-traits", 7506 - "pgp", 7507 - "sha1", 7508 - "sha2", 7509 - "thiserror 1.0.68", 7510 - "xz2", 7511 - "zstd", 7512 - ] 7513 - 7514 - [[package]] 7515 - name = "rsa" 7516 - version = "0.9.6" 7517 - source = "registry+https://github.com/rust-lang/crates.io-index" 7518 - checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 7519 - dependencies = [ 7520 - "const-oid", 7521 - "digest", 7522 - "num-bigint-dig", 7523 - "num-integer", 7524 - "num-traits", 7525 - "pkcs1", 7526 - "pkcs8 0.10.2", 7527 - "rand_core 0.6.4", 7528 - "signature 2.2.0", 7529 - "spki 0.7.3", 7530 - "subtle", 7531 - "zeroize", 7532 - ] 7533 - 7534 - [[package]] 7535 - name = "rtoolbox" 7536 - version = "0.0.2" 7537 - source = "registry+https://github.com/rust-lang/crates.io-index" 7538 - checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e" 7539 - dependencies = [ 7540 - "libc", 7541 - "windows-sys 0.48.0", 7542 - ] 7543 - 7544 - [[package]] 7545 - name = "rust_decimal" 7546 - version = "1.36.0" 7547 - source = "registry+https://github.com/rust-lang/crates.io-index" 7548 - checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" 7549 - dependencies = [ 7550 - "arrayvec", 7551 - "borsh", 7552 - "bytes", 7553 - "num-traits", 7554 - "rand 0.8.5", 7555 - "rkyv", 7556 - "serde", 7557 - "serde_json", 7558 - ] 7559 - 7560 - [[package]] 7561 - name = "rustc-demangle" 7562 - version = "0.1.24" 7563 - source = "registry+https://github.com/rust-lang/crates.io-index" 7564 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 7565 - 7566 - [[package]] 7567 - name = "rustc-hash" 7568 - version = "2.0.0" 7569 - source = "registry+https://github.com/rust-lang/crates.io-index" 7570 - checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 7571 - 7572 - [[package]] 7573 - name = "rustc_version" 7574 - version = "0.4.1" 7575 - source = "registry+https://github.com/rust-lang/crates.io-index" 7576 - checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 7577 - dependencies = [ 7578 - "semver", 7579 - ] 7580 - 7581 - [[package]] 7582 - name = "rusticata-macros" 7583 - version = "4.1.0" 7584 - source = "registry+https://github.com/rust-lang/crates.io-index" 7585 - checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 7586 - dependencies = [ 7587 - "nom", 7588 - ] 7589 - 7590 - [[package]] 7591 - name = "rustix" 7592 - version = "0.37.27" 7593 - source = "registry+https://github.com/rust-lang/crates.io-index" 7594 - checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" 7595 - dependencies = [ 7596 - "bitflags 1.3.2", 7597 - "errno", 7598 - "io-lifetimes", 7599 - "libc", 7600 - "linux-raw-sys 0.3.8", 7601 - "windows-sys 0.48.0", 7602 - ] 7603 - 7604 - [[package]] 7605 - name = "rustix" 7606 - version = "0.38.37" 7607 - source = "registry+https://github.com/rust-lang/crates.io-index" 7608 - checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" 7609 - dependencies = [ 7610 - "bitflags 2.6.0", 7611 - "errno", 7612 - "libc", 7613 - "linux-raw-sys 0.4.14", 7614 - "windows-sys 0.52.0", 7615 - ] 7616 - 7617 - [[package]] 7618 - name = "rustls" 7619 - version = "0.21.12" 7620 - source = "registry+https://github.com/rust-lang/crates.io-index" 7621 - checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 7622 - dependencies = [ 7623 - "log", 7624 - "ring", 7625 - "rustls-webpki 0.101.7", 7626 - "sct", 7627 - ] 7628 - 7629 - [[package]] 7630 - name = "rustls" 7631 - version = "0.22.4" 7632 - source = "registry+https://github.com/rust-lang/crates.io-index" 7633 - checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 7634 - dependencies = [ 7635 - "log", 7636 - "ring", 7637 - "rustls-pki-types", 7638 - "rustls-webpki 0.102.8", 7639 - "subtle", 7640 - "zeroize", 7641 - ] 7642 - 7643 - [[package]] 7644 - name = "rustls" 7645 - version = "0.23.13" 7646 - source = "registry+https://github.com/rust-lang/crates.io-index" 7647 - checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8" 7648 - dependencies = [ 7649 - "log", 7650 - "once_cell", 7651 - "ring", 7652 - "rustls-pki-types", 7653 - "rustls-webpki 0.102.8", 7654 - "subtle", 7655 - "zeroize", 7656 - ] 7657 - 7658 - [[package]] 7659 - name = "rustls-native-certs" 7660 - version = "0.6.3" 7661 - source = "registry+https://github.com/rust-lang/crates.io-index" 7662 - checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 7663 - dependencies = [ 7664 - "openssl-probe", 7665 - "rustls-pemfile 1.0.4", 7666 - "schannel", 7667 - "security-framework", 7668 - ] 7669 - 7670 - [[package]] 7671 - name = "rustls-native-certs" 7672 - version = "0.7.3" 7673 - source = "registry+https://github.com/rust-lang/crates.io-index" 7674 - checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" 7675 - dependencies = [ 7676 - "openssl-probe", 7677 - "rustls-pemfile 2.2.0", 7678 - "rustls-pki-types", 7679 - "schannel", 7680 - "security-framework", 7681 - ] 7682 - 7683 - [[package]] 7684 - name = "rustls-pemfile" 7685 - version = "1.0.4" 7686 - source = "registry+https://github.com/rust-lang/crates.io-index" 7687 - checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 7688 - dependencies = [ 7689 - "base64 0.21.7", 7690 - ] 7691 - 7692 - [[package]] 7693 - name = "rustls-pemfile" 7694 - version = "2.2.0" 7695 - source = "registry+https://github.com/rust-lang/crates.io-index" 7696 - checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 7697 - dependencies = [ 7698 - "rustls-pki-types", 7699 - ] 7700 - 7701 - [[package]] 7702 - name = "rustls-pki-types" 7703 - version = "1.9.0" 7704 - source = "registry+https://github.com/rust-lang/crates.io-index" 7705 - checksum = "0e696e35370c65c9c541198af4543ccd580cf17fc25d8e05c5a242b202488c55" 7706 - 7707 - [[package]] 7708 - name = "rustls-webpki" 7709 - version = "0.101.7" 7710 - source = "registry+https://github.com/rust-lang/crates.io-index" 7711 - checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 7712 - dependencies = [ 7713 - "ring", 7714 - "untrusted", 7715 - ] 7716 - 7717 - [[package]] 7718 - name = "rustls-webpki" 7719 - version = "0.102.8" 7720 - source = "registry+https://github.com/rust-lang/crates.io-index" 7721 - checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 7722 - dependencies = [ 7723 - "ring", 7724 - "rustls-pki-types", 7725 - "untrusted", 7726 - ] 7727 - 7728 - [[package]] 7729 - name = "rustversion" 7730 - version = "1.0.17" 7731 - source = "registry+https://github.com/rust-lang/crates.io-index" 7732 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 7733 - 7734 - [[package]] 7735 - name = "rusty-fork" 7736 - version = "0.3.0" 7737 - source = "registry+https://github.com/rust-lang/crates.io-index" 7738 - checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" 7739 - dependencies = [ 7740 - "fnv", 7741 - "quick-error 1.2.3", 7742 - "tempfile", 7743 - "wait-timeout", 7744 - ] 7745 - 7746 - [[package]] 7747 - name = "rustybuzz" 7748 - version = "0.18.0" 7749 - source = "registry+https://github.com/rust-lang/crates.io-index" 7750 - checksum = "c85d1ccd519e61834798eb52c4e886e8c2d7d698dd3d6ce0b1b47eb8557f1181" 7751 - dependencies = [ 7752 - "bitflags 2.6.0", 7753 - "bytemuck", 7754 - "core_maths", 7755 - "log", 7756 - "smallvec", 7757 - "ttf-parser", 7758 - "unicode-bidi-mirroring", 7759 - "unicode-ccc", 7760 - "unicode-properties", 7761 - "unicode-script", 7762 - ] 7763 - 7764 - [[package]] 7765 - name = "ruzstd" 7766 - version = "0.5.0" 7767 - source = "registry+https://github.com/rust-lang/crates.io-index" 7768 - checksum = "58c4eb8a81997cf040a091d1f7e1938aeab6749d3a0dfa73af43cdc32393483d" 7769 - dependencies = [ 7770 - "byteorder", 7771 - "derive_more", 7772 - "twox-hash", 7773 - ] 7774 - 7775 - [[package]] 7776 - name = "ryu" 7777 - version = "1.0.18" 7778 - source = "registry+https://github.com/rust-lang/crates.io-index" 7779 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 7780 - 7781 - [[package]] 7782 - name = "salsa20" 7783 - version = "0.10.2" 7784 - source = "registry+https://github.com/rust-lang/crates.io-index" 7785 - checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" 7786 - dependencies = [ 7787 - "cipher", 7788 - ] 7789 - 7790 - [[package]] 7791 - name = "same-file" 7792 - version = "1.0.6" 7793 - source = "registry+https://github.com/rust-lang/crates.io-index" 7794 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 7795 - dependencies = [ 7796 - "winapi-util", 7797 - ] 7798 - 7799 - [[package]] 7800 - name = "scc" 7801 - version = "2.2.0" 7802 - source = "registry+https://github.com/rust-lang/crates.io-index" 7803 - checksum = "836f1e0f4963ef5288b539b643b35e043e76a32d0f4e47e67febf69576527f50" 7804 - dependencies = [ 7805 - "sdd", 7806 - ] 7807 - 7808 - [[package]] 7809 - name = "schannel" 7810 - version = "0.1.24" 7811 - source = "registry+https://github.com/rust-lang/crates.io-index" 7812 - checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b" 7813 - dependencies = [ 7814 - "windows-sys 0.59.0", 7815 - ] 7816 - 7817 - [[package]] 7818 - name = "schemars" 7819 - version = "0.8.21" 7820 - source = "registry+https://github.com/rust-lang/crates.io-index" 7821 - checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" 7822 - dependencies = [ 7823 - "dyn-clone", 7824 - "indexmap 1.9.3", 7825 - "schemars_derive", 7826 - "serde", 7827 - "serde_json", 7828 - "url", 7829 - "uuid", 7830 - ] 7831 - 7832 - [[package]] 7833 - name = "schemars_derive" 7834 - version = "0.8.21" 7835 - source = "git+https://github.com/tauri-apps/schemars.git?branch=feat/preserve-description-newlines#c30f98480e6e4742aa72202d55d5264c6b2e6476" 7836 - dependencies = [ 7837 - "proc-macro2", 7838 - "quote", 7839 - "serde_derive_internals", 7840 - "syn 2.0.87", 7841 - ] 7842 - 7843 - [[package]] 7844 - name = "scopeguard" 7845 - version = "1.2.0" 7846 - source = "registry+https://github.com/rust-lang/crates.io-index" 7847 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 7848 - 7849 - [[package]] 7850 - name = "scroll" 7851 - version = "0.12.0" 7852 - source = "registry+https://github.com/rust-lang/crates.io-index" 7853 - checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6" 7854 - dependencies = [ 7855 - "scroll_derive", 7856 - ] 7857 - 7858 - [[package]] 7859 - name = "scroll_derive" 7860 - version = "0.12.0" 7861 - source = "registry+https://github.com/rust-lang/crates.io-index" 7862 - checksum = "7f81c2fde025af7e69b1d1420531c8a8811ca898919db177141a85313b1cb932" 7863 - dependencies = [ 7864 - "proc-macro2", 7865 - "quote", 7866 - "syn 2.0.87", 7867 - ] 7868 - 7869 - [[package]] 7870 - name = "scrypt" 7871 - version = "0.11.0" 7872 - source = "registry+https://github.com/rust-lang/crates.io-index" 7873 - checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" 7874 - dependencies = [ 7875 - "pbkdf2", 7876 - "salsa20", 7877 - "sha2", 7878 - ] 7879 - 7880 - [[package]] 7881 - name = "sct" 7882 - version = "0.7.1" 7883 - source = "registry+https://github.com/rust-lang/crates.io-index" 7884 - checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 7885 - dependencies = [ 7886 - "ring", 7887 - "untrusted", 7888 - ] 7889 - 7890 - [[package]] 7891 - name = "sdd" 7892 - version = "3.0.3" 7893 - source = "registry+https://github.com/rust-lang/crates.io-index" 7894 - checksum = "60a7b59a5d9b0099720b417b6325d91a52cbf5b3dcb5041d864be53eefa58abc" 7895 - 7896 - [[package]] 7897 - name = "seahash" 7898 - version = "4.1.0" 7899 - source = "registry+https://github.com/rust-lang/crates.io-index" 7900 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 7901 - 7902 - [[package]] 7903 - name = "sec1" 7904 - version = "0.3.0" 7905 - source = "registry+https://github.com/rust-lang/crates.io-index" 7906 - checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 7907 - dependencies = [ 7908 - "base16ct 0.1.1", 7909 - "der 0.6.1", 7910 - "generic-array", 7911 - "pkcs8 0.9.0", 7912 - "subtle", 7913 - "zeroize", 7914 - ] 7915 - 7916 - [[package]] 7917 - name = "sec1" 7918 - version = "0.7.3" 7919 - source = "registry+https://github.com/rust-lang/crates.io-index" 7920 - checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 7921 - dependencies = [ 7922 - "base16ct 0.2.0", 7923 - "der 0.7.9", 7924 - "generic-array", 7925 - "pkcs8 0.10.2", 7926 - "subtle", 7927 - "zeroize", 7928 - ] 7929 - 7930 - [[package]] 7931 - name = "security-framework" 7932 - version = "2.11.1" 7933 - source = "registry+https://github.com/rust-lang/crates.io-index" 7934 - checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 7935 - dependencies = [ 7936 - "bitflags 2.6.0", 7937 - "core-foundation 0.9.4", 7938 - "core-foundation-sys", 7939 - "libc", 7940 - "security-framework-sys", 7941 - ] 7942 - 7943 - [[package]] 7944 - name = "security-framework-sys" 7945 - version = "2.12.0" 7946 - source = "registry+https://github.com/rust-lang/crates.io-index" 7947 - checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" 7948 - dependencies = [ 7949 - "core-foundation-sys", 7950 - "libc", 7951 - ] 7952 - 7953 - [[package]] 7954 - name = "selectors" 7955 - version = "0.22.0" 7956 - source = "registry+https://github.com/rust-lang/crates.io-index" 7957 - checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 7958 - dependencies = [ 7959 - "bitflags 1.3.2", 7960 - "cssparser", 7961 - "derive_more", 7962 - "fxhash", 7963 - "log", 7964 - "matches", 7965 - "phf 0.8.0", 7966 - "phf_codegen 0.8.0", 7967 - "precomputed-hash", 7968 - "servo_arc", 7969 - "smallvec", 7970 - "thin-slice", 7971 - ] 7972 - 7973 - [[package]] 7974 - name = "semver" 7975 - version = "1.0.23" 7976 - source = "registry+https://github.com/rust-lang/crates.io-index" 7977 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 7978 - dependencies = [ 7979 - "serde", 7980 - ] 7981 - 7982 - [[package]] 7983 - name = "seq-macro" 7984 - version = "0.3.5" 7985 - source = "registry+https://github.com/rust-lang/crates.io-index" 7986 - checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 7987 - 7988 - [[package]] 7989 - name = "serde" 7990 - version = "1.0.214" 7991 - source = "registry+https://github.com/rust-lang/crates.io-index" 7992 - checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5" 7993 - dependencies = [ 7994 - "serde_derive", 7995 - ] 7996 - 7997 - [[package]] 7998 - name = "serde-untagged" 7999 - version = "0.1.6" 8000 - source = "registry+https://github.com/rust-lang/crates.io-index" 8001 - checksum = "2676ba99bd82f75cae5cbd2c8eda6fa0b8760f18978ea840e980dd5567b5c5b6" 8002 - dependencies = [ 8003 - "erased-serde", 8004 - "serde", 8005 - "typeid", 8006 - ] 8007 - 8008 - [[package]] 8009 - name = "serde-value" 8010 - version = "0.7.0" 8011 - source = "registry+https://github.com/rust-lang/crates.io-index" 8012 - checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 8013 - dependencies = [ 8014 - "ordered-float", 8015 - "serde", 8016 - ] 8017 - 8018 - [[package]] 8019 - name = "serde-wasm-bindgen" 8020 - version = "0.5.0" 8021 - source = "registry+https://github.com/rust-lang/crates.io-index" 8022 - checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" 8023 - dependencies = [ 8024 - "js-sys", 8025 - "serde", 8026 - "wasm-bindgen", 8027 - ] 8028 - 8029 - [[package]] 8030 - name = "serde-wasm-bindgen" 8031 - version = "0.6.5" 8032 - source = "registry+https://github.com/rust-lang/crates.io-index" 8033 - checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" 8034 - dependencies = [ 8035 - "js-sys", 8036 - "serde", 8037 - "wasm-bindgen", 8038 - ] 8039 - 8040 - [[package]] 8041 - name = "serde-xml-rs" 8042 - version = "0.6.0" 8043 - source = "registry+https://github.com/rust-lang/crates.io-index" 8044 - checksum = "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782" 8045 - dependencies = [ 8046 - "log", 8047 - "serde", 8048 - "thiserror 1.0.68", 8049 - "xml-rs", 8050 - ] 8051 - 8052 - [[package]] 8053 - name = "serde_derive" 8054 - version = "1.0.214" 8055 - source = "registry+https://github.com/rust-lang/crates.io-index" 8056 - checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766" 8057 - dependencies = [ 8058 - "proc-macro2", 8059 - "quote", 8060 - "syn 2.0.87", 8061 - ] 8062 - 8063 - [[package]] 8064 - name = "serde_derive_internals" 8065 - version = "0.29.1" 8066 - source = "registry+https://github.com/rust-lang/crates.io-index" 8067 - checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" 8068 - dependencies = [ 8069 - "proc-macro2", 8070 - "quote", 8071 - "syn 2.0.87", 8072 - ] 8073 - 8074 - [[package]] 8075 - name = "serde_fmt" 8076 - version = "1.0.3" 8077 - source = "registry+https://github.com/rust-lang/crates.io-index" 8078 - checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4" 8079 - dependencies = [ 8080 - "serde", 8081 - ] 8082 - 8083 - [[package]] 8084 - name = "serde_json" 8085 - version = "1.0.132" 8086 - source = "registry+https://github.com/rust-lang/crates.io-index" 8087 - checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" 8088 - dependencies = [ 8089 - "indexmap 2.6.0", 8090 - "itoa 1.0.11", 8091 - "memchr", 8092 - "ryu", 8093 - "serde", 8094 - ] 8095 - 8096 - [[package]] 8097 - name = "serde_path_to_error" 8098 - version = "0.1.16" 8099 - source = "registry+https://github.com/rust-lang/crates.io-index" 8100 - checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 8101 - dependencies = [ 8102 - "itoa 1.0.11", 8103 - "serde", 8104 - ] 8105 - 8106 - [[package]] 8107 - name = "serde_repr" 8108 - version = "0.1.19" 8109 - source = "registry+https://github.com/rust-lang/crates.io-index" 8110 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 8111 - dependencies = [ 8112 - "proc-macro2", 8113 - "quote", 8114 - "syn 2.0.87", 8115 - ] 8116 - 8117 - [[package]] 8118 - name = "serde_spanned" 8119 - version = "0.6.8" 8120 - source = "registry+https://github.com/rust-lang/crates.io-index" 8121 - checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" 8122 - dependencies = [ 8123 - "serde", 8124 - ] 8125 - 8126 - [[package]] 8127 - name = "serde_urlencoded" 8128 - version = "0.7.1" 8129 - source = "registry+https://github.com/rust-lang/crates.io-index" 8130 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 8131 - dependencies = [ 8132 - "form_urlencoded", 8133 - "itoa 1.0.11", 8134 - "ryu", 8135 - "serde", 8136 - ] 8137 - 8138 - [[package]] 8139 - name = "serde_with" 8140 - version = "3.10.0" 8141 - source = "registry+https://github.com/rust-lang/crates.io-index" 8142 - checksum = "9720086b3357bcb44fce40117d769a4d068c70ecfa190850a980a71755f66fcc" 8143 - dependencies = [ 8144 - "base64 0.22.1", 8145 - "chrono", 8146 - "hex", 8147 - "indexmap 1.9.3", 8148 - "indexmap 2.6.0", 8149 - "serde", 8150 - "serde_derive", 8151 - "serde_json", 8152 - "serde_with_macros", 8153 - "time", 8154 - ] 8155 - 8156 - [[package]] 8157 - name = "serde_with_macros" 8158 - version = "3.10.0" 8159 - source = "registry+https://github.com/rust-lang/crates.io-index" 8160 - checksum = "5f1abbfe725f27678f4663bcacb75a83e829fd464c25d78dd038a3a29e307cec" 8161 - dependencies = [ 8162 - "darling", 8163 - "proc-macro2", 8164 - "quote", 8165 - "syn 2.0.87", 8166 - ] 8167 - 8168 - [[package]] 8169 - name = "serde_yaml" 8170 - version = "0.9.34+deprecated" 8171 - source = "registry+https://github.com/rust-lang/crates.io-index" 8172 - checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 8173 - dependencies = [ 8174 - "indexmap 2.6.0", 8175 - "itoa 1.0.11", 8176 - "ryu", 8177 - "serde", 8178 - "unsafe-libyaml", 8179 - ] 8180 - 8181 - [[package]] 8182 - name = "serial_test" 8183 - version = "3.1.1" 8184 - source = "registry+https://github.com/rust-lang/crates.io-index" 8185 - checksum = "4b4b487fe2acf240a021cf57c6b2b4903b1e78ca0ecd862a71b71d2a51fed77d" 8186 - dependencies = [ 8187 - "futures", 8188 - "log", 8189 - "once_cell", 8190 - "parking_lot", 8191 - "scc", 8192 - "serial_test_derive", 8193 - ] 8194 - 8195 - [[package]] 8196 - name = "serial_test_derive" 8197 - version = "3.1.1" 8198 - source = "registry+https://github.com/rust-lang/crates.io-index" 8199 - checksum = "82fe9db325bcef1fbcde82e078a5cc4efdf787e96b3b9cf45b50b529f2083d67" 8200 - dependencies = [ 8201 - "proc-macro2", 8202 - "quote", 8203 - "syn 2.0.87", 8204 - ] 8205 - 8206 - [[package]] 8207 - name = "serialize-to-javascript" 8208 - version = "0.1.1" 8209 - source = "registry+https://github.com/rust-lang/crates.io-index" 8210 - checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 8211 - dependencies = [ 8212 - "serde", 8213 - "serde_json", 8214 - "serialize-to-javascript-impl", 8215 - ] 8216 - 8217 - [[package]] 8218 - name = "serialize-to-javascript-impl" 8219 - version = "0.1.1" 8220 - source = "registry+https://github.com/rust-lang/crates.io-index" 8221 - checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 8222 - dependencies = [ 8223 - "proc-macro2", 8224 - "quote", 8225 - "syn 1.0.109", 8226 - ] 8227 - 8228 - [[package]] 8229 - name = "servo_arc" 8230 - version = "0.1.1" 8231 - source = "registry+https://github.com/rust-lang/crates.io-index" 8232 - checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 8233 - dependencies = [ 8234 - "nodrop", 8235 - "stable_deref_trait", 8236 - ] 8237 - 8238 - [[package]] 8239 - name = "sha1" 8240 - version = "0.10.6" 8241 - source = "registry+https://github.com/rust-lang/crates.io-index" 8242 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 8243 - dependencies = [ 8244 - "cfg-if", 8245 - "cpufeatures", 8246 - "digest", 8247 - ] 8248 - 8249 - [[package]] 8250 - name = "sha1-checked" 8251 - version = "0.10.0" 8252 - source = "registry+https://github.com/rust-lang/crates.io-index" 8253 - checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423" 8254 - dependencies = [ 8255 - "digest", 8256 - "sha1", 8257 - ] 8258 - 8259 - [[package]] 8260 - name = "sha1_smol" 8261 - version = "1.0.1" 8262 - source = "registry+https://github.com/rust-lang/crates.io-index" 8263 - checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 8264 - 8265 - [[package]] 8266 - name = "sha2" 8267 - version = "0.10.8" 8268 - source = "registry+https://github.com/rust-lang/crates.io-index" 8269 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 8270 - dependencies = [ 8271 - "cfg-if", 8272 - "cpufeatures", 8273 - "digest", 8274 - ] 8275 - 8276 - [[package]] 8277 - name = "sha3" 8278 - version = "0.10.8" 8279 - source = "registry+https://github.com/rust-lang/crates.io-index" 8280 - checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" 8281 - dependencies = [ 8282 - "digest", 8283 - "keccak", 8284 - ] 8285 - 8286 - [[package]] 8287 - name = "shared_child" 8288 - version = "1.0.1" 8289 - source = "registry+https://github.com/rust-lang/crates.io-index" 8290 - checksum = "09fa9338aed9a1df411814a5b2252f7cd206c55ae9bf2fa763f8de84603aa60c" 8291 - dependencies = [ 8292 - "libc", 8293 - "windows-sys 0.59.0", 8294 - ] 8295 - 8296 - [[package]] 8297 - name = "shell-words" 8298 - version = "1.1.0" 8299 - source = "registry+https://github.com/rust-lang/crates.io-index" 8300 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 8301 - 8302 - [[package]] 8303 - name = "shlex" 8304 - version = "1.3.0" 8305 - source = "registry+https://github.com/rust-lang/crates.io-index" 8306 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 8307 - 8308 - [[package]] 8309 - name = "signal-hook" 8310 - version = "0.3.17" 8311 - source = "registry+https://github.com/rust-lang/crates.io-index" 8312 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 8313 - dependencies = [ 8314 - "libc", 8315 - "signal-hook-registry", 8316 - ] 8317 - 8318 - [[package]] 8319 - name = "signal-hook-registry" 8320 - version = "1.4.2" 8321 - source = "registry+https://github.com/rust-lang/crates.io-index" 8322 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 8323 - dependencies = [ 8324 - "libc", 8325 - ] 8326 - 8327 - [[package]] 8328 - name = "signal-hook-tokio" 8329 - version = "0.3.1" 8330 - source = "registry+https://github.com/rust-lang/crates.io-index" 8331 - checksum = "213241f76fb1e37e27de3b6aa1b068a2c333233b59cca6634f634b80a27ecf1e" 8332 - dependencies = [ 8333 - "futures-core", 8334 - "libc", 8335 - "signal-hook", 8336 - "tokio", 8337 - ] 8338 - 8339 - [[package]] 8340 - name = "signature" 8341 - version = "1.6.4" 8342 - source = "registry+https://github.com/rust-lang/crates.io-index" 8343 - checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 8344 - dependencies = [ 8345 - "digest", 8346 - "rand_core 0.6.4", 8347 - ] 8348 - 8349 - [[package]] 8350 - name = "signature" 8351 - version = "2.2.0" 8352 - source = "registry+https://github.com/rust-lang/crates.io-index" 8353 - checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 8354 - dependencies = [ 8355 - "digest", 8356 - "rand_core 0.6.4", 8357 - ] 8358 - 8359 - [[package]] 8360 - name = "simd-adler32" 8361 - version = "0.3.7" 8362 - source = "registry+https://github.com/rust-lang/crates.io-index" 8363 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 8364 - 8365 - [[package]] 8366 - name = "simd_helpers" 8367 - version = "0.1.0" 8368 - source = "registry+https://github.com/rust-lang/crates.io-index" 8369 - checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 8370 - dependencies = [ 8371 - "quote", 8372 - ] 8373 - 8374 - [[package]] 8375 - name = "simdutf8" 8376 - version = "0.1.5" 8377 - source = "registry+https://github.com/rust-lang/crates.io-index" 8378 - checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 8379 - 8380 - [[package]] 8381 - name = "similar" 8382 - version = "2.6.0" 8383 - source = "registry+https://github.com/rust-lang/crates.io-index" 8384 - checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" 8385 - 8386 - [[package]] 8387 - name = "simple-file-manifest" 8388 - version = "0.11.0" 8389 - source = "registry+https://github.com/rust-lang/crates.io-index" 8390 - checksum = "5dd19be0257552dd56d1bb6946f89f193c6e5b9f13cc9327c4bc84a357507c74" 8391 - 8392 - [[package]] 8393 - name = "simple_asn1" 8394 - version = "0.6.2" 8395 - source = "registry+https://github.com/rust-lang/crates.io-index" 8396 - checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 8397 - dependencies = [ 8398 - "num-bigint", 8399 - "num-traits", 8400 - "thiserror 1.0.68", 8401 - "time", 8402 - ] 8403 - 8404 - [[package]] 8405 - name = "simplecss" 8406 - version = "0.2.1" 8407 - source = "registry+https://github.com/rust-lang/crates.io-index" 8408 - checksum = "a11be7c62927d9427e9f40f3444d5499d868648e2edbc4e2116de69e7ec0e89d" 8409 - dependencies = [ 8410 - "log", 8411 - ] 8412 - 8413 - [[package]] 8414 - name = "siphasher" 8415 - version = "0.3.11" 8416 - source = "registry+https://github.com/rust-lang/crates.io-index" 8417 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 8418 - 8419 - [[package]] 8420 - name = "siphasher" 8421 - version = "1.0.1" 8422 - source = "registry+https://github.com/rust-lang/crates.io-index" 8423 - checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 8424 - 8425 - [[package]] 8426 - name = "slab" 8427 - version = "0.4.9" 8428 - source = "registry+https://github.com/rust-lang/crates.io-index" 8429 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 8430 - dependencies = [ 8431 - "autocfg", 8432 - ] 8433 - 8434 - [[package]] 8435 - name = "slotmap" 8436 - version = "1.0.7" 8437 - source = "registry+https://github.com/rust-lang/crates.io-index" 8438 - checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 8439 - dependencies = [ 8440 - "version_check", 8441 - ] 8442 - 8443 - [[package]] 8444 - name = "smallvec" 8445 - version = "1.13.2" 8446 - source = "registry+https://github.com/rust-lang/crates.io-index" 8447 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 8448 - 8449 - [[package]] 8450 - name = "smawk" 8451 - version = "0.3.2" 8452 - source = "registry+https://github.com/rust-lang/crates.io-index" 8453 - checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" 8454 - 8455 - [[package]] 8456 - name = "snafu" 8457 - version = "0.7.5" 8458 - source = "registry+https://github.com/rust-lang/crates.io-index" 8459 - checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6" 8460 - dependencies = [ 8461 - "backtrace", 8462 - "doc-comment", 8463 - "snafu-derive", 8464 - ] 8465 - 8466 - [[package]] 8467 - name = "snafu-derive" 8468 - version = "0.7.5" 8469 - source = "registry+https://github.com/rust-lang/crates.io-index" 8470 - checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf" 8471 - dependencies = [ 8472 - "heck 0.4.1", 8473 - "proc-macro2", 8474 - "quote", 8475 - "syn 1.0.109", 8476 - ] 8477 - 8478 - [[package]] 8479 - name = "socket2" 8480 - version = "0.5.7" 8481 - source = "registry+https://github.com/rust-lang/crates.io-index" 8482 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 8483 - dependencies = [ 8484 - "libc", 8485 - "windows-sys 0.52.0", 8486 - ] 8487 - 8488 - [[package]] 8489 - name = "socks" 8490 - version = "0.3.4" 8491 - source = "registry+https://github.com/rust-lang/crates.io-index" 8492 - checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b" 8493 - dependencies = [ 8494 - "byteorder", 8495 - "libc", 8496 - "winapi", 8497 - ] 8498 - 8499 - [[package]] 8500 - name = "softbuffer" 8501 - version = "0.4.6" 8502 - source = "registry+https://github.com/rust-lang/crates.io-index" 8503 - checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" 8504 - dependencies = [ 8505 - "bytemuck", 8506 - "cfg_aliases", 8507 - "core-graphics 0.24.0", 8508 - "foreign-types 0.5.0", 8509 - "js-sys", 8510 - "log", 8511 - "objc2", 8512 - "objc2-foundation", 8513 - "objc2-quartz-core", 8514 - "raw-window-handle", 8515 - "redox_syscall", 8516 - "wasm-bindgen", 8517 - "web-sys", 8518 - "windows-sys 0.59.0", 8519 - ] 8520 - 8521 - [[package]] 8522 - name = "soketto" 8523 - version = "0.8.0" 8524 - source = "registry+https://github.com/rust-lang/crates.io-index" 8525 - checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53" 8526 - dependencies = [ 8527 - "base64 0.22.1", 8528 - "bytes", 8529 - "futures", 8530 - "http 1.1.0", 8531 - "httparse", 8532 - "log", 8533 - "rand 0.8.5", 8534 - "sha1", 8535 - ] 8536 - 8537 - [[package]] 8538 - name = "soup3" 8539 - version = "0.5.0" 8540 - source = "registry+https://github.com/rust-lang/crates.io-index" 8541 - checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" 8542 - dependencies = [ 8543 - "futures-channel", 8544 - "gio", 8545 - "glib", 8546 - "libc", 8547 - "soup3-sys", 8548 - ] 8549 - 8550 - [[package]] 8551 - name = "soup3-sys" 8552 - version = "0.5.0" 8553 - source = "registry+https://github.com/rust-lang/crates.io-index" 8554 - checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" 8555 - dependencies = [ 8556 - "gio-sys", 8557 - "glib-sys", 8558 - "gobject-sys", 8559 - "libc", 8560 - "system-deps", 8561 - ] 8562 - 8563 - [[package]] 8564 - name = "spake2" 8565 - version = "0.4.0" 8566 - source = "registry+https://github.com/rust-lang/crates.io-index" 8567 - checksum = "c5482afe85a0b6ce956c945401598dbc527593c77ba51d0a87a586938b1b893a" 8568 - dependencies = [ 8569 - "curve25519-dalek", 8570 - "hkdf", 8571 - "rand_core 0.6.4", 8572 - "sha2", 8573 - ] 8574 - 8575 - [[package]] 8576 - name = "specta" 8577 - version = "2.0.0-rc.20" 8578 - source = "registry+https://github.com/rust-lang/crates.io-index" 8579 - checksum = "4ccbb212565d2dc177bc15ecb7b039d66c4490da892436a4eee5b394d620c9bc" 8580 - dependencies = [ 8581 - "paste", 8582 - "specta-macros", 8583 - "thiserror 1.0.68", 8584 - ] 8585 - 8586 - [[package]] 8587 - name = "specta-macros" 8588 - version = "2.0.0-rc.17" 8589 - source = "registry+https://github.com/rust-lang/crates.io-index" 8590 - checksum = "68999d29816965eb9e5201f60aec02a76512139811661a7e8e653abc810b8f72" 8591 - dependencies = [ 8592 - "Inflector", 8593 - "proc-macro2", 8594 - "quote", 8595 - "syn 2.0.87", 8596 - ] 8597 - 8598 - [[package]] 8599 - name = "spin" 8600 - version = "0.9.8" 8601 - source = "registry+https://github.com/rust-lang/crates.io-index" 8602 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 8603 - dependencies = [ 8604 - "lock_api", 8605 - ] 8606 - 8607 - [[package]] 8608 - name = "spki" 8609 - version = "0.6.0" 8610 - source = "registry+https://github.com/rust-lang/crates.io-index" 8611 - checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 8612 - dependencies = [ 8613 - "base64ct", 8614 - "der 0.6.1", 8615 - ] 8616 - 8617 - [[package]] 8618 - name = "spki" 8619 - version = "0.7.3" 8620 - source = "registry+https://github.com/rust-lang/crates.io-index" 8621 - checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 8622 - dependencies = [ 8623 - "base64ct", 8624 - "der 0.7.9", 8625 - ] 8626 - 8627 - [[package]] 8628 - name = "stable_deref_trait" 8629 - version = "1.2.0" 8630 - source = "registry+https://github.com/rust-lang/crates.io-index" 8631 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 8632 - 8633 - [[package]] 8634 - name = "static_assertions" 8635 - version = "1.1.0" 8636 - source = "registry+https://github.com/rust-lang/crates.io-index" 8637 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 8638 - 8639 - [[package]] 8640 - name = "std_prelude" 8641 - version = "0.2.12" 8642 - source = "registry+https://github.com/rust-lang/crates.io-index" 8643 - checksum = "8207e78455ffdf55661170876f88daf85356e4edd54e0a3dbc79586ca1e50cbe" 8644 - 8645 - [[package]] 8646 - name = "stfu8" 8647 - version = "0.2.7" 8648 - source = "registry+https://github.com/rust-lang/crates.io-index" 8649 - checksum = "e51f1e89f093f99e7432c491c382b88a6860a5adbe6bf02574bf0a08efff1978" 8650 - 8651 - [[package]] 8652 - name = "strict-num" 8653 - version = "0.1.1" 8654 - source = "registry+https://github.com/rust-lang/crates.io-index" 8655 - checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" 8656 - dependencies = [ 8657 - "float-cmp", 8658 - ] 8659 - 8660 - [[package]] 8661 - name = "string_cache" 8662 - version = "0.8.7" 8663 - source = "registry+https://github.com/rust-lang/crates.io-index" 8664 - checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 8665 - dependencies = [ 8666 - "new_debug_unreachable", 8667 - "once_cell", 8668 - "parking_lot", 8669 - "phf_shared 0.10.0", 8670 - "precomputed-hash", 8671 - "serde", 8672 - ] 8673 - 8674 - [[package]] 8675 - name = "string_cache_codegen" 8676 - version = "0.5.2" 8677 - source = "registry+https://github.com/rust-lang/crates.io-index" 8678 - checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 8679 - dependencies = [ 8680 - "phf_generator 0.10.0", 8681 - "phf_shared 0.10.0", 8682 - "proc-macro2", 8683 - "quote", 8684 - ] 8685 - 8686 - [[package]] 8687 - name = "strsim" 8688 - version = "0.11.1" 8689 - source = "registry+https://github.com/rust-lang/crates.io-index" 8690 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 8691 - 8692 - [[package]] 8693 - name = "sublime_fuzzy" 8694 - version = "0.7.0" 8695 - source = "registry+https://github.com/rust-lang/crates.io-index" 8696 - checksum = "fa7986063f7c0ab374407e586d7048a3d5aac94f103f751088bf398e07cd5400" 8697 - 8698 - [[package]] 8699 - name = "subtle" 8700 - version = "2.6.1" 8701 - source = "registry+https://github.com/rust-lang/crates.io-index" 8702 - checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 8703 - 8704 - [[package]] 8705 - name = "sval" 8706 - version = "2.13.1" 8707 - source = "registry+https://github.com/rust-lang/crates.io-index" 8708 - checksum = "eaf38d1fa2ce984086ea42fb856a9f374d94680a4f796831a7fc868d7f2af1b9" 8709 - 8710 - [[package]] 8711 - name = "sval_buffer" 8712 - version = "2.13.1" 8713 - source = "registry+https://github.com/rust-lang/crates.io-index" 8714 - checksum = "81682ff859964ca1d7cf3d3d0f9ec7204ea04c2c32acb8cc2cf68ecbd3127354" 8715 - dependencies = [ 8716 - "sval", 8717 - "sval_ref", 8718 - ] 8719 - 8720 - [[package]] 8721 - name = "sval_dynamic" 8722 - version = "2.13.1" 8723 - source = "registry+https://github.com/rust-lang/crates.io-index" 8724 - checksum = "2a213b93bb4c6f4c9f9b17f2e740e077fd18746bbf7c80c72bbadcac68fa7ee4" 8725 - dependencies = [ 8726 - "sval", 8727 - ] 8728 - 8729 - [[package]] 8730 - name = "sval_fmt" 8731 - version = "2.13.1" 8732 - source = "registry+https://github.com/rust-lang/crates.io-index" 8733 - checksum = "6902c6d3fb52c89206fe0dc93546c0123f7d48b5997fd14e61c9e64ff0b63275" 8734 - dependencies = [ 8735 - "itoa 1.0.11", 8736 - "ryu", 8737 - "sval", 8738 - ] 8739 - 8740 - [[package]] 8741 - name = "sval_json" 8742 - version = "2.13.1" 8743 - source = "registry+https://github.com/rust-lang/crates.io-index" 8744 - checksum = "11a28041ea78cdc394b930ae6b897d36246dc240a29a6edf82d76562487fb0b4" 8745 - dependencies = [ 8746 - "itoa 1.0.11", 8747 - "ryu", 8748 - "sval", 8749 - ] 8750 - 8751 - [[package]] 8752 - name = "sval_nested" 8753 - version = "2.13.1" 8754 - source = "registry+https://github.com/rust-lang/crates.io-index" 8755 - checksum = "850346e4b0742a7f2fd2697d703ff80084d0b658f0f2e336d71b8a06abf9b68e" 8756 - dependencies = [ 8757 - "sval", 8758 - "sval_buffer", 8759 - "sval_ref", 8760 - ] 8761 - 8762 - [[package]] 8763 - name = "sval_ref" 8764 - version = "2.13.1" 8765 - source = "registry+https://github.com/rust-lang/crates.io-index" 8766 - checksum = "824afd97a8919f28a35b0fdea979845cc2ae461a8a3aaa129455cb89c88bb77a" 8767 - dependencies = [ 8768 - "sval", 8769 - ] 8770 - 8771 - [[package]] 8772 - name = "sval_serde" 8773 - version = "2.13.1" 8774 - source = "registry+https://github.com/rust-lang/crates.io-index" 8775 - checksum = "8ada7520dd719ed672c786c7db7de4f5230f4d504b0821bd8305cd30ca442315" 8776 - dependencies = [ 8777 - "serde", 8778 - "sval", 8779 - "sval_nested", 8780 - ] 8781 - 8782 - [[package]] 8783 - name = "svgtypes" 8784 - version = "0.15.2" 8785 - source = "registry+https://github.com/rust-lang/crates.io-index" 8786 - checksum = "794de53cc48eaabeed0ab6a3404a65f40b3e38c067e4435883a65d2aa4ca000e" 8787 - dependencies = [ 8788 - "kurbo", 8789 - "siphasher 1.0.1", 8790 - ] 8791 - 8792 - [[package]] 8793 - name = "swift-rs" 8794 - version = "1.0.7" 8795 - source = "registry+https://github.com/rust-lang/crates.io-index" 8796 - checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" 8797 - dependencies = [ 8798 - "base64 0.21.7", 8799 - "serde", 8800 - "serde_json", 8801 - ] 8802 - 8803 - [[package]] 8804 - name = "syn" 8805 - version = "1.0.109" 8806 - source = "registry+https://github.com/rust-lang/crates.io-index" 8807 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 8808 - dependencies = [ 8809 - "proc-macro2", 8810 - "quote", 8811 - "unicode-ident", 8812 - ] 8813 - 8814 - [[package]] 8815 - name = "syn" 8816 - version = "2.0.87" 8817 - source = "registry+https://github.com/rust-lang/crates.io-index" 8818 - checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" 8819 - dependencies = [ 8820 - "proc-macro2", 8821 - "quote", 8822 - "unicode-ident", 8823 - ] 8824 - 8825 - [[package]] 8826 - name = "syn_derive" 8827 - version = "0.1.8" 8828 - source = "registry+https://github.com/rust-lang/crates.io-index" 8829 - checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" 8830 - dependencies = [ 8831 - "proc-macro-error", 8832 - "proc-macro2", 8833 - "quote", 8834 - "syn 2.0.87", 8835 - ] 8836 - 8837 - [[package]] 8838 - name = "sync_wrapper" 8839 - version = "0.1.2" 8840 - source = "registry+https://github.com/rust-lang/crates.io-index" 8841 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 8842 - 8843 - [[package]] 8844 - name = "sync_wrapper" 8845 - version = "1.0.1" 8846 - source = "registry+https://github.com/rust-lang/crates.io-index" 8847 - checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 8848 - dependencies = [ 8849 - "futures-core", 8850 - ] 8851 - 8852 - [[package]] 8853 - name = "synstructure" 8854 - version = "0.12.6" 8855 - source = "registry+https://github.com/rust-lang/crates.io-index" 8856 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 8857 - dependencies = [ 8858 - "proc-macro2", 8859 - "quote", 8860 - "syn 1.0.109", 8861 - "unicode-xid", 8862 - ] 8863 - 8864 - [[package]] 8865 - name = "synstructure" 8866 - version = "0.13.1" 8867 - source = "registry+https://github.com/rust-lang/crates.io-index" 8868 - checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 8869 - dependencies = [ 8870 - "proc-macro2", 8871 - "quote", 8872 - "syn 2.0.87", 8873 - ] 8874 - 8875 - [[package]] 8876 - name = "sysctl" 8877 - version = "0.4.6" 8878 - source = "registry+https://github.com/rust-lang/crates.io-index" 8879 - checksum = "225e483f02d0ad107168dc57381a8a40c3aeea6abe47f37506931f861643cfa8" 8880 - dependencies = [ 8881 - "bitflags 1.3.2", 8882 - "byteorder", 8883 - "libc", 8884 - "thiserror 1.0.68", 8885 - "walkdir", 8886 - ] 8887 - 8888 - [[package]] 8889 - name = "system-configuration" 8890 - version = "0.5.1" 8891 - source = "registry+https://github.com/rust-lang/crates.io-index" 8892 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 8893 - dependencies = [ 8894 - "bitflags 1.3.2", 8895 - "core-foundation 0.9.4", 8896 - "system-configuration-sys", 8897 - ] 8898 - 8899 - [[package]] 8900 - name = "system-configuration-sys" 8901 - version = "0.5.0" 8902 - source = "registry+https://github.com/rust-lang/crates.io-index" 8903 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 8904 - dependencies = [ 8905 - "core-foundation-sys", 8906 - "libc", 8907 - ] 8908 - 8909 - [[package]] 8910 - name = "system-deps" 8911 - version = "6.2.2" 8912 - source = "registry+https://github.com/rust-lang/crates.io-index" 8913 - checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 8914 - dependencies = [ 8915 - "cfg-expr", 8916 - "heck 0.5.0", 8917 - "pkg-config", 8918 - "toml 0.8.19", 8919 - "version-compare", 8920 - ] 8921 - 8922 - [[package]] 8923 - name = "tao" 8924 - version = "0.30.6" 8925 - source = "registry+https://github.com/rust-lang/crates.io-index" 8926 - checksum = "833b4d43383d76d5078d72f3acd977f47eb5b6751eb40baa665d13828e7b79df" 8927 - dependencies = [ 8928 - "bitflags 2.6.0", 8929 - "cocoa 0.26.0", 8930 - "core-foundation 0.10.0", 8931 - "core-graphics 0.24.0", 8932 - "crossbeam-channel", 8933 - "dispatch", 8934 - "dlopen2", 8935 - "dpi", 8936 - "gdkwayland-sys", 8937 - "gdkx11-sys", 8938 - "gtk", 8939 - "instant", 8940 - "jni", 8941 - "lazy_static", 8942 - "libc", 8943 - "log", 8944 - "ndk", 8945 - "ndk-context", 8946 - "ndk-sys", 8947 - "objc", 8948 - "once_cell", 8949 - "parking_lot", 8950 - "raw-window-handle", 8951 - "scopeguard", 8952 - "tao-macros", 8953 - "unicode-segmentation", 8954 - "url", 8955 - "windows", 8956 - "windows-core 0.58.0", 8957 - "windows-version", 8958 - "x11-dl", 8959 - ] 8960 - 8961 - [[package]] 8962 - name = "tao-macros" 8963 - version = "0.1.3" 8964 - source = "registry+https://github.com/rust-lang/crates.io-index" 8965 - checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" 8966 - dependencies = [ 8967 - "proc-macro2", 8968 - "quote", 8969 - "syn 2.0.87", 8970 - ] 8971 - 8972 - [[package]] 8973 - name = "tap" 8974 - version = "1.0.1" 8975 - source = "registry+https://github.com/rust-lang/crates.io-index" 8976 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 8977 - 8978 - [[package]] 8979 - name = "tar" 8980 - version = "0.4.43" 8981 - source = "registry+https://github.com/rust-lang/crates.io-index" 8982 - checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6" 8983 - dependencies = [ 8984 - "filetime", 8985 - "libc", 8986 - "xattr", 8987 - ] 8988 - 8989 - [[package]] 8990 - name = "target-lexicon" 8991 - version = "0.12.16" 8992 - source = "registry+https://github.com/rust-lang/crates.io-index" 8993 - checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 8994 - 8995 - [[package]] 8996 - name = "tauri" 8997 - version = "2.1.1" 8998 - dependencies = [ 8999 - "anyhow", 9000 - "bytes", 9001 - "cargo_toml", 9002 - "data-url", 9003 - "dirs", 9004 - "dunce", 9005 - "embed_plist", 9006 - "futures-util", 9007 - "getrandom 0.2.15", 9008 - "glob", 9009 - "gtk", 9010 - "heck 0.5.0", 9011 - "http 1.1.0", 9012 - "http-range", 9013 - "image", 9014 - "jni", 9015 - "libc", 9016 - "log", 9017 - "mime", 9018 - "muda", 9019 - "objc2", 9020 - "objc2-app-kit", 9021 - "objc2-foundation", 9022 - "objc2-web-kit", 9023 - "percent-encoding", 9024 - "plist", 9025 - "proptest", 9026 - "quickcheck", 9027 - "quickcheck_macros", 9028 - "raw-window-handle", 9029 - "reqwest 0.12.9", 9030 - "serde", 9031 - "serde_json", 9032 - "serde_repr", 9033 - "serialize-to-javascript", 9034 - "specta", 9035 - "swift-rs", 9036 - "tauri", 9037 - "tauri-build", 9038 - "tauri-macros", 9039 - "tauri-runtime", 9040 - "tauri-runtime-wry", 9041 - "tauri-utils 2.1.0", 9042 - "thiserror 2.0.0", 9043 - "tokio", 9044 - "tracing", 9045 - "tray-icon", 9046 - "url", 9047 - "urlpattern", 9048 - "uuid", 9049 - "webkit2gtk", 9050 - "webview2-com", 9051 - "window-vibrancy", 9052 - "windows", 9053 - ] 9054 - 9055 - [[package]] 9056 - name = "tauri-build" 9057 - version = "2.0.3" 9058 - dependencies = [ 9059 - "anyhow", 9060 - "cargo_toml", 9061 - "dirs", 9062 - "glob", 9063 - "heck 0.5.0", 9064 - "json-patch 3.0.1", 9065 - "quote", 9066 - "schemars", 9067 - "semver", 9068 - "serde", 9069 - "serde_json", 9070 - "tauri-codegen", 9071 - "tauri-utils 2.1.0", 9072 - "tauri-winres", 9073 - "toml 0.8.19", 9074 - "walkdir", 9075 - ] 9076 - 9077 - [[package]] 9078 - name = "tauri-bundler" 9079 - version = "2.1.0" 9080 - dependencies = [ 9081 - "anyhow", 9082 - "ar", 9083 - "bitness", 9084 - "dirs", 9085 - "dunce", 9086 - "flate2", 9087 - "glob", 9088 - "handlebars", 9089 - "heck 0.5.0", 9090 - "hex", 9091 - "image", 9092 - "log", 9093 - "md5", 9094 - "native-tls", 9095 - "os_pipe", 9096 - "plist", 9097 - "regex", 9098 - "rpm", 9099 - "semver", 9100 - "serde", 9101 - "serde_json", 9102 - "sha1", 9103 - "sha2", 9104 - "strsim", 9105 - "tar", 9106 - "tauri-icns", 9107 - "tauri-macos-sign", 9108 - "tauri-utils 2.1.0", 9109 - "tempfile", 9110 - "thiserror 2.0.0", 9111 - "time", 9112 - "ureq", 9113 - "url", 9114 - "uuid", 9115 - "walkdir", 9116 - "windows-registry 0.3.0", 9117 - "windows-sys 0.59.0", 9118 - "zip 2.2.0", 9119 - ] 9120 - 9121 - [[package]] 9122 - name = "tauri-cli" 9123 - version = "2.1.0" 9124 - dependencies = [ 9125 - "anyhow", 9126 - "ar", 9127 - "axum", 9128 - "base64 0.22.1", 9129 - "cargo-mobile2", 9130 - "clap", 9131 - "clap_complete", 9132 - "colored", 9133 - "common-path", 9134 - "css-color", 9135 - "ctrlc", 9136 - "dialoguer", 9137 - "duct", 9138 - "dunce", 9139 - "elf", 9140 - "env_logger 0.11.5", 9141 - "glob", 9142 - "handlebars", 9143 - "heck 0.5.0", 9144 - "html5ever", 9145 - "ignore", 9146 - "image", 9147 - "include_dir", 9148 - "insta", 9149 - "itertools 0.13.0", 9150 - "json-patch 3.0.1", 9151 - "jsonrpsee", 9152 - "jsonrpsee-client-transport", 9153 - "jsonrpsee-core", 9154 - "jsonrpsee-ws-client", 9155 - "jsonschema", 9156 - "kuchikiki", 9157 - "libc", 9158 - "local-ip-address", 9159 - "log", 9160 - "magic_string", 9161 - "memchr", 9162 - "minisign", 9163 - "notify", 9164 - "notify-debouncer-mini", 9165 - "object 0.36.5", 9166 - "os_info", 9167 - "os_pipe", 9168 - "oxc_allocator", 9169 - "oxc_ast", 9170 - "oxc_parser", 9171 - "oxc_span", 9172 - "phf 0.11.2", 9173 - "plist", 9174 - "pretty_assertions", 9175 - "rand 0.8.5", 9176 - "regex", 9177 - "resvg", 9178 - "semver", 9179 - "serde", 9180 - "serde-value", 9181 - "serde_json", 9182 - "shared_child", 9183 - "sublime_fuzzy", 9184 - "tauri-bundler", 9185 - "tauri-icns", 9186 - "tauri-macos-sign", 9187 - "tauri-utils 1.6.0", 9188 - "tauri-utils 2.1.0", 9189 - "tempfile", 9190 - "tokio", 9191 - "toml 0.8.19", 9192 - "toml_edit 0.22.22", 9193 - "ureq", 9194 - "url", 9195 - "uuid", 9196 - "walkdir", 9197 - "windows-sys 0.59.0", 9198 - ] 9199 - 9200 - [[package]] 9201 - name = "tauri-cli-node" 9202 - version = "0.0.0" 9203 - dependencies = [ 9204 - "log", 9205 - "napi", 9206 - "napi-build", 9207 - "napi-derive", 9208 - "tauri-cli", 9209 - ] 9210 - 9211 - [[package]] 9212 - name = "tauri-codegen" 9213 - version = "2.0.3" 9214 - dependencies = [ 9215 - "base64 0.22.1", 9216 - "brotli", 9217 - "ico", 9218 - "json-patch 3.0.1", 9219 - "plist", 9220 - "png", 9221 - "proc-macro2", 9222 - "quote", 9223 - "regex", 9224 - "semver", 9225 - "serde", 9226 - "serde_json", 9227 - "sha2", 9228 - "syn 2.0.87", 9229 - "tauri-utils 2.1.0", 9230 - "thiserror 2.0.0", 9231 - "time", 9232 - "url", 9233 - "uuid", 9234 - "walkdir", 9235 - ] 9236 - 9237 - [[package]] 9238 - name = "tauri-driver" 9239 - version = "2.0.1" 9240 - dependencies = [ 9241 - "anyhow", 9242 - "futures", 9243 - "futures-util", 9244 - "hyper 0.14.30", 9245 - "pico-args 0.4.2", 9246 - "serde", 9247 - "serde_json", 9248 - "signal-hook", 9249 - "signal-hook-tokio", 9250 - "tokio", 9251 - "which 4.4.2", 9252 - ] 9253 - 9254 - [[package]] 9255 - name = "tauri-file-associations-demo" 9256 - version = "0.1.0" 9257 - dependencies = [ 9258 - "serde", 9259 - "serde_json", 9260 - "tauri", 9261 - "tauri-build", 9262 - "url", 9263 - ] 9264 - 9265 - [[package]] 9266 - name = "tauri-icns" 9267 - version = "0.1.0" 9268 - source = "registry+https://github.com/rust-lang/crates.io-index" 9269 - checksum = "03b7eb4d0d43724ba9ba6a6717420ee68aee377816a3edbb45db8c18862b1431" 9270 - dependencies = [ 9271 - "byteorder", 9272 - "png", 9273 - ] 9274 - 9275 - [[package]] 9276 - name = "tauri-macos-sign" 9277 - version = "2.0.1" 9278 - dependencies = [ 9279 - "anyhow", 9280 - "apple-codesign", 9281 - "chrono", 9282 - "dirs-next", 9283 - "log", 9284 - "once-cell-regex", 9285 - "os_pipe", 9286 - "p12", 9287 - "plist", 9288 - "rand 0.8.5", 9289 - "serde", 9290 - "serde_json", 9291 - "tempfile", 9292 - "x509-certificate", 9293 - ] 9294 - 9295 - [[package]] 9296 - name = "tauri-macros" 9297 - version = "2.0.3" 9298 - dependencies = [ 9299 - "heck 0.5.0", 9300 - "proc-macro2", 9301 - "quote", 9302 - "syn 2.0.87", 9303 - "tauri-codegen", 9304 - "tauri-utils 2.1.0", 9305 - ] 9306 - 9307 - [[package]] 9308 - name = "tauri-plugin" 9309 - version = "2.0.0-rc.13" 9310 - source = "registry+https://github.com/rust-lang/crates.io-index" 9311 - checksum = "6de7ffe64afa61c4cc13d450d64643b8db6cbb177a802beb88bf595594505ddf" 9312 - dependencies = [ 9313 - "anyhow", 9314 - "glob", 9315 - "plist", 9316 - "schemars", 9317 - "serde", 9318 - "serde_json", 9319 - "tauri-utils 2.0.0-rc.13", 9320 - "toml 0.8.19", 9321 - "walkdir", 9322 - ] 9323 - 9324 - [[package]] 9325 - name = "tauri-plugin" 9326 - version = "2.0.3" 9327 - dependencies = [ 9328 - "anyhow", 9329 - "glob", 9330 - "plist", 9331 - "schemars", 9332 - "serde", 9333 - "serde_json", 9334 - "tauri-utils 2.1.0", 9335 - "toml 0.8.19", 9336 - "walkdir", 9337 - ] 9338 - 9339 - [[package]] 9340 - name = "tauri-plugin-log" 9341 - version = "2.0.0-rc.2" 9342 - source = "registry+https://github.com/rust-lang/crates.io-index" 9343 - checksum = "b57e4666c4a5d81f81b7bb8eacf51ae32c4e69c35071aabb480ad20a80836e4e" 9344 - dependencies = [ 9345 - "android_logger", 9346 - "byte-unit", 9347 - "cocoa 0.25.0", 9348 - "fern", 9349 - "log", 9350 - "objc", 9351 - "serde", 9352 - "serde_json", 9353 - "serde_repr", 9354 - "swift-rs", 9355 - "tauri", 9356 - "tauri-plugin 2.0.0-rc.13", 9357 - "thiserror 1.0.68", 9358 - "time", 9359 - ] 9360 - 9361 - [[package]] 9362 - name = "tauri-plugin-sample" 9363 - version = "0.1.0" 9364 - dependencies = [ 9365 - "log", 9366 - "serde", 9367 - "tauri", 9368 - "tauri-plugin 2.0.3", 9369 - "thiserror 2.0.0", 9370 - ] 9371 - 9372 - [[package]] 9373 - name = "tauri-runtime" 9374 - version = "2.2.0" 9375 - dependencies = [ 9376 - "dpi", 9377 - "gtk", 9378 - "http 1.1.0", 9379 - "jni", 9380 - "raw-window-handle", 9381 - "serde", 9382 - "serde_json", 9383 - "tauri-utils 2.1.0", 9384 - "thiserror 2.0.0", 9385 - "url", 9386 - "windows", 9387 - ] 9388 - 9389 - [[package]] 9390 - name = "tauri-runtime-wry" 9391 - version = "2.2.0" 9392 - dependencies = [ 9393 - "gtk", 9394 - "http 1.1.0", 9395 - "jni", 9396 - "log", 9397 - "objc2", 9398 - "objc2-app-kit", 9399 - "objc2-foundation", 9400 - "percent-encoding", 9401 - "raw-window-handle", 9402 - "softbuffer", 9403 - "tao", 9404 - "tauri-runtime", 9405 - "tauri-utils 2.1.0", 9406 - "tracing", 9407 - "url", 9408 - "webkit2gtk", 9409 - "webview2-com", 9410 - "windows", 9411 - "wry", 9412 - ] 9413 - 9414 - [[package]] 9415 - name = "tauri-schema-generator" 9416 - version = "0.0.0" 9417 - dependencies = [ 9418 - "schemars", 9419 - "serde", 9420 - "serde_json", 9421 - "tauri-utils 2.1.0", 9422 - "url", 9423 - ] 9424 - 9425 - [[package]] 9426 - name = "tauri-schema-worker" 9427 - version = "0.0.0" 9428 - dependencies = [ 9429 - "anyhow", 9430 - "axum", 9431 - "console_error_panic_hook", 9432 - "semver", 9433 - "serde", 9434 - "tower-service", 9435 - "worker", 9436 - "worker-macros", 9437 - ] 9438 - 9439 - [[package]] 9440 - name = "tauri-utils" 9441 - version = "1.6.0" 9442 - source = "registry+https://github.com/rust-lang/crates.io-index" 9443 - checksum = "2826db448309d382dac14d520f0c0a40839b87b57b977e59cf5f296b3ace6a93" 9444 - dependencies = [ 9445 - "aes-gcm", 9446 - "ctor", 9447 - "dunce", 9448 - "getrandom 0.2.15", 9449 - "heck 0.5.0", 9450 - "html5ever", 9451 - "infer 0.13.0", 9452 - "json-patch 1.4.0", 9453 - "json5", 9454 - "kuchikiki", 9455 - "log", 9456 - "memchr", 9457 - "phf 0.11.2", 9458 - "schemars", 9459 - "semver", 9460 - "serde", 9461 - "serde_json", 9462 - "serde_with", 9463 - "serialize-to-javascript", 9464 - "thiserror 1.0.68", 9465 - "toml 0.7.8", 9466 - "url", 9467 - "windows-version", 9468 - ] 9469 - 9470 - [[package]] 9471 - name = "tauri-utils" 9472 - version = "2.0.0-rc.13" 9473 - source = "registry+https://github.com/rust-lang/crates.io-index" 9474 - checksum = "a271545e4c25b36b922d98cf7e0c1755f64e92355705f656893e352aef0331e3" 9475 - dependencies = [ 9476 - "cargo_metadata", 9477 - "ctor", 9478 - "dunce", 9479 - "glob", 9480 - "html5ever", 9481 - "infer 0.16.0", 9482 - "json-patch 2.0.0", 9483 - "kuchikiki", 9484 - "log", 9485 - "memchr", 9486 - "phf 0.11.2", 9487 - "proc-macro2", 9488 - "quote", 9489 - "regex", 9490 - "schemars", 9491 - "semver", 9492 - "serde", 9493 - "serde-untagged", 9494 - "serde_json", 9495 - "serde_with", 9496 - "swift-rs", 9497 - "thiserror 1.0.68", 9498 - "toml 0.8.19", 9499 - "url", 9500 - "urlpattern", 9501 - "uuid", 9502 - ] 9503 - 9504 - [[package]] 9505 - name = "tauri-utils" 9506 - version = "2.1.0" 9507 - dependencies = [ 9508 - "aes-gcm", 9509 - "brotli", 9510 - "cargo_metadata", 9511 - "ctor", 9512 - "dunce", 9513 - "getrandom 0.2.15", 9514 - "glob", 9515 - "html5ever", 9516 - "http 1.1.0", 9517 - "infer 0.16.0", 9518 - "json-patch 3.0.1", 9519 - "json5", 9520 - "kuchikiki", 9521 - "log", 9522 - "memchr", 9523 - "phf 0.11.2", 9524 - "proc-macro2", 9525 - "quote", 9526 - "regex", 9527 - "schemars", 9528 - "semver", 9529 - "serde", 9530 - "serde-untagged", 9531 - "serde_json", 9532 - "serde_with", 9533 - "serial_test", 9534 - "serialize-to-javascript", 9535 - "swift-rs", 9536 - "thiserror 2.0.0", 9537 - "toml 0.8.19", 9538 - "url", 9539 - "urlpattern", 9540 - "uuid", 9541 - "walkdir", 9542 - ] 9543 - 9544 - [[package]] 9545 - name = "tauri-winres" 9546 - version = "0.1.1" 9547 - source = "registry+https://github.com/rust-lang/crates.io-index" 9548 - checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" 9549 - dependencies = [ 9550 - "embed-resource", 9551 - "toml 0.7.8", 9552 - ] 9553 - 9554 - [[package]] 9555 - name = "tauri_bench" 9556 - version = "0.1.0" 9557 - dependencies = [ 9558 - "anyhow", 9559 - "serde", 9560 - "serde_json", 9561 - "tempfile", 9562 - "time", 9563 - ] 9564 - 9565 - [[package]] 9566 - name = "tempfile" 9567 - version = "3.13.0" 9568 - source = "registry+https://github.com/rust-lang/crates.io-index" 9569 - checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" 9570 - dependencies = [ 9571 - "cfg-if", 9572 - "fastrand", 9573 - "once_cell", 9574 - "rustix 0.38.37", 9575 - "windows-sys 0.59.0", 9576 - ] 9577 - 9578 - [[package]] 9579 - name = "tendril" 9580 - version = "0.4.3" 9581 - source = "registry+https://github.com/rust-lang/crates.io-index" 9582 - checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 9583 - dependencies = [ 9584 - "futf", 9585 - "mac", 9586 - "utf-8", 9587 - ] 9588 - 9589 - [[package]] 9590 - name = "termcolor" 9591 - version = "1.4.1" 9592 - source = "registry+https://github.com/rust-lang/crates.io-index" 9593 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 9594 - dependencies = [ 9595 - "winapi-util", 9596 - ] 9597 - 9598 - [[package]] 9599 - name = "terminal_size" 9600 - version = "0.2.6" 9601 - source = "registry+https://github.com/rust-lang/crates.io-index" 9602 - checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 9603 - dependencies = [ 9604 - "rustix 0.37.27", 9605 - "windows-sys 0.48.0", 9606 - ] 9607 - 9608 - [[package]] 9609 - name = "textwrap" 9610 - version = "0.16.1" 9611 - source = "registry+https://github.com/rust-lang/crates.io-index" 9612 - checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 9613 - dependencies = [ 9614 - "smawk", 9615 - "terminal_size", 9616 - "unicode-linebreak", 9617 - "unicode-width", 9618 - ] 9619 - 9620 - [[package]] 9621 - name = "thin-slice" 9622 - version = "0.1.1" 9623 - source = "registry+https://github.com/rust-lang/crates.io-index" 9624 - checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 9625 - 9626 - [[package]] 9627 - name = "thiserror" 9628 - version = "1.0.68" 9629 - source = "registry+https://github.com/rust-lang/crates.io-index" 9630 - checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" 9631 - dependencies = [ 9632 - "thiserror-impl 1.0.68", 9633 - ] 9634 - 9635 - [[package]] 9636 - name = "thiserror" 9637 - version = "2.0.0" 9638 - source = "registry+https://github.com/rust-lang/crates.io-index" 9639 - checksum = "15291287e9bff1bc6f9ff3409ed9af665bec7a5fc8ac079ea96be07bca0e2668" 9640 - dependencies = [ 9641 - "thiserror-impl 2.0.0", 9642 - ] 9643 - 9644 - [[package]] 9645 - name = "thiserror-impl" 9646 - version = "1.0.68" 9647 - source = "registry+https://github.com/rust-lang/crates.io-index" 9648 - checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" 9649 - dependencies = [ 9650 - "proc-macro2", 9651 - "quote", 9652 - "syn 2.0.87", 9653 - ] 9654 - 9655 - [[package]] 9656 - name = "thiserror-impl" 9657 - version = "2.0.0" 9658 - source = "registry+https://github.com/rust-lang/crates.io-index" 9659 - checksum = "22efd00f33f93fa62848a7cab956c3d38c8d43095efda1decfc2b3a5dc0b8972" 9660 - dependencies = [ 9661 - "proc-macro2", 9662 - "quote", 9663 - "syn 2.0.87", 9664 - ] 9665 - 9666 - [[package]] 9667 - name = "tiff" 9668 - version = "0.9.1" 9669 - source = "registry+https://github.com/rust-lang/crates.io-index" 9670 - checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" 9671 - dependencies = [ 9672 - "flate2", 9673 - "jpeg-decoder", 9674 - "weezl", 9675 - ] 9676 - 9677 - [[package]] 9678 - name = "time" 9679 - version = "0.3.36" 9680 - source = "registry+https://github.com/rust-lang/crates.io-index" 9681 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 9682 - dependencies = [ 9683 - "deranged", 9684 - "itoa 1.0.11", 9685 - "libc", 9686 - "num-conv", 9687 - "num_threads", 9688 - "powerfmt", 9689 - "serde", 9690 - "time-core", 9691 - "time-macros", 9692 - ] 9693 - 9694 - [[package]] 9695 - name = "time-core" 9696 - version = "0.1.2" 9697 - source = "registry+https://github.com/rust-lang/crates.io-index" 9698 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 9699 - 9700 - [[package]] 9701 - name = "time-macros" 9702 - version = "0.2.18" 9703 - source = "registry+https://github.com/rust-lang/crates.io-index" 9704 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 9705 - dependencies = [ 9706 - "num-conv", 9707 - "time-core", 9708 - ] 9709 - 9710 - [[package]] 9711 - name = "tiny-skia" 9712 - version = "0.11.4" 9713 - source = "registry+https://github.com/rust-lang/crates.io-index" 9714 - checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 9715 - dependencies = [ 9716 - "arrayref", 9717 - "arrayvec", 9718 - "bytemuck", 9719 - "cfg-if", 9720 - "log", 9721 - "png", 9722 - "tiny-skia-path", 9723 - ] 9724 - 9725 - [[package]] 9726 - name = "tiny-skia-path" 9727 - version = "0.11.4" 9728 - source = "registry+https://github.com/rust-lang/crates.io-index" 9729 - checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" 9730 - dependencies = [ 9731 - "arrayref", 9732 - "bytemuck", 9733 - "strict-num", 9734 - ] 9735 - 9736 - [[package]] 9737 - name = "tiny_http" 9738 - version = "0.11.0" 9739 - source = "registry+https://github.com/rust-lang/crates.io-index" 9740 - checksum = "e0d6ef4e10d23c1efb862eecad25c5054429a71958b4eeef85eb5e7170b477ca" 9741 - dependencies = [ 9742 - "ascii", 9743 - "chunked_transfer", 9744 - "log", 9745 - "time", 9746 - "url", 9747 - ] 9748 - 9749 - [[package]] 9750 - name = "tinystr" 9751 - version = "0.7.6" 9752 - source = "registry+https://github.com/rust-lang/crates.io-index" 9753 - checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 9754 - dependencies = [ 9755 - "displaydoc", 9756 - "zerovec", 9757 - ] 9758 - 9759 - [[package]] 9760 - name = "tinyvec" 9761 - version = "1.8.0" 9762 - source = "registry+https://github.com/rust-lang/crates.io-index" 9763 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 9764 - dependencies = [ 9765 - "tinyvec_macros", 9766 - ] 9767 - 9768 - [[package]] 9769 - name = "tinyvec_macros" 9770 - version = "0.1.1" 9771 - source = "registry+https://github.com/rust-lang/crates.io-index" 9772 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 9773 - 9774 - [[package]] 9775 - name = "tokio" 9776 - version = "1.41.0" 9777 - source = "registry+https://github.com/rust-lang/crates.io-index" 9778 - checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" 9779 - dependencies = [ 9780 - "backtrace", 9781 - "bytes", 9782 - "libc", 9783 - "mio 1.0.2", 9784 - "parking_lot", 9785 - "pin-project-lite", 9786 - "signal-hook-registry", 9787 - "socket2", 9788 - "tokio-macros", 9789 - "windows-sys 0.52.0", 9790 - ] 9791 - 9792 - [[package]] 9793 - name = "tokio-macros" 9794 - version = "2.4.0" 9795 - source = "registry+https://github.com/rust-lang/crates.io-index" 9796 - checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 9797 - dependencies = [ 9798 - "proc-macro2", 9799 - "quote", 9800 - "syn 2.0.87", 9801 - ] 9802 - 9803 - [[package]] 9804 - name = "tokio-native-tls" 9805 - version = "0.3.1" 9806 - source = "registry+https://github.com/rust-lang/crates.io-index" 9807 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 9808 - dependencies = [ 9809 - "native-tls", 9810 - "tokio", 9811 - ] 9812 - 9813 - [[package]] 9814 - name = "tokio-rustls" 9815 - version = "0.24.1" 9816 - source = "registry+https://github.com/rust-lang/crates.io-index" 9817 - checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 9818 - dependencies = [ 9819 - "rustls 0.21.12", 9820 - "tokio", 9821 - ] 9822 - 9823 - [[package]] 9824 - name = "tokio-rustls" 9825 - version = "0.26.0" 9826 - source = "registry+https://github.com/rust-lang/crates.io-index" 9827 - checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 9828 - dependencies = [ 9829 - "rustls 0.23.13", 9830 - "rustls-pki-types", 9831 - "tokio", 9832 - ] 9833 - 9834 - [[package]] 9835 - name = "tokio-stream" 9836 - version = "0.1.16" 9837 - source = "registry+https://github.com/rust-lang/crates.io-index" 9838 - checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" 9839 - dependencies = [ 9840 - "futures-core", 9841 - "pin-project-lite", 9842 - "tokio", 9843 - "tokio-util", 9844 - ] 9845 - 9846 - [[package]] 9847 - name = "tokio-tungstenite" 9848 - version = "0.24.0" 9849 - source = "registry+https://github.com/rust-lang/crates.io-index" 9850 - checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" 9851 - dependencies = [ 9852 - "futures-util", 9853 - "log", 9854 - "tokio", 9855 - "tungstenite 0.24.0", 9856 - ] 9857 - 9858 - [[package]] 9859 - name = "tokio-util" 9860 - version = "0.7.12" 9861 - source = "registry+https://github.com/rust-lang/crates.io-index" 9862 - checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" 9863 - dependencies = [ 9864 - "bytes", 9865 - "futures-core", 9866 - "futures-io", 9867 - "futures-sink", 9868 - "pin-project-lite", 9869 - "tokio", 9870 - ] 9871 - 9872 - [[package]] 9873 - name = "toml" 9874 - version = "0.7.8" 9875 - source = "registry+https://github.com/rust-lang/crates.io-index" 9876 - checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 9877 - dependencies = [ 9878 - "serde", 9879 - "serde_spanned", 9880 - "toml_datetime", 9881 - "toml_edit 0.19.15", 9882 - ] 9883 - 9884 - [[package]] 9885 - name = "toml" 9886 - version = "0.8.19" 9887 - source = "registry+https://github.com/rust-lang/crates.io-index" 9888 - checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" 9889 - dependencies = [ 9890 - "indexmap 2.6.0", 9891 - "serde", 9892 - "serde_spanned", 9893 - "toml_datetime", 9894 - "toml_edit 0.22.22", 9895 - ] 9896 - 9897 - [[package]] 9898 - name = "toml_datetime" 9899 - version = "0.6.8" 9900 - source = "registry+https://github.com/rust-lang/crates.io-index" 9901 - checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" 9902 - dependencies = [ 9903 - "serde", 9904 - ] 9905 - 9906 - [[package]] 9907 - name = "toml_edit" 9908 - version = "0.19.15" 9909 - source = "registry+https://github.com/rust-lang/crates.io-index" 9910 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 9911 - dependencies = [ 9912 - "indexmap 2.6.0", 9913 - "serde", 9914 - "serde_spanned", 9915 - "toml_datetime", 9916 - "winnow 0.5.40", 9917 - ] 9918 - 9919 - [[package]] 9920 - name = "toml_edit" 9921 - version = "0.20.7" 9922 - source = "registry+https://github.com/rust-lang/crates.io-index" 9923 - checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 9924 - dependencies = [ 9925 - "indexmap 2.6.0", 9926 - "toml_datetime", 9927 - "winnow 0.5.40", 9928 - ] 9929 - 9930 - [[package]] 9931 - name = "toml_edit" 9932 - version = "0.22.22" 9933 - source = "registry+https://github.com/rust-lang/crates.io-index" 9934 - checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 9935 - dependencies = [ 9936 - "indexmap 2.6.0", 9937 - "serde", 9938 - "serde_spanned", 9939 - "toml_datetime", 9940 - "winnow 0.6.20", 9941 - ] 9942 - 9943 - [[package]] 9944 - name = "tower" 9945 - version = "0.4.13" 9946 - source = "registry+https://github.com/rust-lang/crates.io-index" 9947 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 9948 - dependencies = [ 9949 - "futures-core", 9950 - "futures-util", 9951 - "pin-project", 9952 - "pin-project-lite", 9953 - "tower-layer", 9954 - "tower-service", 9955 - "tracing", 9956 - ] 9957 - 9958 - [[package]] 9959 - name = "tower" 9960 - version = "0.5.1" 9961 - source = "registry+https://github.com/rust-lang/crates.io-index" 9962 - checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" 9963 - dependencies = [ 9964 - "futures-core", 9965 - "futures-util", 9966 - "pin-project-lite", 9967 - "sync_wrapper 0.1.2", 9968 - "tokio", 9969 - "tower-layer", 9970 - "tower-service", 9971 - "tracing", 9972 - ] 9973 - 9974 - [[package]] 9975 - name = "tower-layer" 9976 - version = "0.3.3" 9977 - source = "registry+https://github.com/rust-lang/crates.io-index" 9978 - checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 9979 - 9980 - [[package]] 9981 - name = "tower-service" 9982 - version = "0.3.3" 9983 - source = "registry+https://github.com/rust-lang/crates.io-index" 9984 - checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 9985 - 9986 - [[package]] 9987 - name = "tracing" 9988 - version = "0.1.40" 9989 - source = "registry+https://github.com/rust-lang/crates.io-index" 9990 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 9991 - dependencies = [ 9992 - "log", 9993 - "pin-project-lite", 9994 - "tracing-attributes", 9995 - "tracing-core", 9996 - ] 9997 - 9998 - [[package]] 9999 - name = "tracing-attributes" 10000 - version = "0.1.27" 10001 - source = "registry+https://github.com/rust-lang/crates.io-index" 10002 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 10003 - dependencies = [ 10004 - "proc-macro2", 10005 - "quote", 10006 - "syn 2.0.87", 10007 - ] 10008 - 10009 - [[package]] 10010 - name = "tracing-core" 10011 - version = "0.1.32" 10012 - source = "registry+https://github.com/rust-lang/crates.io-index" 10013 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 10014 - dependencies = [ 10015 - "once_cell", 10016 - ] 10017 - 10018 - [[package]] 10019 - name = "tray-icon" 10020 - version = "0.19.0" 10021 - source = "registry+https://github.com/rust-lang/crates.io-index" 10022 - checksum = "533fc2d4105e0e3d96ce1c71f2d308c9fbbe2ef9c587cab63dd627ab5bde218f" 10023 - dependencies = [ 10024 - "core-graphics 0.24.0", 10025 - "crossbeam-channel", 10026 - "dirs", 10027 - "libappindicator", 10028 - "muda", 10029 - "objc2", 10030 - "objc2-app-kit", 10031 - "objc2-foundation", 10032 - "once_cell", 10033 - "png", 10034 - "serde", 10035 - "thiserror 1.0.68", 10036 - "windows-sys 0.59.0", 10037 - ] 10038 - 10039 - [[package]] 10040 - name = "try-lock" 10041 - version = "0.2.5" 10042 - source = "registry+https://github.com/rust-lang/crates.io-index" 10043 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 10044 - 10045 - [[package]] 10046 - name = "ttf-parser" 10047 - version = "0.24.1" 10048 - source = "registry+https://github.com/rust-lang/crates.io-index" 10049 - checksum = "5be21190ff5d38e8b4a2d3b6a3ae57f612cc39c96e83cedeaf7abc338a8bac4a" 10050 - dependencies = [ 10051 - "core_maths", 10052 - ] 10053 - 10054 - [[package]] 10055 - name = "tungstenite" 10056 - version = "0.21.0" 10057 - source = "registry+https://github.com/rust-lang/crates.io-index" 10058 - checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" 10059 - dependencies = [ 10060 - "byteorder", 10061 - "bytes", 10062 - "data-encoding", 10063 - "http 1.1.0", 10064 - "httparse", 10065 - "log", 10066 - "rand 0.8.5", 10067 - "rustls 0.22.4", 10068 - "rustls-native-certs 0.7.3", 10069 - "rustls-pki-types", 10070 - "sha1", 10071 - "thiserror 1.0.68", 10072 - "url", 10073 - "utf-8", 10074 - ] 10075 - 10076 - [[package]] 10077 - name = "tungstenite" 10078 - version = "0.24.0" 10079 - source = "registry+https://github.com/rust-lang/crates.io-index" 10080 - checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" 10081 - dependencies = [ 10082 - "byteorder", 10083 - "bytes", 10084 - "data-encoding", 10085 - "http 1.1.0", 10086 - "httparse", 10087 - "log", 10088 - "rand 0.8.5", 10089 - "sha1", 10090 - "thiserror 1.0.68", 10091 - "utf-8", 10092 - ] 10093 - 10094 - [[package]] 10095 - name = "twofish" 10096 - version = "0.7.1" 10097 - source = "registry+https://github.com/rust-lang/crates.io-index" 10098 - checksum = "a78e83a30223c757c3947cd144a31014ff04298d8719ae10d03c31c0448c8013" 10099 - dependencies = [ 10100 - "cipher", 10101 - ] 10102 - 10103 - [[package]] 10104 - name = "twox-hash" 10105 - version = "1.6.3" 10106 - source = "registry+https://github.com/rust-lang/crates.io-index" 10107 - checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 10108 - dependencies = [ 10109 - "cfg-if", 10110 - "static_assertions", 10111 - ] 10112 - 10113 - [[package]] 10114 - name = "typeid" 10115 - version = "1.0.2" 10116 - source = "registry+https://github.com/rust-lang/crates.io-index" 10117 - checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e" 10118 - 10119 - [[package]] 10120 - name = "typenum" 10121 - version = "1.17.0" 10122 - source = "registry+https://github.com/rust-lang/crates.io-index" 10123 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 10124 - 10125 - [[package]] 10126 - name = "typewit" 10127 - version = "1.9.0" 10128 - source = "registry+https://github.com/rust-lang/crates.io-index" 10129 - checksum = "c6fb9ae6a3cafaf0a5d14c2302ca525f9ae8e07a0f0e6949de88d882c37a6e24" 10130 - dependencies = [ 10131 - "typewit_proc_macros", 10132 - ] 10133 - 10134 - [[package]] 10135 - name = "typewit_proc_macros" 10136 - version = "1.8.1" 10137 - source = "registry+https://github.com/rust-lang/crates.io-index" 10138 - checksum = "e36a83ea2b3c704935a01b4642946aadd445cea40b10935e3f8bd8052b8193d6" 10139 - 10140 - [[package]] 10141 - name = "ucd-trie" 10142 - version = "0.1.7" 10143 - source = "registry+https://github.com/rust-lang/crates.io-index" 10144 - checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" 10145 - 10146 - [[package]] 10147 - name = "uname" 10148 - version = "0.1.1" 10149 - source = "registry+https://github.com/rust-lang/crates.io-index" 10150 - checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8" 10151 - dependencies = [ 10152 - "libc", 10153 - ] 10154 - 10155 - [[package]] 10156 - name = "unarray" 10157 - version = "0.1.4" 10158 - source = "registry+https://github.com/rust-lang/crates.io-index" 10159 - checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 10160 - 10161 - [[package]] 10162 - name = "uncased" 10163 - version = "0.9.10" 10164 - source = "registry+https://github.com/rust-lang/crates.io-index" 10165 - checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697" 10166 - dependencies = [ 10167 - "version_check", 10168 - ] 10169 - 10170 - [[package]] 10171 - name = "unic-char-property" 10172 - version = "0.9.0" 10173 - source = "registry+https://github.com/rust-lang/crates.io-index" 10174 - checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 10175 - dependencies = [ 10176 - "unic-char-range", 10177 - ] 10178 - 10179 - [[package]] 10180 - name = "unic-char-range" 10181 - version = "0.9.0" 10182 - source = "registry+https://github.com/rust-lang/crates.io-index" 10183 - checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 10184 - 10185 - [[package]] 10186 - name = "unic-common" 10187 - version = "0.9.0" 10188 - source = "registry+https://github.com/rust-lang/crates.io-index" 10189 - checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 10190 - 10191 - [[package]] 10192 - name = "unic-ucd-ident" 10193 - version = "0.9.0" 10194 - source = "registry+https://github.com/rust-lang/crates.io-index" 10195 - checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" 10196 - dependencies = [ 10197 - "unic-char-property", 10198 - "unic-char-range", 10199 - "unic-ucd-version", 10200 - ] 10201 - 10202 - [[package]] 10203 - name = "unic-ucd-version" 10204 - version = "0.9.0" 10205 - source = "registry+https://github.com/rust-lang/crates.io-index" 10206 - checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 10207 - dependencies = [ 10208 - "unic-common", 10209 - ] 10210 - 10211 - [[package]] 10212 - name = "unicode-bidi" 10213 - version = "0.3.15" 10214 - source = "registry+https://github.com/rust-lang/crates.io-index" 10215 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 10216 - 10217 - [[package]] 10218 - name = "unicode-bidi-mirroring" 10219 - version = "0.3.0" 10220 - source = "registry+https://github.com/rust-lang/crates.io-index" 10221 - checksum = "64af057ad7466495ca113126be61838d8af947f41d93a949980b2389a118082f" 10222 - 10223 - [[package]] 10224 - name = "unicode-ccc" 10225 - version = "0.3.0" 10226 - source = "registry+https://github.com/rust-lang/crates.io-index" 10227 - checksum = "260bc6647b3893a9a90668360803a15f96b85a5257b1c3a0c3daf6ae2496de42" 10228 - 10229 - [[package]] 10230 - name = "unicode-id-start" 10231 - version = "1.3.0" 10232 - source = "registry+https://github.com/rust-lang/crates.io-index" 10233 - checksum = "97e2a3c5fc9de285c0e805d98eba666adb4b2d9e1049ce44821ff7707cc34e91" 10234 - 10235 - [[package]] 10236 - name = "unicode-ident" 10237 - version = "1.0.13" 10238 - source = "registry+https://github.com/rust-lang/crates.io-index" 10239 - checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 10240 - 10241 - [[package]] 10242 - name = "unicode-linebreak" 10243 - version = "0.1.5" 10244 - source = "registry+https://github.com/rust-lang/crates.io-index" 10245 - checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" 10246 - 10247 - [[package]] 10248 - name = "unicode-properties" 10249 - version = "0.1.3" 10250 - source = "registry+https://github.com/rust-lang/crates.io-index" 10251 - checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 10252 - 10253 - [[package]] 10254 - name = "unicode-script" 10255 - version = "0.5.7" 10256 - source = "registry+https://github.com/rust-lang/crates.io-index" 10257 - checksum = "9fb421b350c9aff471779e262955939f565ec18b86c15364e6bdf0d662ca7c1f" 10258 - 10259 - [[package]] 10260 - name = "unicode-segmentation" 10261 - version = "1.12.0" 10262 - source = "registry+https://github.com/rust-lang/crates.io-index" 10263 - checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 10264 - 10265 - [[package]] 10266 - name = "unicode-vo" 10267 - version = "0.1.0" 10268 - source = "registry+https://github.com/rust-lang/crates.io-index" 10269 - checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" 10270 - 10271 - [[package]] 10272 - name = "unicode-width" 10273 - version = "0.1.14" 10274 - source = "registry+https://github.com/rust-lang/crates.io-index" 10275 - checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 10276 - 10277 - [[package]] 10278 - name = "unicode-xid" 10279 - version = "0.2.6" 10280 - source = "registry+https://github.com/rust-lang/crates.io-index" 10281 - checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 10282 - 10283 - [[package]] 10284 - name = "universal-hash" 10285 - version = "0.5.1" 10286 - source = "registry+https://github.com/rust-lang/crates.io-index" 10287 - checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 10288 - dependencies = [ 10289 - "crypto-common", 10290 - "subtle", 10291 - ] 10292 - 10293 - [[package]] 10294 - name = "unsafe-libyaml" 10295 - version = "0.2.11" 10296 - source = "registry+https://github.com/rust-lang/crates.io-index" 10297 - checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 10298 - 10299 - [[package]] 10300 - name = "untrusted" 10301 - version = "0.9.0" 10302 - source = "registry+https://github.com/rust-lang/crates.io-index" 10303 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 10304 - 10305 - [[package]] 10306 - name = "ureq" 10307 - version = "2.10.1" 10308 - source = "registry+https://github.com/rust-lang/crates.io-index" 10309 - checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a" 10310 - dependencies = [ 10311 - "base64 0.22.1", 10312 - "flate2", 10313 - "log", 10314 - "native-tls", 10315 - "once_cell", 10316 - "rustls 0.23.13", 10317 - "rustls-pki-types", 10318 - "socks", 10319 - "url", 10320 - "webpki-roots 0.26.6", 10321 - ] 10322 - 10323 - [[package]] 10324 - name = "url" 10325 - version = "2.5.3" 10326 - source = "registry+https://github.com/rust-lang/crates.io-index" 10327 - checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada" 10328 - dependencies = [ 10329 - "form_urlencoded", 10330 - "idna", 10331 - "percent-encoding", 10332 - "serde", 10333 - ] 10334 - 10335 - [[package]] 10336 - name = "urlencoding" 10337 - version = "2.1.3" 10338 - source = "registry+https://github.com/rust-lang/crates.io-index" 10339 - checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 10340 - 10341 - [[package]] 10342 - name = "urlpattern" 10343 - version = "0.3.0" 10344 - source = "registry+https://github.com/rust-lang/crates.io-index" 10345 - checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" 10346 - dependencies = [ 10347 - "regex", 10348 - "serde", 10349 - "unic-ucd-ident", 10350 - "url", 10351 - ] 10352 - 10353 - [[package]] 10354 - name = "usvg" 10355 - version = "0.43.0" 10356 - source = "registry+https://github.com/rust-lang/crates.io-index" 10357 - checksum = "6803057b5cbb426e9fb8ce2216f3a9b4ca1dd2c705ba3cbebc13006e437735fd" 10358 - dependencies = [ 10359 - "base64 0.22.1", 10360 - "data-url", 10361 - "flate2", 10362 - "fontdb", 10363 - "imagesize", 10364 - "kurbo", 10365 - "log", 10366 - "pico-args 0.5.0", 10367 - "roxmltree", 10368 - "rustybuzz", 10369 - "simplecss", 10370 - "siphasher 1.0.1", 10371 - "strict-num", 10372 - "svgtypes", 10373 - "tiny-skia-path", 10374 - "unicode-bidi", 10375 - "unicode-script", 10376 - "unicode-vo", 10377 - "xmlwriter", 10378 - ] 10379 - 10380 - [[package]] 10381 - name = "utf-8" 10382 - version = "0.7.6" 10383 - source = "registry+https://github.com/rust-lang/crates.io-index" 10384 - checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 10385 - 10386 - [[package]] 10387 - name = "utf16_iter" 10388 - version = "1.0.5" 10389 - source = "registry+https://github.com/rust-lang/crates.io-index" 10390 - checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 10391 - 10392 - [[package]] 10393 - name = "utf8-width" 10394 - version = "0.1.7" 10395 - source = "registry+https://github.com/rust-lang/crates.io-index" 10396 - checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 10397 - 10398 - [[package]] 10399 - name = "utf8_iter" 10400 - version = "1.0.4" 10401 - source = "registry+https://github.com/rust-lang/crates.io-index" 10402 - checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 10403 - 10404 - [[package]] 10405 - name = "utf8parse" 10406 - version = "0.2.2" 10407 - source = "registry+https://github.com/rust-lang/crates.io-index" 10408 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 10409 - 10410 - [[package]] 10411 - name = "uuid" 10412 - version = "1.11.0" 10413 - source = "registry+https://github.com/rust-lang/crates.io-index" 10414 - checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" 10415 - dependencies = [ 10416 - "getrandom 0.2.15", 10417 - "serde", 10418 - "sha1_smol", 10419 - ] 10420 - 10421 - [[package]] 10422 - name = "v_frame" 10423 - version = "0.3.8" 10424 - source = "registry+https://github.com/rust-lang/crates.io-index" 10425 - checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b" 10426 - dependencies = [ 10427 - "aligned-vec", 10428 - "num-traits", 10429 - "wasm-bindgen", 10430 - ] 10431 - 10432 - [[package]] 10433 - name = "value-bag" 10434 - version = "1.9.0" 10435 - source = "registry+https://github.com/rust-lang/crates.io-index" 10436 - checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" 10437 - dependencies = [ 10438 - "value-bag-serde1", 10439 - "value-bag-sval2", 10440 - ] 10441 - 10442 - [[package]] 10443 - name = "value-bag-serde1" 10444 - version = "1.9.0" 10445 - source = "registry+https://github.com/rust-lang/crates.io-index" 10446 - checksum = "ccacf50c5cb077a9abb723c5bcb5e0754c1a433f1e1de89edc328e2760b6328b" 10447 - dependencies = [ 10448 - "erased-serde", 10449 - "serde", 10450 - "serde_fmt", 10451 - ] 10452 - 10453 - [[package]] 10454 - name = "value-bag-sval2" 10455 - version = "1.9.0" 10456 - source = "registry+https://github.com/rust-lang/crates.io-index" 10457 - checksum = "1785bae486022dfb9703915d42287dcb284c1ee37bd1080eeba78cc04721285b" 10458 - dependencies = [ 10459 - "sval", 10460 - "sval_buffer", 10461 - "sval_dynamic", 10462 - "sval_fmt", 10463 - "sval_json", 10464 - "sval_ref", 10465 - "sval_serde", 10466 - ] 10467 - 10468 - [[package]] 10469 - name = "vcpkg" 10470 - version = "0.2.15" 10471 - source = "registry+https://github.com/rust-lang/crates.io-index" 10472 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 10473 - 10474 - [[package]] 10475 - name = "version-compare" 10476 - version = "0.2.0" 10477 - source = "registry+https://github.com/rust-lang/crates.io-index" 10478 - checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 10479 - 10480 - [[package]] 10481 - name = "version_check" 10482 - version = "0.9.5" 10483 - source = "registry+https://github.com/rust-lang/crates.io-index" 10484 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 10485 - 10486 - [[package]] 10487 - name = "vlq" 10488 - version = "0.5.1" 10489 - source = "registry+https://github.com/rust-lang/crates.io-index" 10490 - checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff" 10491 - 10492 - [[package]] 10493 - name = "vsimd" 10494 - version = "0.8.0" 10495 - source = "registry+https://github.com/rust-lang/crates.io-index" 10496 - checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" 10497 - 10498 - [[package]] 10499 - name = "vswhom" 10500 - version = "0.1.0" 10501 - source = "registry+https://github.com/rust-lang/crates.io-index" 10502 - checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 10503 - dependencies = [ 10504 - "libc", 10505 - "vswhom-sys", 10506 - ] 10507 - 10508 - [[package]] 10509 - name = "vswhom-sys" 10510 - version = "0.1.2" 10511 - source = "registry+https://github.com/rust-lang/crates.io-index" 10512 - checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18" 10513 - dependencies = [ 10514 - "cc", 10515 - "libc", 10516 - ] 10517 - 10518 - [[package]] 10519 - name = "wait-timeout" 10520 - version = "0.2.0" 10521 - source = "registry+https://github.com/rust-lang/crates.io-index" 10522 - checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 10523 - dependencies = [ 10524 - "libc", 10525 - ] 10526 - 10527 - [[package]] 10528 - name = "walkdir" 10529 - version = "2.5.0" 10530 - source = "registry+https://github.com/rust-lang/crates.io-index" 10531 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 10532 - dependencies = [ 10533 - "same-file", 10534 - "winapi-util", 10535 - ] 10536 - 10537 - [[package]] 10538 - name = "want" 10539 - version = "0.3.1" 10540 - source = "registry+https://github.com/rust-lang/crates.io-index" 10541 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 10542 - dependencies = [ 10543 - "try-lock", 10544 - ] 10545 - 10546 - [[package]] 10547 - name = "wasi" 10548 - version = "0.9.0+wasi-snapshot-preview1" 10549 - source = "registry+https://github.com/rust-lang/crates.io-index" 10550 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 10551 - 10552 - [[package]] 10553 - name = "wasi" 10554 - version = "0.11.0+wasi-snapshot-preview1" 10555 - source = "registry+https://github.com/rust-lang/crates.io-index" 10556 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 10557 - 10558 - [[package]] 10559 - name = "wasm-bindgen" 10560 - version = "0.2.93" 10561 - source = "registry+https://github.com/rust-lang/crates.io-index" 10562 - checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" 10563 - dependencies = [ 10564 - "cfg-if", 10565 - "once_cell", 10566 - "wasm-bindgen-macro", 10567 - ] 10568 - 10569 - [[package]] 10570 - name = "wasm-bindgen-backend" 10571 - version = "0.2.93" 10572 - source = "registry+https://github.com/rust-lang/crates.io-index" 10573 - checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" 10574 - dependencies = [ 10575 - "bumpalo", 10576 - "log", 10577 - "once_cell", 10578 - "proc-macro2", 10579 - "quote", 10580 - "syn 2.0.87", 10581 - "wasm-bindgen-shared", 10582 - ] 10583 - 10584 - [[package]] 10585 - name = "wasm-bindgen-futures" 10586 - version = "0.4.43" 10587 - source = "registry+https://github.com/rust-lang/crates.io-index" 10588 - checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" 10589 - dependencies = [ 10590 - "cfg-if", 10591 - "js-sys", 10592 - "wasm-bindgen", 10593 - "web-sys", 10594 - ] 10595 - 10596 - [[package]] 10597 - name = "wasm-bindgen-macro" 10598 - version = "0.2.93" 10599 - source = "registry+https://github.com/rust-lang/crates.io-index" 10600 - checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" 10601 - dependencies = [ 10602 - "quote", 10603 - "wasm-bindgen-macro-support", 10604 - ] 10605 - 10606 - [[package]] 10607 - name = "wasm-bindgen-macro-support" 10608 - version = "0.2.93" 10609 - source = "registry+https://github.com/rust-lang/crates.io-index" 10610 - checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" 10611 - dependencies = [ 10612 - "proc-macro2", 10613 - "quote", 10614 - "syn 2.0.87", 10615 - "wasm-bindgen-backend", 10616 - "wasm-bindgen-shared", 10617 - ] 10618 - 10619 - [[package]] 10620 - name = "wasm-bindgen-shared" 10621 - version = "0.2.93" 10622 - source = "registry+https://github.com/rust-lang/crates.io-index" 10623 - checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" 10624 - 10625 - [[package]] 10626 - name = "wasm-streams" 10627 - version = "0.4.1" 10628 - source = "registry+https://github.com/rust-lang/crates.io-index" 10629 - checksum = "4e072d4e72f700fb3443d8fe94a39315df013eef1104903cdb0a2abd322bbecd" 10630 - dependencies = [ 10631 - "futures-util", 10632 - "js-sys", 10633 - "wasm-bindgen", 10634 - "wasm-bindgen-futures", 10635 - "web-sys", 10636 - ] 10637 - 10638 - [[package]] 10639 - name = "web-sys" 10640 - version = "0.3.70" 10641 - source = "registry+https://github.com/rust-lang/crates.io-index" 10642 - checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" 10643 - dependencies = [ 10644 - "js-sys", 10645 - "wasm-bindgen", 10646 - ] 10647 - 10648 - [[package]] 10649 - name = "webkit2gtk" 10650 - version = "2.0.1" 10651 - source = "registry+https://github.com/rust-lang/crates.io-index" 10652 - checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" 10653 - dependencies = [ 10654 - "bitflags 1.3.2", 10655 - "cairo-rs", 10656 - "gdk", 10657 - "gdk-sys", 10658 - "gio", 10659 - "gio-sys", 10660 - "glib", 10661 - "glib-sys", 10662 - "gobject-sys", 10663 - "gtk", 10664 - "gtk-sys", 10665 - "javascriptcore-rs", 10666 - "libc", 10667 - "once_cell", 10668 - "soup3", 10669 - "webkit2gtk-sys", 10670 - ] 10671 - 10672 - [[package]] 10673 - name = "webkit2gtk-sys" 10674 - version = "2.0.1" 10675 - source = "registry+https://github.com/rust-lang/crates.io-index" 10676 - checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" 10677 - dependencies = [ 10678 - "bitflags 1.3.2", 10679 - "cairo-sys-rs", 10680 - "gdk-sys", 10681 - "gio-sys", 10682 - "glib-sys", 10683 - "gobject-sys", 10684 - "gtk-sys", 10685 - "javascriptcore-rs-sys", 10686 - "libc", 10687 - "pkg-config", 10688 - "soup3-sys", 10689 - "system-deps", 10690 - ] 10691 - 10692 - [[package]] 10693 - name = "webpki-roots" 10694 - version = "0.25.4" 10695 - source = "registry+https://github.com/rust-lang/crates.io-index" 10696 - checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 10697 - 10698 - [[package]] 10699 - name = "webpki-roots" 10700 - version = "0.26.6" 10701 - source = "registry+https://github.com/rust-lang/crates.io-index" 10702 - checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" 10703 - dependencies = [ 10704 - "rustls-pki-types", 10705 - ] 10706 - 10707 - [[package]] 10708 - name = "webview2-com" 10709 - version = "0.33.0" 10710 - source = "registry+https://github.com/rust-lang/crates.io-index" 10711 - checksum = "6f61ff3d9d0ee4efcb461b14eb3acfda2702d10dc329f339303fc3e57215ae2c" 10712 - dependencies = [ 10713 - "webview2-com-macros", 10714 - "webview2-com-sys", 10715 - "windows", 10716 - "windows-core 0.58.0", 10717 - "windows-implement", 10718 - "windows-interface", 10719 - ] 10720 - 10721 - [[package]] 10722 - name = "webview2-com-macros" 10723 - version = "0.8.0" 10724 - source = "registry+https://github.com/rust-lang/crates.io-index" 10725 - checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" 10726 - dependencies = [ 10727 - "proc-macro2", 10728 - "quote", 10729 - "syn 2.0.87", 10730 - ] 10731 - 10732 - [[package]] 10733 - name = "webview2-com-sys" 10734 - version = "0.33.0" 10735 - source = "registry+https://github.com/rust-lang/crates.io-index" 10736 - checksum = "a3a3e2eeb58f82361c93f9777014668eb3d07e7d174ee4c819575a9208011886" 10737 - dependencies = [ 10738 - "thiserror 1.0.68", 10739 - "windows", 10740 - "windows-core 0.58.0", 10741 - ] 10742 - 10743 - [[package]] 10744 - name = "weezl" 10745 - version = "0.1.8" 10746 - source = "registry+https://github.com/rust-lang/crates.io-index" 10747 - checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" 10748 - 10749 - [[package]] 10750 - name = "which" 10751 - version = "4.4.2" 10752 - source = "registry+https://github.com/rust-lang/crates.io-index" 10753 - checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 10754 - dependencies = [ 10755 - "either", 10756 - "home", 10757 - "once_cell", 10758 - "rustix 0.38.37", 10759 - ] 10760 - 10761 - [[package]] 10762 - name = "which" 10763 - version = "6.0.3" 10764 - source = "registry+https://github.com/rust-lang/crates.io-index" 10765 - checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" 10766 - dependencies = [ 10767 - "either", 10768 - "home", 10769 - "rustix 0.38.37", 10770 - "winsafe", 10771 - ] 10772 - 10773 - [[package]] 10774 - name = "widestring" 10775 - version = "1.1.0" 10776 - source = "registry+https://github.com/rust-lang/crates.io-index" 10777 - checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 10778 - 10779 - [[package]] 10780 - name = "winapi" 10781 - version = "0.3.9" 10782 - source = "registry+https://github.com/rust-lang/crates.io-index" 10783 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 10784 - dependencies = [ 10785 - "winapi-i686-pc-windows-gnu", 10786 - "winapi-x86_64-pc-windows-gnu", 10787 - ] 10788 - 10789 - [[package]] 10790 - name = "winapi-i686-pc-windows-gnu" 10791 - version = "0.4.0" 10792 - source = "registry+https://github.com/rust-lang/crates.io-index" 10793 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 10794 - 10795 - [[package]] 10796 - name = "winapi-util" 10797 - version = "0.1.9" 10798 - source = "registry+https://github.com/rust-lang/crates.io-index" 10799 - checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 10800 - dependencies = [ 10801 - "windows-sys 0.59.0", 10802 - ] 10803 - 10804 - [[package]] 10805 - name = "winapi-x86_64-pc-windows-gnu" 10806 - version = "0.4.0" 10807 - source = "registry+https://github.com/rust-lang/crates.io-index" 10808 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 10809 - 10810 - [[package]] 10811 - name = "window-vibrancy" 10812 - version = "0.5.2" 10813 - source = "registry+https://github.com/rust-lang/crates.io-index" 10814 - checksum = "3ea403deff7b51fff19e261330f71608ff2cdef5721d72b64180bb95be7c4150" 10815 - dependencies = [ 10816 - "objc2", 10817 - "objc2-app-kit", 10818 - "objc2-foundation", 10819 - "raw-window-handle", 10820 - "windows-sys 0.59.0", 10821 - "windows-version", 10822 - ] 10823 - 10824 - [[package]] 10825 - name = "windows" 10826 - version = "0.58.0" 10827 - source = "registry+https://github.com/rust-lang/crates.io-index" 10828 - checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" 10829 - dependencies = [ 10830 - "windows-core 0.58.0", 10831 - "windows-targets 0.52.6", 10832 - ] 10833 - 10834 - [[package]] 10835 - name = "windows-core" 10836 - version = "0.52.0" 10837 - source = "registry+https://github.com/rust-lang/crates.io-index" 10838 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 10839 - dependencies = [ 10840 - "windows-targets 0.52.6", 10841 - ] 10842 - 10843 - [[package]] 10844 - name = "windows-core" 10845 - version = "0.58.0" 10846 - source = "registry+https://github.com/rust-lang/crates.io-index" 10847 - checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" 10848 - dependencies = [ 10849 - "windows-implement", 10850 - "windows-interface", 10851 - "windows-result", 10852 - "windows-strings 0.1.0", 10853 - "windows-targets 0.52.6", 10854 - ] 10855 - 10856 - [[package]] 10857 - name = "windows-implement" 10858 - version = "0.58.0" 10859 - source = "registry+https://github.com/rust-lang/crates.io-index" 10860 - checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" 10861 - dependencies = [ 10862 - "proc-macro2", 10863 - "quote", 10864 - "syn 2.0.87", 10865 - ] 10866 - 10867 - [[package]] 10868 - name = "windows-interface" 10869 - version = "0.58.0" 10870 - source = "registry+https://github.com/rust-lang/crates.io-index" 10871 - checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" 10872 - dependencies = [ 10873 - "proc-macro2", 10874 - "quote", 10875 - "syn 2.0.87", 10876 - ] 10877 - 10878 - [[package]] 10879 - name = "windows-registry" 10880 - version = "0.2.0" 10881 - source = "registry+https://github.com/rust-lang/crates.io-index" 10882 - checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" 10883 - dependencies = [ 10884 - "windows-result", 10885 - "windows-strings 0.1.0", 10886 - "windows-targets 0.52.6", 10887 - ] 10888 - 10889 - [[package]] 10890 - name = "windows-registry" 10891 - version = "0.3.0" 10892 - source = "registry+https://github.com/rust-lang/crates.io-index" 10893 - checksum = "bafa604f2104cf5ae2cc2db1dee84b7e6a5d11b05f737b60def0ffdc398cbc0a" 10894 - dependencies = [ 10895 - "windows-result", 10896 - "windows-strings 0.2.0", 10897 - "windows-targets 0.52.6", 10898 - ] 10899 - 10900 - [[package]] 10901 - name = "windows-result" 10902 - version = "0.2.0" 10903 - source = "registry+https://github.com/rust-lang/crates.io-index" 10904 - checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" 10905 - dependencies = [ 10906 - "windows-targets 0.52.6", 10907 - ] 10908 - 10909 - [[package]] 10910 - name = "windows-strings" 10911 - version = "0.1.0" 10912 - source = "registry+https://github.com/rust-lang/crates.io-index" 10913 - checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" 10914 - dependencies = [ 10915 - "windows-result", 10916 - "windows-targets 0.52.6", 10917 - ] 10918 - 10919 - [[package]] 10920 - name = "windows-strings" 10921 - version = "0.2.0" 10922 - source = "registry+https://github.com/rust-lang/crates.io-index" 10923 - checksum = "978d65aedf914c664c510d9de43c8fd85ca745eaff1ed53edf409b479e441663" 10924 - dependencies = [ 10925 - "windows-targets 0.52.6", 10926 - ] 10927 - 10928 - [[package]] 10929 - name = "windows-sys" 10930 - version = "0.45.0" 10931 - source = "registry+https://github.com/rust-lang/crates.io-index" 10932 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 10933 - dependencies = [ 10934 - "windows-targets 0.42.2", 10935 - ] 10936 - 10937 - [[package]] 10938 - name = "windows-sys" 10939 - version = "0.48.0" 10940 - source = "registry+https://github.com/rust-lang/crates.io-index" 10941 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 10942 - dependencies = [ 10943 - "windows-targets 0.48.5", 10944 - ] 10945 - 10946 - [[package]] 10947 - name = "windows-sys" 10948 - version = "0.52.0" 10949 - source = "registry+https://github.com/rust-lang/crates.io-index" 10950 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 10951 - dependencies = [ 10952 - "windows-targets 0.52.6", 10953 - ] 10954 - 10955 - [[package]] 10956 - name = "windows-sys" 10957 - version = "0.59.0" 10958 - source = "registry+https://github.com/rust-lang/crates.io-index" 10959 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 10960 - dependencies = [ 10961 - "windows-targets 0.52.6", 10962 - ] 10963 - 10964 - [[package]] 10965 - name = "windows-targets" 10966 - version = "0.42.2" 10967 - source = "registry+https://github.com/rust-lang/crates.io-index" 10968 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 10969 - dependencies = [ 10970 - "windows_aarch64_gnullvm 0.42.2", 10971 - "windows_aarch64_msvc 0.42.2", 10972 - "windows_i686_gnu 0.42.2", 10973 - "windows_i686_msvc 0.42.2", 10974 - "windows_x86_64_gnu 0.42.2", 10975 - "windows_x86_64_gnullvm 0.42.2", 10976 - "windows_x86_64_msvc 0.42.2", 10977 - ] 10978 - 10979 - [[package]] 10980 - name = "windows-targets" 10981 - version = "0.48.5" 10982 - source = "registry+https://github.com/rust-lang/crates.io-index" 10983 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 10984 - dependencies = [ 10985 - "windows_aarch64_gnullvm 0.48.5", 10986 - "windows_aarch64_msvc 0.48.5", 10987 - "windows_i686_gnu 0.48.5", 10988 - "windows_i686_msvc 0.48.5", 10989 - "windows_x86_64_gnu 0.48.5", 10990 - "windows_x86_64_gnullvm 0.48.5", 10991 - "windows_x86_64_msvc 0.48.5", 10992 - ] 10993 - 10994 - [[package]] 10995 - name = "windows-targets" 10996 - version = "0.52.6" 10997 - source = "registry+https://github.com/rust-lang/crates.io-index" 10998 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 10999 - dependencies = [ 11000 - "windows_aarch64_gnullvm 0.52.6", 11001 - "windows_aarch64_msvc 0.52.6", 11002 - "windows_i686_gnu 0.52.6", 11003 - "windows_i686_gnullvm", 11004 - "windows_i686_msvc 0.52.6", 11005 - "windows_x86_64_gnu 0.52.6", 11006 - "windows_x86_64_gnullvm 0.52.6", 11007 - "windows_x86_64_msvc 0.52.6", 11008 - ] 11009 - 11010 - [[package]] 11011 - name = "windows-version" 11012 - version = "0.1.1" 11013 - source = "registry+https://github.com/rust-lang/crates.io-index" 11014 - checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515" 11015 - dependencies = [ 11016 - "windows-targets 0.52.6", 11017 - ] 11018 - 11019 - [[package]] 11020 - name = "windows_aarch64_gnullvm" 11021 - version = "0.42.2" 11022 - source = "registry+https://github.com/rust-lang/crates.io-index" 11023 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 11024 - 11025 - [[package]] 11026 - name = "windows_aarch64_gnullvm" 11027 - version = "0.48.5" 11028 - source = "registry+https://github.com/rust-lang/crates.io-index" 11029 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 11030 - 11031 - [[package]] 11032 - name = "windows_aarch64_gnullvm" 11033 - version = "0.52.6" 11034 - source = "registry+https://github.com/rust-lang/crates.io-index" 11035 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 11036 - 11037 - [[package]] 11038 - name = "windows_aarch64_msvc" 11039 - version = "0.42.2" 11040 - source = "registry+https://github.com/rust-lang/crates.io-index" 11041 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 11042 - 11043 - [[package]] 11044 - name = "windows_aarch64_msvc" 11045 - version = "0.48.5" 11046 - source = "registry+https://github.com/rust-lang/crates.io-index" 11047 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 11048 - 11049 - [[package]] 11050 - name = "windows_aarch64_msvc" 11051 - version = "0.52.6" 11052 - source = "registry+https://github.com/rust-lang/crates.io-index" 11053 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 11054 - 11055 - [[package]] 11056 - name = "windows_i686_gnu" 11057 - version = "0.42.2" 11058 - source = "registry+https://github.com/rust-lang/crates.io-index" 11059 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 11060 - 11061 - [[package]] 11062 - name = "windows_i686_gnu" 11063 - version = "0.48.5" 11064 - source = "registry+https://github.com/rust-lang/crates.io-index" 11065 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 11066 - 11067 - [[package]] 11068 - name = "windows_i686_gnu" 11069 - version = "0.52.6" 11070 - source = "registry+https://github.com/rust-lang/crates.io-index" 11071 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 11072 - 11073 - [[package]] 11074 - name = "windows_i686_gnullvm" 11075 - version = "0.52.6" 11076 - source = "registry+https://github.com/rust-lang/crates.io-index" 11077 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 11078 - 11079 - [[package]] 11080 - name = "windows_i686_msvc" 11081 - version = "0.42.2" 11082 - source = "registry+https://github.com/rust-lang/crates.io-index" 11083 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 11084 - 11085 - [[package]] 11086 - name = "windows_i686_msvc" 11087 - version = "0.48.5" 11088 - source = "registry+https://github.com/rust-lang/crates.io-index" 11089 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 11090 - 11091 - [[package]] 11092 - name = "windows_i686_msvc" 11093 - version = "0.52.6" 11094 - source = "registry+https://github.com/rust-lang/crates.io-index" 11095 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 11096 - 11097 - [[package]] 11098 - name = "windows_x86_64_gnu" 11099 - version = "0.42.2" 11100 - source = "registry+https://github.com/rust-lang/crates.io-index" 11101 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 11102 - 11103 - [[package]] 11104 - name = "windows_x86_64_gnu" 11105 - version = "0.48.5" 11106 - source = "registry+https://github.com/rust-lang/crates.io-index" 11107 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 11108 - 11109 - [[package]] 11110 - name = "windows_x86_64_gnu" 11111 - version = "0.52.6" 11112 - source = "registry+https://github.com/rust-lang/crates.io-index" 11113 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 11114 - 11115 - [[package]] 11116 - name = "windows_x86_64_gnullvm" 11117 - version = "0.42.2" 11118 - source = "registry+https://github.com/rust-lang/crates.io-index" 11119 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 11120 - 11121 - [[package]] 11122 - name = "windows_x86_64_gnullvm" 11123 - version = "0.48.5" 11124 - source = "registry+https://github.com/rust-lang/crates.io-index" 11125 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 11126 - 11127 - [[package]] 11128 - name = "windows_x86_64_gnullvm" 11129 - version = "0.52.6" 11130 - source = "registry+https://github.com/rust-lang/crates.io-index" 11131 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 11132 - 11133 - [[package]] 11134 - name = "windows_x86_64_msvc" 11135 - version = "0.42.2" 11136 - source = "registry+https://github.com/rust-lang/crates.io-index" 11137 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 11138 - 11139 - [[package]] 11140 - name = "windows_x86_64_msvc" 11141 - version = "0.48.5" 11142 - source = "registry+https://github.com/rust-lang/crates.io-index" 11143 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 11144 - 11145 - [[package]] 11146 - name = "windows_x86_64_msvc" 11147 - version = "0.52.6" 11148 - source = "registry+https://github.com/rust-lang/crates.io-index" 11149 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 11150 - 11151 - [[package]] 11152 - name = "winnow" 11153 - version = "0.5.40" 11154 - source = "registry+https://github.com/rust-lang/crates.io-index" 11155 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 11156 - dependencies = [ 11157 - "memchr", 11158 - ] 11159 - 11160 - [[package]] 11161 - name = "winnow" 11162 - version = "0.6.20" 11163 - source = "registry+https://github.com/rust-lang/crates.io-index" 11164 - checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 11165 - dependencies = [ 11166 - "memchr", 11167 - ] 11168 - 11169 - [[package]] 11170 - name = "winreg" 11171 - version = "0.50.0" 11172 - source = "registry+https://github.com/rust-lang/crates.io-index" 11173 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 11174 - dependencies = [ 11175 - "cfg-if", 11176 - "windows-sys 0.48.0", 11177 - ] 11178 - 11179 - [[package]] 11180 - name = "winreg" 11181 - version = "0.52.0" 11182 - source = "registry+https://github.com/rust-lang/crates.io-index" 11183 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 11184 - dependencies = [ 11185 - "cfg-if", 11186 - "windows-sys 0.48.0", 11187 - ] 11188 - 11189 - [[package]] 11190 - name = "winsafe" 11191 - version = "0.0.19" 11192 - source = "registry+https://github.com/rust-lang/crates.io-index" 11193 - checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" 11194 - 11195 - [[package]] 11196 - name = "worker" 11197 - version = "0.3.4" 11198 - source = "registry+https://github.com/rust-lang/crates.io-index" 11199 - checksum = "c3bd73bd2ea409ae91df99293cbed8b892d39c4c0df5039b646be7586df62c6b" 11200 - dependencies = [ 11201 - "async-trait", 11202 - "axum", 11203 - "bytes", 11204 - "chrono", 11205 - "futures-channel", 11206 - "futures-util", 11207 - "http 1.1.0", 11208 - "http-body 1.0.1", 11209 - "js-sys", 11210 - "matchit", 11211 - "pin-project", 11212 - "serde", 11213 - "serde-wasm-bindgen 0.6.5", 11214 - "serde_json", 11215 - "serde_urlencoded", 11216 - "tokio", 11217 - "url", 11218 - "wasm-bindgen", 11219 - "wasm-bindgen-futures", 11220 - "wasm-streams", 11221 - "web-sys", 11222 - "worker-kv", 11223 - "worker-macros", 11224 - "worker-sys", 11225 - ] 11226 - 11227 - [[package]] 11228 - name = "worker-kv" 11229 - version = "0.7.0" 11230 - source = "registry+https://github.com/rust-lang/crates.io-index" 11231 - checksum = "7f06d4d1416a9f8346ee9123b0d9a11b3cfa38e6cfb5a139698017d1597c4d41" 11232 - dependencies = [ 11233 - "js-sys", 11234 - "serde", 11235 - "serde-wasm-bindgen 0.5.0", 11236 - "serde_json", 11237 - "thiserror 1.0.68", 11238 - "wasm-bindgen", 11239 - "wasm-bindgen-futures", 11240 - ] 11241 - 11242 - [[package]] 11243 - name = "worker-macros" 11244 - version = "0.3.4" 11245 - source = "registry+https://github.com/rust-lang/crates.io-index" 11246 - checksum = "0bbf47d65e77652febb28abedac18b317d8dfe4e57f0d8d9998c4e991fca8e23" 11247 - dependencies = [ 11248 - "async-trait", 11249 - "proc-macro2", 11250 - "quote", 11251 - "syn 2.0.87", 11252 - "wasm-bindgen", 11253 - "wasm-bindgen-futures", 11254 - "wasm-bindgen-macro-support", 11255 - "worker-sys", 11256 - ] 11257 - 11258 - [[package]] 11259 - name = "worker-sys" 11260 - version = "0.3.4" 11261 - source = "registry+https://github.com/rust-lang/crates.io-index" 11262 - checksum = "a4fbb72a85a6509e5ac5dcd1361543468be089ff5ea5c932043b6d0aeac7b6a5" 11263 - dependencies = [ 11264 - "cfg-if", 11265 - "js-sys", 11266 - "wasm-bindgen", 11267 - "web-sys", 11268 - ] 11269 - 11270 - [[package]] 11271 - name = "write16" 11272 - version = "1.0.0" 11273 - source = "registry+https://github.com/rust-lang/crates.io-index" 11274 - checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 11275 - 11276 - [[package]] 11277 - name = "writeable" 11278 - version = "0.5.5" 11279 - source = "registry+https://github.com/rust-lang/crates.io-index" 11280 - checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 11281 - 11282 - [[package]] 11283 - name = "wry" 11284 - version = "0.47.0" 11285 - source = "registry+https://github.com/rust-lang/crates.io-index" 11286 - checksum = "553ca1ce149982123962fac2506aa75b8b76288779a77e72b12fa2fc34938647" 11287 - dependencies = [ 11288 - "base64 0.22.1", 11289 - "block2", 11290 - "cookie", 11291 - "crossbeam-channel", 11292 - "dpi", 11293 - "dunce", 11294 - "gdkx11", 11295 - "gtk", 11296 - "html5ever", 11297 - "http 1.1.0", 11298 - "javascriptcore-rs", 11299 - "jni", 11300 - "kuchikiki", 11301 - "libc", 11302 - "ndk", 11303 - "objc2", 11304 - "objc2-app-kit", 11305 - "objc2-foundation", 11306 - "objc2-ui-kit", 11307 - "objc2-web-kit", 11308 - "once_cell", 11309 - "percent-encoding", 11310 - "raw-window-handle", 11311 - "sha2", 11312 - "soup3", 11313 - "tao-macros", 11314 - "thiserror 1.0.68", 11315 - "tracing", 11316 - "url", 11317 - "webkit2gtk", 11318 - "webkit2gtk-sys", 11319 - "webview2-com", 11320 - "windows", 11321 - "windows-core 0.58.0", 11322 - "windows-version", 11323 - "x11-dl", 11324 - ] 11325 - 11326 - [[package]] 11327 - name = "wyz" 11328 - version = "0.5.1" 11329 - source = "registry+https://github.com/rust-lang/crates.io-index" 11330 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 11331 - dependencies = [ 11332 - "tap", 11333 - ] 11334 - 11335 - [[package]] 11336 - name = "x11" 11337 - version = "2.21.0" 11338 - source = "registry+https://github.com/rust-lang/crates.io-index" 11339 - checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 11340 - dependencies = [ 11341 - "libc", 11342 - "pkg-config", 11343 - ] 11344 - 11345 - [[package]] 11346 - name = "x11-dl" 11347 - version = "2.21.0" 11348 - source = "registry+https://github.com/rust-lang/crates.io-index" 11349 - checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 11350 - dependencies = [ 11351 - "libc", 11352 - "once_cell", 11353 - "pkg-config", 11354 - ] 11355 - 11356 - [[package]] 11357 - name = "x25519-dalek" 11358 - version = "2.0.1" 11359 - source = "registry+https://github.com/rust-lang/crates.io-index" 11360 - checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 11361 - dependencies = [ 11362 - "curve25519-dalek", 11363 - "rand_core 0.6.4", 11364 - "serde", 11365 - "zeroize", 11366 - ] 11367 - 11368 - [[package]] 11369 - name = "x509" 11370 - version = "0.2.0" 11371 - source = "registry+https://github.com/rust-lang/crates.io-index" 11372 - checksum = "ca3cec94c3999f31341553f358ef55f65fc031291a022cd42ec0ce7219560c76" 11373 - dependencies = [ 11374 - "chrono", 11375 - "cookie-factory", 11376 - ] 11377 - 11378 - [[package]] 11379 - name = "x509-certificate" 11380 - version = "0.23.1" 11381 - source = "registry+https://github.com/rust-lang/crates.io-index" 11382 - checksum = "66534846dec7a11d7c50a74b7cdb208b9a581cad890b7866430d438455847c85" 11383 - dependencies = [ 11384 - "bcder", 11385 - "bytes", 11386 - "chrono", 11387 - "der 0.7.9", 11388 - "hex", 11389 - "pem", 11390 - "ring", 11391 - "signature 2.2.0", 11392 - "spki 0.7.3", 11393 - "thiserror 1.0.68", 11394 - "zeroize", 11395 - ] 11396 - 11397 - [[package]] 11398 - name = "xattr" 11399 - version = "1.3.1" 11400 - source = "registry+https://github.com/rust-lang/crates.io-index" 11401 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 11402 - dependencies = [ 11403 - "libc", 11404 - "linux-raw-sys 0.4.14", 11405 - "rustix 0.38.37", 11406 - ] 11407 - 11408 - [[package]] 11409 - name = "xml-rs" 11410 - version = "0.8.22" 11411 - source = "registry+https://github.com/rust-lang/crates.io-index" 11412 - checksum = "af4e2e2f7cba5a093896c1e150fbfe177d1883e7448200efb81d40b9d339ef26" 11413 - 11414 - [[package]] 11415 - name = "xmlparser" 11416 - version = "0.13.6" 11417 - source = "registry+https://github.com/rust-lang/crates.io-index" 11418 - checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 11419 - 11420 - [[package]] 11421 - name = "xmlwriter" 11422 - version = "0.1.0" 11423 - source = "registry+https://github.com/rust-lang/crates.io-index" 11424 - checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" 11425 - 11426 - [[package]] 11427 - name = "xz2" 11428 - version = "0.1.7" 11429 - source = "registry+https://github.com/rust-lang/crates.io-index" 11430 - checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" 11431 - dependencies = [ 11432 - "lzma-sys", 11433 - ] 11434 - 11435 - [[package]] 11436 - name = "yansi" 11437 - version = "1.0.1" 11438 - source = "registry+https://github.com/rust-lang/crates.io-index" 11439 - checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 11440 - 11441 - [[package]] 11442 - name = "yasna" 11443 - version = "0.5.2" 11444 - source = "registry+https://github.com/rust-lang/crates.io-index" 11445 - checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 11446 - 11447 - [[package]] 11448 - name = "yoke" 11449 - version = "0.7.4" 11450 - source = "registry+https://github.com/rust-lang/crates.io-index" 11451 - checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" 11452 - dependencies = [ 11453 - "serde", 11454 - "stable_deref_trait", 11455 - "yoke-derive", 11456 - "zerofrom", 11457 - ] 11458 - 11459 - [[package]] 11460 - name = "yoke-derive" 11461 - version = "0.7.4" 11462 - source = "registry+https://github.com/rust-lang/crates.io-index" 11463 - checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" 11464 - dependencies = [ 11465 - "proc-macro2", 11466 - "quote", 11467 - "syn 2.0.87", 11468 - "synstructure 0.13.1", 11469 - ] 11470 - 11471 - [[package]] 11472 - name = "zerocopy" 11473 - version = "0.7.35" 11474 - source = "registry+https://github.com/rust-lang/crates.io-index" 11475 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 11476 - dependencies = [ 11477 - "byteorder", 11478 - "zerocopy-derive", 11479 - ] 11480 - 11481 - [[package]] 11482 - name = "zerocopy-derive" 11483 - version = "0.7.35" 11484 - source = "registry+https://github.com/rust-lang/crates.io-index" 11485 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 11486 - dependencies = [ 11487 - "proc-macro2", 11488 - "quote", 11489 - "syn 2.0.87", 11490 - ] 11491 - 11492 - [[package]] 11493 - name = "zerofrom" 11494 - version = "0.1.4" 11495 - source = "registry+https://github.com/rust-lang/crates.io-index" 11496 - checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" 11497 - dependencies = [ 11498 - "zerofrom-derive", 11499 - ] 11500 - 11501 - [[package]] 11502 - name = "zerofrom-derive" 11503 - version = "0.1.4" 11504 - source = "registry+https://github.com/rust-lang/crates.io-index" 11505 - checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" 11506 - dependencies = [ 11507 - "proc-macro2", 11508 - "quote", 11509 - "syn 2.0.87", 11510 - "synstructure 0.13.1", 11511 - ] 11512 - 11513 - [[package]] 11514 - name = "zeroize" 11515 - version = "1.8.1" 11516 - source = "registry+https://github.com/rust-lang/crates.io-index" 11517 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 11518 - dependencies = [ 11519 - "zeroize_derive", 11520 - ] 11521 - 11522 - [[package]] 11523 - name = "zeroize_derive" 11524 - version = "1.4.2" 11525 - source = "registry+https://github.com/rust-lang/crates.io-index" 11526 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 11527 - dependencies = [ 11528 - "proc-macro2", 11529 - "quote", 11530 - "syn 2.0.87", 11531 - ] 11532 - 11533 - [[package]] 11534 - name = "zerovec" 11535 - version = "0.10.4" 11536 - source = "registry+https://github.com/rust-lang/crates.io-index" 11537 - checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 11538 - dependencies = [ 11539 - "yoke", 11540 - "zerofrom", 11541 - "zerovec-derive", 11542 - ] 11543 - 11544 - [[package]] 11545 - name = "zerovec-derive" 11546 - version = "0.10.3" 11547 - source = "registry+https://github.com/rust-lang/crates.io-index" 11548 - checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 11549 - dependencies = [ 11550 - "proc-macro2", 11551 - "quote", 11552 - "syn 2.0.87", 11553 - ] 11554 - 11555 - [[package]] 11556 - name = "zip" 11557 - version = "0.6.6" 11558 - source = "registry+https://github.com/rust-lang/crates.io-index" 11559 - checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 11560 - dependencies = [ 11561 - "byteorder", 11562 - "crc32fast", 11563 - "crossbeam-utils", 11564 - "flate2", 11565 - ] 11566 - 11567 - [[package]] 11568 - name = "zip" 11569 - version = "2.2.0" 11570 - source = "registry+https://github.com/rust-lang/crates.io-index" 11571 - checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494" 11572 - dependencies = [ 11573 - "arbitrary", 11574 - "crc32fast", 11575 - "crossbeam-utils", 11576 - "displaydoc", 11577 - "flate2", 11578 - "indexmap 2.6.0", 11579 - "memchr", 11580 - "thiserror 1.0.68", 11581 - "zopfli", 11582 - ] 11583 - 11584 - [[package]] 11585 - name = "zip_structs" 11586 - version = "0.2.1" 11587 - source = "registry+https://github.com/rust-lang/crates.io-index" 11588 - checksum = "ce824a6bfffe8942820fa36d24973b7c83a40896749a42e33de0abdd11750ee5" 11589 - dependencies = [ 11590 - "byteorder", 11591 - "bytesize", 11592 - "thiserror 1.0.68", 11593 - ] 11594 - 11595 - [[package]] 11596 - name = "zopfli" 11597 - version = "0.8.1" 11598 - source = "registry+https://github.com/rust-lang/crates.io-index" 11599 - checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946" 11600 - dependencies = [ 11601 - "bumpalo", 11602 - "crc32fast", 11603 - "lockfree-object-pool", 11604 - "log", 11605 - "once_cell", 11606 - "simd-adler32", 11607 - ] 11608 - 11609 - [[package]] 11610 - name = "zstd" 11611 - version = "0.13.2" 11612 - source = "registry+https://github.com/rust-lang/crates.io-index" 11613 - checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 11614 - dependencies = [ 11615 - "zstd-safe", 11616 - ] 11617 - 11618 - [[package]] 11619 - name = "zstd-safe" 11620 - version = "7.2.1" 11621 - source = "registry+https://github.com/rust-lang/crates.io-index" 11622 - checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" 11623 - dependencies = [ 11624 - "zstd-sys", 11625 - ] 11626 - 11627 - [[package]] 11628 - name = "zstd-sys" 11629 - version = "2.0.13+zstd.1.5.6" 11630 - source = "registry+https://github.com/rust-lang/crates.io-index" 11631 - checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" 11632 - dependencies = [ 11633 - "cc", 11634 - "pkg-config", 11635 - ] 11636 - 11637 - [[package]] 11638 - name = "zune-core" 11639 - version = "0.4.12" 11640 - source = "registry+https://github.com/rust-lang/crates.io-index" 11641 - checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 11642 - 11643 - [[package]] 11644 - name = "zune-inflate" 11645 - version = "0.2.54" 11646 - source = "registry+https://github.com/rust-lang/crates.io-index" 11647 - checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 11648 - dependencies = [ 11649 - "simd-adler32", 11650 - ] 11651 - 11652 - [[package]] 11653 - name = "zune-jpeg" 11654 - version = "0.4.13" 11655 - source = "registry+https://github.com/rust-lang/crates.io-index" 11656 - checksum = "16099418600b4d8f028622f73ff6e3deaabdff330fb9a2a131dea781ee8b0768" 11657 - dependencies = [ 11658 - "zune-core", 11659 - ]
+4 -9
pkgs/by-name/ca/cargo-tauri/package.nix
··· 4 4 callPackage, 5 5 rustPlatform, 6 6 fetchFromGitHub, 7 - cargo-tauri, 8 7 gtk4, 9 8 nix-update-script, 10 9 openssl, ··· 14 13 15 14 rustPlatform.buildRustPackage rec { 16 15 pname = "tauri"; 17 - version = "2.1.1"; 16 + version = "2.2.0"; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "tauri-apps"; 21 20 repo = "tauri"; 22 21 tag = "tauri-v${version}"; 23 - hash = "sha256-HPmViOowP1xAjDJ89YS0BTjNnKI1P0L777ywkqAhhc4="; 22 + hash = "sha256-lkTkRNJIdGMJCkqxpBAM4r3JzO55nCjl2l+1xjsCtRI="; 24 23 }; 25 24 26 - cargoLock = { 27 - lockFile = ./Cargo.lock; 28 - outputHashes = { 29 - "schemars_derive-0.8.21" = "sha256-AmxBKZXm2Eb+w8/hLQWTol5f22uP8UqaIh+LVLbS20g="; 30 - }; 31 - }; 25 + useFetchCargoVendor = true; 26 + cargoHash = "sha256-fZ3SGF+iIeu9TIyJvKm8vAo2PUT1VREyTKUpcqyC5vo="; 32 27 33 28 nativeBuildInputs = [ pkg-config ]; 34 29
+1 -1
pkgs/by-name/ca/cargo-tauri/test-app.nix
··· 34 34 src 35 35 ; 36 36 37 - hash = "sha256-kTr61DFPIIYceB8tZrKFaMG65CZ//djGEOQBLRNPotk="; 37 + hash = "sha256-jrp7epYWnfyqQbNL+XhrO4NvSTt2NOMd/icfbUYLvpA="; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+3 -3
pkgs/by-name/ch/chezmoi/package.nix
··· 8 8 let 9 9 argset = { 10 10 pname = "chezmoi"; 11 - version = "2.56.0"; 11 + version = "2.57.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "twpayne"; 15 15 repo = "chezmoi"; 16 16 rev = "v${argset.version}"; 17 - hash = "sha256-PjbfGWERJmV/vHF9BitsA8Cn9oTcCwJOnUgvTV6v7mg="; 17 + hash = "sha256-fExZr4SOTdaob84ryGGCGuKZoypcRmZ81XI6zxa7KWQ="; 18 18 }; 19 19 20 - vendorHash = "sha256-ACGXJqpELysLRFoWHtCMrAFjdmuYoP+ZpCQZYOd/GoE="; 20 + vendorHash = "sha256-fSOmpDVMIcIIpbdlHPS41u0VHRddyJIQNOLv8/Gwr+Q="; 21 21 22 22 nativeBuildInputs = [ 23 23 installShellFiles
+1 -8
pkgs/by-name/co/conduwuit/package.nix
··· 6 6 bzip2, 7 7 zstd, 8 8 stdenv, 9 - apple-sdk_15, 10 - darwinMinVersionHook, 11 9 rocksdb, 12 10 nix-update-script, 13 11 testers, ··· 55 53 zstd 56 54 ] 57 55 ++ lib.optional enableJemalloc rust-jemalloc-sys' 58 - ++ lib.optional enableLiburing liburing 59 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 60 - apple-sdk_15 61 - # aws-lc-sys requires CryptoKit's CommonCrypto, which is available on macOS 10.15+ 62 - (darwinMinVersionHook "10.15") 63 - ]; 56 + ++ lib.optional enableLiburing liburing; 64 57 65 58 env = { 66 59 ZSTD_SYS_USE_PKG_CONFIG = true;
+1 -1
pkgs/by-name/dh/dhcpcd/package.nix
··· 68 68 meta = with lib; { 69 69 description = "Client for the Dynamic Host Configuration Protocol (DHCP)"; 70 70 homepage = "https://roy.marples.name/projects/dhcpcd"; 71 - platforms = platforms.linux ++ platforms.freebsd; 71 + platforms = platforms.linux ++ platforms.freebsd ++ platforms.openbsd; 72 72 license = licenses.bsd2; 73 73 maintainers = [ ]; 74 74 mainProgram = "dhcpcd";
+1 -7
pkgs/by-name/do/dosbox-staging/package.nix
··· 29 29 stdenv, 30 30 testers, 31 31 zlib-ng, 32 - apple-sdk_15, 33 - darwinMinVersionHook, 34 32 }: 35 33 36 34 stdenv.mkDerivation (finalAttrs: { ··· 81 79 speexdsp 82 80 zlib-ng 83 81 ] 84 - ++ lib.optionals stdenv.hostPlatform.isLinux [ alsa-lib ] 85 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 86 - apple-sdk_15 87 - (darwinMinVersionHook "10.15") # from https://www.dosbox-staging.org/releases/macos/ 88 - ]; 82 + ++ lib.optionals stdenv.hostPlatform.isLinux [ alsa-lib ]; 89 83 90 84 outputs = [ "out" "man" ]; 91 85
+3 -3
pkgs/by-name/fz/fzf-make/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "fzf-make"; 13 - version = "0.52.0"; 13 + version = "0.55.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "kyu08"; 17 17 repo = "fzf-make"; 18 18 rev = "v${version}"; 19 - hash = "sha256-KJdGUo7qSMIDJ8jvcBX/cla8pQkB/EGytIP0YzV/3fY="; 19 + hash = "sha256-YPflHIHOnl6j2J60g1K2HjjUVf21P4Tofi65K3FUZxs="; 20 20 }; 21 21 22 - cargoHash = "sha256-nrttuY9x61aE3RJOtbUWZbqOX6ZRyghQSruu5EdX470="; 22 + cargoHash = "sha256-oXxCPuUtzUNYrlqUdksGodITnWt7pGrA8UsNYSzOJVA="; 23 23 24 24 useFetchCargoVendor = true; 25 25
+3 -3
pkgs/by-name/go/go2rtc/package.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "go2rtc"; 8 - version = "1.9.7"; 8 + version = "1.9.8"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AlexxIT"; 12 12 repo = "go2rtc"; 13 13 tag = "v${version}"; 14 - hash = "sha256-pxKocvnFy1XMrjQ57VAmCnavcBgVPuNqWzT0v5+pWMI="; 14 + hash = "sha256-gX1hNm3X0OQdmslQ/2pw0F05TO43YsGtz1yn8bbaxR0="; 15 15 }; 16 16 17 - vendorHash = "sha256-N8aJmxNQ/p2ddJG9DuIVVjcgzEC6TzD0sz992h3q0RU="; 17 + vendorHash = "sha256-6QVqBTWI2BJFttWbHHjfSztvOx2oyk7ShxAZmz51oVI="; 18 18 19 19 env.CGO_ENABLED = 0; 20 20
+4 -12
pkgs/by-name/go/golem/package.nix
··· 11 11 # buildInputs 12 12 fontconfig, 13 13 openssl, 14 - apple-sdk_15, 15 - darwinMinVersionHook, 16 14 17 15 redis, 18 16 versionCheckHook, ··· 40 38 rustPlatform.bindgenHook 41 39 ]; 42 40 43 - buildInputs = 44 - [ 45 - fontconfig 46 - (lib.getDev openssl) 47 - ] 48 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 49 - apple-sdk_15 50 - # aws-lc-sys requires CryptoKit's CommonCrypto, which is available on macOS 10.15+ 51 - (darwinMinVersionHook "10.15") 52 - ]; 41 + buildInputs = [ 42 + fontconfig 43 + (lib.getDev openssl) 44 + ]; 53 45 54 46 # Required for golem-wasm-rpc's build.rs to find the required protobuf files 55 47 # https://github.com/golemcloud/wasm-rpc/blob/v1.0.6/wasm-rpc/build.rs#L7
+24
pkgs/by-name/lx/lxterminal/fix-gcc14-pr122.patch
··· 1 + diff --git a/src/lxterminal.c b/src/lxterminal.c 2 + index 015f5e4..32e3b68 100644 3 + --- a/src/lxterminal.c 4 + +++ b/src/lxterminal.c 5 + @@ -1210,6 +1210,8 @@ static Term * terminal_new(LXTerminal * terminal, const gchar * label, const gch 6 + vte_terminal_match_set_cursor_type(VTE_TERMINAL(term->vte), ret, GDK_HAND2); 7 + ret = vte_terminal_match_add_regex(VTE_TERMINAL(term->vte), dingus2, 0); 8 + vte_terminal_match_set_cursor_type(VTE_TERMINAL(term->vte), ret, GDK_HAND2); 9 + + vte_regex_unref(dingus1); 10 + + vte_regex_unref(dingus2); 11 + #else 12 + GRegex * dingus1 = g_regex_new(DINGUS1, G_REGEX_OPTIMIZE, 0, NULL); 13 + GRegex * dingus2 = g_regex_new(DINGUS2, G_REGEX_OPTIMIZE, 0, NULL); 14 + @@ -1217,9 +1219,9 @@ static Term * terminal_new(LXTerminal * terminal, const gchar * label, const gch 15 + vte_terminal_match_set_cursor_type(VTE_TERMINAL(term->vte), ret, GDK_HAND2); 16 + ret = vte_terminal_match_add_gregex(VTE_TERMINAL(term->vte), dingus2, 0); 17 + vte_terminal_match_set_cursor_type(VTE_TERMINAL(term->vte), ret, GDK_HAND2); 18 + -#endif 19 + g_regex_unref(dingus1); 20 + g_regex_unref(dingus2); 21 + +#endif 22 + 23 + /* Create a horizontal box inside an event box as the toplevel for the tab label. */ 24 + term->tab = gtk_event_box_new();
+1
pkgs/by-name/lx/lxterminal/package.nix
··· 54 54 ]; 55 55 56 56 patches = [ 57 + ./fix-gcc14-pr122.patch # manual port of https://github.com/lxde/lxterminal/pull/122 57 58 ./respect-xml-catalog-files-var.patch 58 59 ]; 59 60
-2
pkgs/by-name/mo/moltenvk/package.nix
··· 5 5 fetchpatch2, 6 6 gitUpdater, 7 7 apple-sdk_15, 8 - darwinMinVersionHook, 9 8 cereal, 10 9 libcxx, 11 10 glslang, ··· 31 30 buildInputs = [ 32 31 apple-sdk_15 33 32 cereal 34 - (darwinMinVersionHook "10.15") 35 33 glslang 36 34 spirv-cross 37 35 spirv-headers
+114
pkgs/by-name/op/openobserve/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + pkg-config, 6 + protobuf, 7 + bzip2, 8 + oniguruma, 9 + sqlite, 10 + xz, 11 + zlib, 12 + zstd, 13 + buildNpmPackage, 14 + gitUpdater, 15 + }: 16 + 17 + let 18 + version = "0.14.0"; 19 + src = fetchFromGitHub { 20 + owner = "openobserve"; 21 + repo = "openobserve"; 22 + tag = "v${version}"; 23 + hash = "sha256-rTp+DkADqYkJg1zJog1yURE082V5kCqgid/oUd81SN8="; 24 + }; 25 + web = buildNpmPackage { 26 + inherit src version; 27 + pname = "openobserve-ui"; 28 + 29 + sourceRoot = "${src.name}/web"; 30 + 31 + npmDepsHash = "sha256-awfQR1wZBX3ggmD0uJE9Fur4voPydeygrviRijKnBTE="; 32 + 33 + preBuild = '' 34 + # Patch vite config to not open the browser to visualize plugin composition 35 + substituteInPlace vite.config.ts \ 36 + --replace "open: true" "open: false"; 37 + ''; 38 + 39 + env = { 40 + NODE_OPTIONS = "--max-old-space-size=8192"; 41 + # cypress tries to download binaries otherwise 42 + CYPRESS_INSTALL_BINARY = 0; 43 + }; 44 + 45 + installPhase = '' 46 + runHook preInstall 47 + mkdir -p $out/share 48 + mv dist $out/share/openobserve-ui 49 + runHook postInstall 50 + ''; 51 + }; 52 + in 53 + rustPlatform.buildRustPackage { 54 + pname = "openobserve"; 55 + inherit version src; 56 + 57 + patches = [ 58 + # prevent using git to determine version info during build time 59 + ./build.rs.patch 60 + ]; 61 + 62 + preBuild = '' 63 + cp -r ${web}/share/openobserve-ui web/dist 64 + ''; 65 + 66 + useFetchCargoVendor = true; 67 + cargoHash = "sha256-FWMUPghx9CxuzP7jFZYSIwZsylApWzQsfx8DuwS4GTo="; 68 + 69 + nativeBuildInputs = [ 70 + pkg-config 71 + protobuf 72 + ]; 73 + 74 + buildInputs = [ 75 + bzip2 76 + oniguruma 77 + sqlite 78 + xz 79 + zlib 80 + zstd 81 + ]; 82 + 83 + env = { 84 + RUSTONIG_SYSTEM_LIBONIG = true; 85 + ZSTD_SYS_USE_PKG_CONFIG = true; 86 + 87 + RUSTC_BOOTSTRAP = 1; # uses experimental features 88 + 89 + # the patched build.rs file sets these variables 90 + GIT_VERSION = src.tag; 91 + GIT_COMMIT_HASH = "builtByNix"; 92 + GIT_BUILD_DATE = "1970-01-01T00:00:00Z"; 93 + }; 94 + 95 + # requires network access or filesystem mutations 96 + checkFlags = [ 97 + "--skip=handler::http::router::tests::test_get_proxy_routes" 98 + "--skip=tests::e2e_test" 99 + ]; 100 + 101 + passthru.updateScript = gitUpdater { 102 + rev-prefix = "v"; 103 + ignoredVersions = "rc"; 104 + }; 105 + 106 + meta = { 107 + description = "Cloud-native observability platform built specifically for logs, metrics, traces, analytics & realtime user-monitoring"; 108 + homepage = "https://github.com/openobserve/openobserve"; 109 + changelog = "https://github.com/openobserve/openobserve/releases/tag/v${version}"; 110 + license = lib.licenses.asl20; 111 + maintainers = with lib.maintainers; [ happysalada ]; 112 + mainProgram = "openobserve"; 113 + }; 114 + }
+1 -1
pkgs/by-name/op/openresolv/package.nix
··· 43 43 homepage = "https://roy.marples.name/projects/openresolv"; 44 44 license = lib.licenses.bsd2; 45 45 maintainers = [ ]; 46 - platforms = lib.platforms.linux ++ lib.platforms.freebsd; 46 + platforms = lib.platforms.unix; 47 47 }; 48 48 }
+3 -3
pkgs/by-name/ru/rust-analyzer-unwrapped/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "rust-analyzer-unwrapped"; 15 - version = "2024-12-23"; 16 - cargoHash = "sha256-9fPKd94erhUIBIeg8gDaCvJmKHwwNuLUMiEwCMdVeFE="; 15 + version = "2025-01-08"; 16 + cargoHash = "sha256-5PRfmjDamboKf77oeCOG1EPlsDvqjQzRZavFyN3gLK8="; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "rust-lang"; 20 20 repo = "rust-analyzer"; 21 21 rev = version; 22 - hash = "sha256-NlsVD/fI32wsHFua9Xvc7IFHCUpQIOs6D6RS/3AhMT8="; 22 + hash = "sha256-dzslslI/5YEppCztz4FZ1VwXnb4SbuXWbSvDuWs0KKI="; 23 23 }; 24 24 25 25 cargoBuildFlags = [
+4
pkgs/by-name/so/sollya/package.nix
··· 26 26 fplll 27 27 ]; 28 28 29 + configureFlags = [ 30 + "--with-xml2-config=${lib.getExe' (lib.getDev libxml2) "xml2-config"}" 31 + ]; 32 + 29 33 doCheck = true; 30 34 31 35 meta = with lib; {
+2 -2
pkgs/by-name/st/storj-uplink/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "storj-uplink"; 9 - version = "1.119.8"; 9 + version = "1.119.15"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "storj"; 13 13 repo = "storj"; 14 14 rev = "v${version}"; 15 - hash = "sha256-7SlKUqniRgQfmrBEVnvn7KDa9/QmMmYb7NMrNABGSiU="; 15 + hash = "sha256-XKTsgSkcVZ/2iYnEP0eeLjLEM4c2w9+XhvBqRFQAW+U="; 16 16 }; 17 17 18 18 subPackages = [ "cmd/uplink" ];
+3 -3
pkgs/by-name/tp/tpnote/package.nix
··· 14 14 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "tpnote"; 17 - version = "1.24.12"; 17 + version = "1.25.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "getreu"; 21 21 repo = "tp-note"; 22 22 rev = "v${version}"; 23 - hash = "sha256-1Y7Sw9wiUno4A6i0lYDJpqfIT/HV5rxXfuJnJ+FJTBU="; 23 + hash = "sha256-TT34+r4f3TaurLwyXxQa5AZT1xPOKkDYPra/bgchoTc="; 24 24 }; 25 25 26 - cargoHash = "sha256-ZOE2D8GXrJ7BQK7iMoUnqyrj4zc+ODJxZ1jgH7xYMI0="; 26 + cargoHash = "sha256-1+LPsTvJwouFkJoCEkRUjKGqldXLYyF3Y4UuISoYF2A="; 27 27 28 28 nativeBuildInputs = [ 29 29 cmake
-2
pkgs/by-name/vf/vfkit/package.nix
··· 3 3 apple-sdk_14, 4 4 buildGoModule, 5 5 darwin, 6 - darwinMinVersionHook, 7 6 fetchFromGitHub, 8 7 testers, 9 8 vfkit, ··· 36 35 37 36 buildInputs = [ 38 37 apple-sdk_14 39 - (darwinMinVersionHook "11") 40 38 ]; 41 39 42 40 postFixup = ''
+3
pkgs/by-name/xt/xtris/package.nix
··· 20 20 s:mkdir:mkdir -p:g 21 21 s:^CFLAGS:#CFLAGS: 22 22 ' Makefile 23 + 24 + sed -i '28i#include <time.h>' xtserv.c 25 + sed -i '35i#include <time.h>' xtbot.c 23 26 ''; 24 27 buildInputs = [ xorg.libX11 ]; 25 28
+2 -2
pkgs/by-name/ya/yafc-ce/package.nix
··· 12 12 in 13 13 buildDotnetModule (finalAttrs: { 14 14 pname = "yafc-ce"; 15 - version = "2.4.0"; 15 + version = "2.5.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "shpaass"; 19 19 repo = "yafc-ce"; 20 20 rev = finalAttrs.version; 21 - hash = "sha256-Tx9C7xhmfUfHAbrVKtGQ0lO+UZvzErndswFoBnWVzEw="; 21 + hash = "sha256-NttLFx6b3T5/JzCkUg8laSQ3ipNUkAPlPPC+dsdnCO4="; 22 22 }; 23 23 24 24 projectFile = [ "Yafc/Yafc.csproj" ];
+3 -3
pkgs/by-name/ze/zed-editor/package.nix
··· 93 93 in 94 94 rustPlatform.buildRustPackage rec { 95 95 pname = "zed-editor"; 96 - version = "0.167.2"; 96 + version = "0.168.2"; 97 97 98 98 src = fetchFromGitHub { 99 99 owner = "zed-industries"; 100 100 repo = "zed"; 101 101 tag = "v${version}"; 102 - hash = "sha256-2Cgh3dv+3CSZoj2bY1SdNA4xicn03hSvfAl0GyKYF/A="; 102 + hash = "sha256-ar1JpLbfKdFZFszCCmYMzTQx6yhVIFFT+EbeA7H5H2g="; 103 103 }; 104 104 105 105 patches = [ ··· 119 119 ''; 120 120 121 121 useFetchCargoVendor = true; 122 - cargoHash = "sha256-PAwgPQEvaU/9fTlsYQPalv9M7oRLafdnNoidtwpGI5Q="; 122 + cargoHash = "sha256-Vw/WUOLiIOuULSMT57G8MsubQR63J+oh88lmlPNkRYs="; 123 123 124 124 nativeBuildInputs = 125 125 [
+2 -14
pkgs/desktops/lomiri/applications/lomiri-clock-app/default.nix
··· 12 12 lomiri-sounds, 13 13 lomiri-ui-toolkit, 14 14 makeWrapper, 15 + mesa, 15 16 pkg-config, 16 17 qtbase, 17 18 qtdeclarative, ··· 77 78 ]; 78 79 79 80 nativeCheckInputs = [ 81 + mesa.llvmpipeHook # ShapeMaterial needs an OpenGL context: https://gitlab.com/ubports/development/core/lomiri-ui-toolkit/-/issues/35 80 82 qtdeclarative # qmltestrunner 81 83 xvfb-run 82 84 ]; ··· 87 89 (lib.cmakeBool "CLICK_MODE" false) 88 90 (lib.cmakeBool "INSTALL_TESTS" false) 89 91 (lib.cmakeBool "USE_XVFB" true) 90 - (lib.cmakeFeature "CMAKE_CTEST_ARGUMENTS" ( 91 - lib.concatStringsSep ";" [ 92 - # Exclude tests 93 - "-E" 94 - (lib.strings.escapeShellArg "(${ 95 - lib.concatStringsSep "|" [ 96 - # Runs into ShapeMaterial codepath in lomiri-ui-toolkit which needs OpenGL, see LUITK for details 97 - "^AlarmLabel" 98 - "^AlarmRepeat" 99 - "^AlarmSound" 100 - ] 101 - })") 102 - ] 103 - )) 104 92 ]; 105 93 106 94 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
+2 -13
pkgs/desktops/lomiri/applications/lomiri-system-settings/default.nix
··· 29 29 lomiri-settings-components, 30 30 lomiri-ui-toolkit, 31 31 maliit-keyboard, 32 + mesa, 32 33 pkg-config, 33 34 polkit, 34 35 python3, ··· 136 137 137 138 nativeCheckInputs = [ 138 139 dbus 140 + mesa.llvmpipeHook # ShapeMaterial needs an OpenGL context: https://gitlab.com/ubports/development/core/lomiri-ui-toolkit/-/issues/35 139 141 (python3.withPackages (ps: with ps; [ python-dbusmock ])) 140 142 xvfb-run 141 143 ]; ··· 151 153 cmakeFlags = [ 152 154 (lib.cmakeBool "ENABLE_LIBDEVICEINFO" true) 153 155 (lib.cmakeBool "ENABLE_TESTS" finalAttrs.finalPackage.doCheck) 154 - (lib.cmakeFeature "CMAKE_CTEST_ARGUMENTS" ( 155 - lib.concatStringsSep ";" [ 156 - # Exclude tests 157 - "-E" 158 - (lib.strings.escapeShellArg "(${ 159 - lib.concatStringsSep "|" [ 160 - # Hits OpenGL context issue inside lomiri-ui-toolkit, see derivation of that on details 161 - "^testmouse" 162 - "^tst_notifications" 163 - ] 164 - })") 165 - ] 166 - )) 167 156 ]; 168 157 169 158 # The linking for this normally ignores missing symbols, which is inconvenient for figuring out why subpages may be
+2 -3
pkgs/desktops/lomiri/applications/morph-browser/default.nix
··· 12 12 lomiri-content-hub, 13 13 lomiri-ui-extras, 14 14 lomiri-ui-toolkit, 15 + mesa, 15 16 pkg-config, 16 17 qqc2-suru-style, 17 18 qtbase, ··· 90 91 ]; 91 92 92 93 nativeCheckInputs = [ 94 + mesa.llvmpipeHook # ShapeMaterial needs an OpenGL context: https://gitlab.com/ubports/development/core/lomiri-ui-toolkit/-/issues/35 93 95 xvfb-run 94 96 ]; 95 97 ··· 102 104 lib.concatStringsSep "|" [ 103 105 # Don't care about linter failures 104 106 "^flake8" 105 - 106 - # Runs into ShapeMaterial codepath in lomiri-ui-toolkit which needs OpenGL, see LUITK for details 107 - "^tst_QmlTests" 108 107 ] 109 108 })") 110 109 ]
+2 -2
pkgs/desktops/lomiri/qml/lomiri-ui-extras/default.nix
··· 8 8 cups, 9 9 exiv2, 10 10 lomiri-ui-toolkit, 11 + mesa, 11 12 pam, 12 13 pkg-config, 13 14 qtbase, ··· 48 49 ]; 49 50 50 51 nativeCheckInputs = [ 52 + mesa.llvmpipeHook # ShapeMaterial needs an OpenGL context: https://gitlab.com/ubports/development/core/lomiri-ui-toolkit/-/issues/35 51 53 qtdeclarative # qmltestrunner 52 54 xvfb-run 53 55 ]; ··· 66 68 "-E" 67 69 (lib.strings.escapeShellArg "(${ 68 70 lib.concatStringsSep "|" [ 69 - # tst_busy_indicator runs into a codepath in lomiri-ui-toolkit that expects a working GL context 70 - "^tst_busy_indicator" 71 71 # Photo & PhotoImageProvider Randomly fail, unsure why 72 72 "^tst_PhotoEditorPhoto" 73 73 ]
-155
pkgs/desktops/lomiri/qml/lomiri-ui-toolkit/2001-Mark-problematic-tests.patch
··· 1 - From c71d5fed4ef1f0b6d56400cddf02d8ac438168c8 Mon Sep 17 00:00:00 2001 2 - From: OPNA2608 <opna2608@protonmail.com> 3 - Date: Wed, 17 Apr 2024 16:18:23 +0200 4 - Subject: [PATCH] Mark problematic tests 5 - 6 - - ShapeMaterial requires a Qt OpenGL context, doesn't work in our sandbox 7 - - SignalSpy on QML shaders compilers don't see changes 8 - - TypeError on some properties with Qt 5.15 9 - https://gitlab.com/ubports/development/core/lomiri-ui-toolkit/-/issues/9 10 - --- 11 - tests/checkresults.sh | 88 ++++++++++++++++++++++++++++++++++++++++--- 12 - 1 file changed, 82 insertions(+), 6 deletions(-) 13 - 14 - diff --git a/tests/checkresults.sh b/tests/checkresults.sh 15 - index fc498985e..b5d204d0d 100755 16 - --- a/tests/checkresults.sh 17 - +++ b/tests/checkresults.sh 18 - @@ -22,6 +22,7 @@ ERRORS_PATTERN='<failure' 19 - 20 - FAILURES=0 21 - FATAL_WARNINGS=0 22 - +EXCEPTED_FAILURES=0 23 - EXCEPTED=0 24 - for _XML in $*; do 25 - _TESTNAME=$(basename $_XML | sed -r 's@(.+)\.xml@\1@' -) 26 - @@ -31,7 +32,71 @@ for _XML in $*; do 27 - exit 1 28 - fi 29 - 30 - - EXCEPTIONS='components_benchmark \ 31 - + ERROR_EXCEPTIONS='\ 32 - + tst_actionbar.13.qml \ 33 - + tst_actionlist.13.qml \ 34 - + tst_adaptivepagelayout.13.qml \ 35 - + tst_adaptivepagelayout_configuration.13.qml \ 36 - + tst_combobutton.11.qml \ 37 - + tst_combobutton.13.qml \ 38 - + tst_contextual_actions.13.qml \ 39 - + tst_focus.13.qml \ 40 - + tst_header.13.qml \ 41 - + tst_hide_chrome.11.qml \ 42 - + tst_listitem.12.qml \ 43 - + tst_listitem.13.qml \ 44 - + tst_listitem_actions_breaks_selectmode.12.qml \ 45 - + tst_listitem_extras.13.qml \ 46 - + tst_listitem_focus.13.qml \ 47 - + tst_listitem_horizontal_navigation.13.qml \ 48 - + tst_listitem_selectmode.12.qml \ 49 - + tst_listitem_selectmode.13.qml \ 50 - + tst_listitems_itemselector.11.qml \ 51 - + tst_listitems_standard.11.qml \ 52 - + tst_listitems_standard.13.qml \ 53 - + tst_lomirilistview.11.qml \ 54 - + tst_lomiritestcase.qml \ 55 - + tst_multicolumnheader.13.qml \ 56 - + tst_optionselector.11.qml \ 57 - + tst_optionselector.13.qml \ 58 - + tst_page_with_header.13.qml \ 59 - + tst_pagehead_back_action.13.qml \ 60 - + tst_pagehead_contents_width.13.qml \ 61 - + tst_pagehead_sections.13.qml \ 62 - + tst_pagehead_visible.13.qml \ 63 - + tst_pageheader.13.qml \ 64 - + tst_pagestack.13.qml \ 65 - + tst_pagestack.DEPRECATED_APPHEADER_TABS.13.qml \ 66 - + tst_picker.11.qml \ 67 - + tst_picker.13.qml \ 68 - + tst_popover.12.qml \ 69 - + tst_popover.13.qml \ 70 - + tst_popups_dialog.13.qml \ 71 - + tst_popups_pagestack.13.qml \ 72 - + tst_pulltorefresh_pagestack_topmargin.13.qml \ 73 - + tst_slider.11.qml \ 74 - + tst_slider.13.qml \ 75 - + tst_switch_bug1510919.13.qml \ 76 - + tst_tabs.11.qml \ 77 - + tst_tabs.13.qml \ 78 - + tst_tabs.DEPRECATED_TOOLBAR.11.qml \ 79 - + tst_textarea.11.qml \ 80 - + tst_textarea_in_flickable.11.qml \ 81 - + tst_textfield.11.qml \ 82 - + tst_textinput_common.12.qml \ 83 - + tst_textinput_common.13.qml \ 84 - + tst_toggles.13.qml \ 85 - + inversemousearea \ 86 - + layouts \ 87 - + recreateview \ 88 - + subtheming \ 89 - + swipearea \ 90 - + tst_icon.11.qml \ 91 - + tst_icon.13.qml \ 92 - + ' 93 - + 94 - + EXCEPTIONS='\ 95 - + components_benchmark \ 96 - tst_tabbar.11.qml \ 97 - tst_datepicker.bug1567840.SEGFAULT.12.qml \ 98 - tst_datepicker.bug1567840.SEGFAULT.13.qml \ 99 - @@ -49,22 +114,28 @@ for _XML in $*; do 100 - inversemousearea \ 101 - tst_listitem_focus_bug.13.qml \ 102 - tst_shortcuts.13.qml \ 103 - + tst_pagestack.DEPRECATED_TOOLBAR.11.qml \ 104 - ' 105 - 106 - WARNINGS=$(grep -c -P "$WARNINGS_PATTERN" $_XML) 107 - ERRORS=$(grep -c -P "$ERRORS_PATTERN" $_XML) 108 - if [ $ERRORS -ne 0 ]; then 109 - - FAILURES_FILES="${FAILURES_FILES} ${_TESTNAME}\n" 110 - - ((FAILURES+=$ERRORS)) 111 - + if [[ " $ERROR_EXCEPTIONS " == *" $_TESTNAME "* ]]; then 112 - + EXCEPTED_FAILURES_FILES="${EXCEPTED_FAILURES_FILES} ${_TESTNAME}\n" 113 - + ((EXCEPTED_FAILURES+=$ERRORS)) 114 - + else 115 - + FAILURES_FILES="${FAILURES_FILES} ${_TESTNAME}\n" 116 - + ((FAILURES+=$ERRORS)) 117 - + fi 118 - elif [ $WARNINGS -ne 0 ]; then 119 - - if [[ $EXCEPTIONS == *$_TESTNAME* ]]; then 120 - + if [[ " $EXCEPTIONS " == *" $_TESTNAME "* ]]; then 121 - EXCEPTED_FILES="${EXCEPTED_FILES} ${_TESTNAME}\n" 122 - ((EXCEPTED+=$WARNINGS)) 123 - else 124 - FATAL_WARNINGS_FILES="${FATAL_WARNINGS_FILES} ${_TESTNAME}\n" 125 - ((FATAL_WARNINGS+=$WARNINGS)) 126 - fi 127 - - elif [[ $EXCEPTIONS == *$_TESTNAME* ]]; then 128 - + elif [[ " $ERROR_EXCEPTIONS " == *" $_TESTNAME "* || " $EXCEPTIONS " == *" $_TESTNAME "* ]]; then 129 - WOOT_FILES="${WOOT_FILES} ${_TESTNAME}\n" 130 - fi 131 - done 132 - @@ -82,6 +153,11 @@ if [ -n "$FATAL_WARNINGS_FILES" ]; then 133 - echo -e "$FATAL_WARNINGS_FILES" 134 - fi 135 - 136 - +if [ -n "$EXCEPTED_FAILURES_FILES" ]; then 137 - + echo The following tests issued $EXCEPTED_FAILURES expected failures: 138 - + echo -e "$EXCEPTED_FAILURES_FILES" 139 - +fi 140 - + 141 - if [ -n "$EXCEPTED_FILES" ]; then 142 - echo The following tests issued $EXCEPTED expected warnings: 143 - echo -e "$EXCEPTED_FILES" 144 - @@ -89,7 +165,7 @@ fi 145 - 146 - if [ -n "$WOOT_FILES" ]; then 147 - echo Woot! Known problematic tests passed! 148 - - echo Consider removing these from EXCEPTIONS in ${0#$(pwd)/}! 149 - + echo Consider removing these from ERROR_EXCEPTIONS/EXCEPTIONS in ${0#$(pwd)/}! 150 - echo -e "$WOOT_FILES" 151 - fi 152 - 153 - -- 154 - 2.42.0 155 -
+2 -2
pkgs/desktops/lomiri/qml/lomiri-ui-toolkit/default.nix
··· 10 10 gdb, 11 11 glib, 12 12 lttng-ust, 13 + mesa, 13 14 perl, 14 15 pkg-config, 15 16 python3, ··· 60 61 ]; 61 62 62 63 patches = [ 63 - ./2001-Mark-problematic-tests.patch 64 - 65 64 (substituteAll { 66 65 src = ./2002-Nixpkgs-versioned-QML-path.patch.in; 67 66 name = "2002-Nixpkgs-versioned-QML-path.patch"; ··· 149 148 dbus-test-runner 150 149 dpkg # `dpkg-architecture -qDEB_HOST_ARCH` response decides how tests are run 151 150 gdb 151 + mesa.llvmpipeHook # ShapeMaterial needs an OpenGL context: https://gitlab.com/ubports/development/core/lomiri-ui-toolkit/-/issues/35 152 152 xvfb-run 153 153 ]; 154 154
-2
pkgs/development/compilers/swift/compiler/default.nix
··· 234 234 ] 235 235 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 236 236 apple-sdk_swift 237 - (darwinMinVersionHook deploymentVersion) 238 237 ]; 239 238 240 239 # Will effectively be `buildInputs` when swift is put in `nativeBuildInputs`. 241 240 depsTargetTargetPropagated = lib.optionals stdenv.targetPlatform.isDarwin [ 242 241 apple-sdk_swift 243 - (darwinMinVersionHook deploymentVersion) 244 242 ]; 245 243 246 244 # This is a partial reimplementation of our setup hook. Because we reuse
-1
pkgs/development/compilers/swift/default.nix
··· 77 77 78 78 swiftpm = callPackage ./swiftpm { 79 79 inherit (darwin) DarwinTools; 80 - inherit (apple_sdk.frameworks) CryptoKit LocalAuthentication; 81 80 swift = swiftNoSwiftDriver; 82 81 }; 83 82
+6 -15
pkgs/development/compilers/swift/swiftpm/default.nix
··· 18 18 makeWrapper, 19 19 DarwinTools, # sw_vers 20 20 cctools, # vtool 21 - darwinMinVersionHook, 22 21 xcbuild, 23 - CryptoKit, 24 - LocalAuthentication, 25 22 }: 26 23 27 24 let ··· 387 384 swift-driver 388 385 swift-system 389 386 swift-tools-support-core 390 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ (darwinMinVersionHook "10.15.4") ]; 387 + ]; 391 388 392 389 cmakeFlags = [ 393 390 "-DUSE_CMAKE_INSTALL=ON" ··· 413 410 swift 414 411 swiftpm-bootstrap 415 412 ]; 416 - buildInputs = 417 - [ 418 - ncursesInput 419 - sqlite 420 - XCTest 421 - ] 422 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 423 - CryptoKit 424 - LocalAuthentication 425 - ] 426 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ (darwinMinVersionHook "10.15.4") ]; 413 + buildInputs = [ 414 + ncursesInput 415 + sqlite 416 + XCTest 417 + ]; 427 418 428 419 configurePhase = 429 420 generated.configure
+10
pkgs/development/haskell-modules/configuration-common.nix
··· 348 348 ghc-datasize = disableLibraryProfiling super.ghc-datasize; 349 349 ghc-vis = disableLibraryProfiling super.ghc-vis; 350 350 351 + # Fix 32bit struct being used for 64bit syscall on 32bit platforms 352 + # https://github.com/haskellari/lukko/issues/15 353 + lukko = appendPatches [ 354 + (fetchpatch { 355 + name = "lukko-ofd-locking-32bit.patch"; 356 + url = "https://github.com/haskellari/lukko/pull/32/commits/4e69ffad996c3771f50017b97375af249dd17c85.patch"; 357 + sha256 = "0n8vig48irjz0jckc20dzc23k16fl5hznrc0a81y02ms72msfwi1"; 358 + }) 359 + ] super.lukko; 360 + 351 361 # Fixes compilation for basement on i686 for GHC >= 9.4 352 362 # https://github.com/haskell-foundation/foundation/pull/573 353 363 # Patch would not work for GHC >= 9.2 where it breaks compilation on x86_64
+10
pkgs/development/haskell-modules/configuration-nix.nix
··· 1414 1414 ''; 1415 1415 hydraPlatforms = pkgs.lib.platforms.all; 1416 1416 broken = false; 1417 + patches = old.patches or [ ] ++ [ 1418 + (pkgs.fetchpatch { 1419 + # related: https://github.com/haskell/cabal/issues/10504 1420 + name = "suppress-error-about-missing-local-index.patch"; 1421 + url = "https://github.com/haskell/cabal/commit/d58a75ef4adab36688878420cc9e2c25bca41ec4.patch"; 1422 + hash = "sha256-IZ+agNNN9AcIJBBsT30LAkAXCAoYKF+kIhccGPFdm+8="; 1423 + stripLen = 1; 1424 + includes = [ "src/Distribution/Client/IndexUtils.hs" ]; 1425 + }) 1426 + ]; 1417 1427 }) super.cabal-install; 1418 1428 1419 1429 tailwind = addBuildDepend
+4 -1
pkgs/development/interpreters/python/mk-python-derivation.nix
··· 397 397 outputs = outputs ++ optional withDistOutput "dist"; 398 398 399 399 passthru = 400 - attrs.passthru or { } 400 + { 401 + inherit disabled; 402 + } 403 + // attrs.passthru or { } 401 404 // { 402 405 updateScript = 403 406 let
+1 -1
pkgs/development/libraries/physfs/default.nix
··· 14 14 }; 15 15 16 16 patches = [ 17 - ./dont-set-cmake-skip-rpath-${version}.patch 17 + (./. + "/dont-set-cmake-skip-rpath-${version}.patch") 18 18 ]; 19 19 20 20 nativeBuildInputs = [ cmake doxygen ];
+2 -2
pkgs/development/python-modules/fastavro/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "fastavro"; 21 - version = "1.9.7"; 21 + version = "1.10.0"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.6"; ··· 27 27 owner = pname; 28 28 repo = pname; 29 29 tag = version; 30 - hash = "sha256-hKhwQqNJ+QvYf4x9FesNOPg36m8zC6D6dmlhANXCcsk="; 30 + hash = "sha256-/YZFrEs7abm+oPn9yyLMV1X/G5VZ/s+ThpvzoQtYQu0="; 31 31 }; 32 32 33 33 preBuild = ''
+55
pkgs/development/python-modules/llm-cmd/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + # build-system 6 + setuptools, 7 + llm, 8 + # dependencies 9 + prompt-toolkit, 10 + pygments, 11 + # tests 12 + pytestCheckHook, 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "llm-cmd"; 17 + version = "0.2a0"; 18 + pyproject = true; 19 + 20 + src = fetchFromGitHub { 21 + owner = "simonw"; 22 + repo = "llm-cmd"; 23 + tag = version; 24 + hash = "sha256-RhwQEllpee/XP1p0nrgL4m+KjSZzf61J8l1jJGlg94E="; 25 + }; 26 + 27 + # Only needed until https://github.com/simonw/llm-cmd/pull/18 is merged and released 28 + patches = [ ./fix-test.patch ]; 29 + build-system = [ 30 + setuptools 31 + # Follows the reasoning from https://github.com/NixOS/nixpkgs/pull/327800#discussion_r1681586659 about including llm in build-system 32 + llm 33 + ]; 34 + 35 + dependencies = [ 36 + prompt-toolkit 37 + pygments 38 + ]; 39 + 40 + nativeCheckInputs = [ 41 + pytestCheckHook 42 + ]; 43 + 44 + pythonImportCheck = [ 45 + "llm_cmd" 46 + ]; 47 + 48 + meta = { 49 + description = "Use LLM to generate and execute commands in your shell"; 50 + homepage = "https://github.com/simonw/llm-cmd"; 51 + changelog = "https://github.com/simonw/llm-cmd/releases/tag/${version}"; 52 + license = lib.licenses.asl20; 53 + maintainers = with lib.maintainers; [ erethon ]; 54 + }; 55 + }
+13
pkgs/development/python-modules/llm-cmd/fix-test.patch
··· 1 + diff --git a/tests/test_cmd.py b/tests/test_cmd.py 2 + index 02b5db8..578ebaa 100644 3 + --- a/tests/test_cmd.py 4 + +++ b/tests/test_cmd.py 5 + @@ -1,6 +1,7 @@ 6 + -from llm.plugins import pm 7 + +from llm.plugins import load_plugins, pm 8 + 9 + 10 + def test_plugin_is_installed(): 11 + + load_plugins() 12 + names = [mod.__name__ for mod in pm.get_plugins()] 13 + assert "llm_cmd" in names
-2
pkgs/development/python-modules/materialx/default.nix
··· 11 11 openimageio, 12 12 imath, 13 13 python, 14 - darwinMinVersionHook, 15 14 apple-sdk_14, 16 15 }: 17 16 ··· 40 39 ] 41 40 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 42 41 apple-sdk_14 43 - (darwinMinVersionHook "10.15") 44 42 ] 45 43 ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ 46 44 libX11
+2 -2
pkgs/development/python-modules/pylibjpeg-openjpeg/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "pylibjpeg-openjpeg"; 21 - version = "2.3.0"; 21 + version = "2.4.0"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.8"; ··· 27 27 owner = "pydicom"; 28 28 repo = "pylibjpeg-openjpeg"; 29 29 tag = "v${version}"; 30 - hash = "sha256-cCDnARElNn+uY+HQ39OnGJRz2vTz0I8s0Oe+qGvqM1o="; 30 + hash = "sha256-T38Ur5NLF9iPTrDwT3GYgI6621A90zWP/leUxSqA70w="; 31 31 }; 32 32 33 33 # don't use vendored openjpeg submodule:
+2 -2
pkgs/development/python-modules/python-telegram-bot/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "python-telegram-bot"; 27 - version = "21.9"; 27 + version = "21.10"; 28 28 pyproject = true; 29 29 30 30 disabled = pythonOlder "3.8"; ··· 33 33 owner = "python-telegram-bot"; 34 34 repo = "python-telegram-bot"; 35 35 tag = "v${version}"; 36 - hash = "sha256-eJC8oH5iAMdCN546LzoRwlNq0gQqu8fZGscQlOzb/aY="; 36 + hash = "sha256-iiKdEYCQgYehiyM6/rWrm76n6m2q7ok2OIfkkWztBSs="; 37 37 }; 38 38 39 39 build-system = [
+2 -2
pkgs/development/python-modules/unstructured-inference/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "unstructured-inference"; 26 - version = "0.7.37"; 26 + version = "0.8.1"; 27 27 format = "setuptools"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "Unstructured-IO"; 31 31 repo = "unstructured-inference"; 32 32 tag = version; 33 - hash = "sha256-2k7gFlBUevVnz2A5pvUE4eIGmXwEr5s4F8BbX6j5lzc="; 33 + hash = "sha256-U4mB3A0a1el7lmzsqTzjDBxp6lA4RpsceUt0OVGYVG4="; 34 34 }; 35 35 36 36 propagatedBuildInputs =
+16 -4
pkgs/development/python-modules/vbuild/default.nix
··· 5 5 poetry-core, 6 6 pscript, 7 7 pytestCheckHook, 8 + pythonAtLeast, 8 9 pythonOlder, 9 10 }: 10 11 ··· 38 39 39 40 pythonImportsCheck = [ "vbuild" ]; 40 41 41 - disabledTests = [ 42 - # Tests require network access 43 - "test_min" 44 - "test_pycomp_onlineClosurable" 42 + disabledTests = 43 + [ 44 + # Tests require network access 45 + "test_min" 46 + "test_pycomp_onlineClosurable" 47 + ] 48 + ++ lib.optionals (pythonAtLeast "3.13") [ 49 + "test_ok" 50 + ]; 51 + 52 + disabledTestPaths = lib.optionals (pythonAtLeast "3.13") [ 53 + # https://github.com/manatlan/vbuild/issues/13 54 + "tests/test_py2js.py" 55 + "tests/test_PyStdLibIncludeOrNot.py" 56 + "test_py_comp.py" 45 57 ]; 46 58 47 59 meta = {
+2 -2
pkgs/development/tools/misc/premake/5.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "premake5"; 13 - version = "5.0.0-beta2"; 13 + version = "5.0.0-beta4"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "premake"; 17 17 repo = "premake-core"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-2R5gq4jaQsp8Ny1oGuIYkef0kn2UG9jMf20vq0714oY="; 19 + sha256 = "sha256-sNLCyIHWDW/8jIrMFCZAqtWsh4SRugqtPR4HaoW/Vzk="; 20 20 }; 21 21 22 22 buildInputs =
+5 -3
pkgs/development/tools/misc/premake/no-curl-ca.patch
··· 11 11 index 474f5cfa..553bbd02 100644 12 12 --- a/contrib/curl/premake5.lua 13 13 +++ b/contrib/curl/premake5.lua 14 - @@ -32,19 +32,6 @@ project "curl-lib" 14 + @@ -36,21 +36,6 @@ project "curl-lib" 15 15 16 16 -- find the location of the ca bundle 17 17 local ca = nil 18 18 - for _, f in ipairs { 19 19 - "/etc/ssl/certs/ca-certificates.crt", 20 + - "/etc/openssl/certs/ca-certificates.crt", 20 21 - "/etc/pki/tls/certs/ca-bundle.crt", 21 22 - "/usr/share/ssl/certs/ca-bundle.crt", 22 23 - "/usr/local/share/certs/ca-root.crt", 23 24 - "/usr/local/share/certs/ca-root-nss.crt", 24 25 - "/etc/certs/ca-certificates.crt", 25 - - "/etc/ssl/cert.pem" } do 26 + - "/etc/ssl/cert.pem", 27 + - "/boot/system/data/ssl/CARootCertificates.pem" } do 26 28 - if os.isfile(f) then 27 29 - ca = f 28 30 - break 29 31 - end 30 32 - end 31 33 if ca then 32 - defines { 'CURL_CA_BUNDLE="' .. ca .. '"' } 34 + defines { 'CURL_CA_BUNDLE="' .. ca .. '"', 'CURL_CA_PATH="' .. path.getdirectory(ca) .. '"' } 33 35 end 34 36 -- 35 37 2.37.2
+38
pkgs/os-specific/linux/tsme-test/default.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + kernel, 6 + }: 7 + 8 + stdenv.mkDerivation { 9 + pname = "tsme-test"; 10 + version = "${kernel.version}-unstable-2022-12-07"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "AMDESE"; 14 + repo = "mem-encryption-tests"; 15 + rev = "7abb072ffc50ceb0b4145ae84105ce6c91bd1ff4"; 16 + hash = "sha256-v0KAGlo6ci0Ij1NAiMUK0vWDHBiFnpQG4Er6ArIKncQ="; 17 + }; 18 + 19 + nativeBuildInputs = kernel.moduleBuildDependencies; 20 + 21 + makeFlags = kernel.makeFlags ++ [ 22 + "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 23 + ]; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + install -Dm644 -t $out/lib/modules/${kernel.modDirVersion}/extra tsme-test.ko 28 + runHook postInstall 29 + ''; 30 + 31 + meta = { 32 + description = "Kernel driver to test the status of AMD TSME (Transparent Secure Memory Encryption)"; 33 + license = lib.licenses.gpl2Only; 34 + maintainers = with lib.maintainers; [ lyn ]; 35 + platforms = lib.platforms.linux; 36 + homepage = "https://github.com/AMDESE/mem-encryption-tests"; 37 + }; 38 + }
+2 -4
pkgs/servers/home-assistant/custom-components/waste_collection_schedule/package.nix
··· 7 7 icalevents, 8 8 lxml, 9 9 pycryptodome, 10 - recurring-ical-events, 11 10 }: 12 11 13 12 buildHomeAssistantComponent rec { 14 13 owner = "mampfes"; 15 14 domain = "waste_collection_schedule"; 16 - version = "2.5.0"; 15 + version = "2.6.0"; 17 16 18 17 src = fetchFromGitHub { 19 18 inherit owner; 20 19 repo = "hacs_waste_collection_schedule"; 21 20 tag = version; 22 - hash = "sha256-8AUaVcVCZ+WCLrmEQhIEohEWmeG6g7t3EjVdF9FUyJQ="; 21 + hash = "sha256-gfL5Nxe8io7DTya5x8aQ5PhxiH8rb8L3/CA+UqKEDAk="; 23 22 }; 24 23 25 24 dependencies = [ ··· 28 27 icalevents 29 28 lxml 30 29 pycryptodome 31 - recurring-ical-events 32 30 ]; 33 31 34 32 meta = with lib; {
-9620
pkgs/servers/monitoring/openobserve/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "actix" 7 - version = "0.13.5" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "de7fa236829ba0841304542f7614c42b80fca007455315c45c785ccfa873a85b" 10 - dependencies = [ 11 - "actix-macros", 12 - "actix-rt", 13 - "actix_derive", 14 - "bitflags 2.5.0", 15 - "bytes", 16 - "crossbeam-channel", 17 - "futures-core", 18 - "futures-sink", 19 - "futures-task", 20 - "futures-util", 21 - "log", 22 - "once_cell", 23 - "parking_lot", 24 - "pin-project-lite", 25 - "smallvec", 26 - "tokio", 27 - "tokio-util", 28 - ] 29 - 30 - [[package]] 31 - name = "actix-codec" 32 - version = "0.5.2" 33 - source = "registry+https://github.com/rust-lang/crates.io-index" 34 - checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" 35 - dependencies = [ 36 - "bitflags 2.5.0", 37 - "bytes", 38 - "futures-core", 39 - "futures-sink", 40 - "memchr", 41 - "pin-project-lite", 42 - "tokio", 43 - "tokio-util", 44 - "tracing", 45 - ] 46 - 47 - [[package]] 48 - name = "actix-cors" 49 - version = "0.7.0" 50 - source = "registry+https://github.com/rust-lang/crates.io-index" 51 - checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331" 52 - dependencies = [ 53 - "actix-utils", 54 - "actix-web", 55 - "derive_more", 56 - "futures-util", 57 - "log", 58 - "once_cell", 59 - "smallvec", 60 - ] 61 - 62 - [[package]] 63 - name = "actix-http" 64 - version = "3.8.0" 65 - source = "registry+https://github.com/rust-lang/crates.io-index" 66 - checksum = "3ae682f693a9cd7b058f2b0b5d9a6d7728a8555779bedbbc35dd88528611d020" 67 - dependencies = [ 68 - "actix-codec", 69 - "actix-rt", 70 - "actix-service", 71 - "actix-utils", 72 - "ahash 0.8.11", 73 - "base64 0.22.1", 74 - "bitflags 2.5.0", 75 - "brotli 6.0.0", 76 - "bytes", 77 - "bytestring", 78 - "derive_more", 79 - "encoding_rs", 80 - "flate2", 81 - "futures-core", 82 - "h2 0.3.26", 83 - "http 0.2.12", 84 - "httparse", 85 - "httpdate", 86 - "itoa", 87 - "language-tags", 88 - "local-channel", 89 - "mime", 90 - "percent-encoding", 91 - "pin-project-lite", 92 - "rand", 93 - "sha1", 94 - "smallvec", 95 - "tokio", 96 - "tokio-util", 97 - "tracing", 98 - "zstd", 99 - ] 100 - 101 - [[package]] 102 - name = "actix-macros" 103 - version = "0.2.4" 104 - source = "registry+https://github.com/rust-lang/crates.io-index" 105 - checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" 106 - dependencies = [ 107 - "quote", 108 - "syn 2.0.66", 109 - ] 110 - 111 - [[package]] 112 - name = "actix-multipart" 113 - version = "0.6.2" 114 - source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "d974dd6c4f78d102d057c672dcf6faa618fafa9df91d44f9c466688fc1275a3a" 116 - dependencies = [ 117 - "actix-multipart-derive", 118 - "actix-utils", 119 - "actix-web", 120 - "bytes", 121 - "derive_more", 122 - "futures-core", 123 - "futures-util", 124 - "httparse", 125 - "local-waker", 126 - "log", 127 - "memchr", 128 - "mime", 129 - "rand", 130 - "serde", 131 - "serde_json", 132 - "serde_plain", 133 - "tempfile", 134 - "tokio", 135 - ] 136 - 137 - [[package]] 138 - name = "actix-multipart-derive" 139 - version = "0.6.1" 140 - source = "registry+https://github.com/rust-lang/crates.io-index" 141 - checksum = "0a0a77f836d869f700e5b47ac7c3c8b9c8bc82e4aec861954c6198abee3ebd4d" 142 - dependencies = [ 143 - "darling", 144 - "parse-size", 145 - "proc-macro2", 146 - "quote", 147 - "syn 2.0.66", 148 - ] 149 - 150 - [[package]] 151 - name = "actix-router" 152 - version = "0.5.3" 153 - source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" 155 - dependencies = [ 156 - "bytestring", 157 - "cfg-if 1.0.0", 158 - "http 0.2.12", 159 - "regex", 160 - "regex-lite", 161 - "serde", 162 - "tracing", 163 - ] 164 - 165 - [[package]] 166 - name = "actix-rt" 167 - version = "2.10.0" 168 - source = "registry+https://github.com/rust-lang/crates.io-index" 169 - checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" 170 - dependencies = [ 171 - "futures-core", 172 - "tokio", 173 - ] 174 - 175 - [[package]] 176 - name = "actix-server" 177 - version = "2.4.0" 178 - source = "registry+https://github.com/rust-lang/crates.io-index" 179 - checksum = "b02303ce8d4e8be5b855af6cf3c3a08f3eff26880faad82bab679c22d3650cb5" 180 - dependencies = [ 181 - "actix-rt", 182 - "actix-service", 183 - "actix-utils", 184 - "futures-core", 185 - "futures-util", 186 - "mio", 187 - "socket2", 188 - "tokio", 189 - "tracing", 190 - ] 191 - 192 - [[package]] 193 - name = "actix-service" 194 - version = "2.0.2" 195 - source = "registry+https://github.com/rust-lang/crates.io-index" 196 - checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 197 - dependencies = [ 198 - "futures-core", 199 - "paste", 200 - "pin-project-lite", 201 - ] 202 - 203 - [[package]] 204 - name = "actix-tls" 205 - version = "3.4.0" 206 - source = "registry+https://github.com/rust-lang/crates.io-index" 207 - checksum = "ac453898d866cdbecdbc2334fe1738c747b4eba14a677261f2b768ba05329389" 208 - dependencies = [ 209 - "actix-rt", 210 - "actix-service", 211 - "actix-utils", 212 - "futures-core", 213 - "http 0.2.12", 214 - "http 1.1.0", 215 - "impl-more", 216 - "pin-project-lite", 217 - "tokio", 218 - "tokio-util", 219 - "tracing", 220 - ] 221 - 222 - [[package]] 223 - name = "actix-utils" 224 - version = "3.0.1" 225 - source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 227 - dependencies = [ 228 - "local-waker", 229 - "pin-project-lite", 230 - ] 231 - 232 - [[package]] 233 - name = "actix-web" 234 - version = "4.8.0" 235 - source = "registry+https://github.com/rust-lang/crates.io-index" 236 - checksum = "1988c02af8d2b718c05bc4aeb6a66395b7cdf32858c2c71131e5637a8c05a9ff" 237 - dependencies = [ 238 - "actix-codec", 239 - "actix-http", 240 - "actix-macros", 241 - "actix-router", 242 - "actix-rt", 243 - "actix-server", 244 - "actix-service", 245 - "actix-utils", 246 - "actix-web-codegen", 247 - "ahash 0.8.11", 248 - "bytes", 249 - "bytestring", 250 - "cfg-if 1.0.0", 251 - "cookie", 252 - "derive_more", 253 - "encoding_rs", 254 - "futures-core", 255 - "futures-util", 256 - "itoa", 257 - "language-tags", 258 - "log", 259 - "mime", 260 - "once_cell", 261 - "pin-project-lite", 262 - "regex", 263 - "regex-lite", 264 - "serde", 265 - "serde_json", 266 - "serde_urlencoded", 267 - "smallvec", 268 - "socket2", 269 - "time", 270 - "url", 271 - ] 272 - 273 - [[package]] 274 - name = "actix-web-actors" 275 - version = "4.3.0" 276 - source = "registry+https://github.com/rust-lang/crates.io-index" 277 - checksum = "420b001bb709d8510c3e2659dae046e54509ff9528018d09c78381e765a1f9fa" 278 - dependencies = [ 279 - "actix", 280 - "actix-codec", 281 - "actix-http", 282 - "actix-web", 283 - "bytes", 284 - "bytestring", 285 - "futures-core", 286 - "pin-project-lite", 287 - "tokio", 288 - "tokio-util", 289 - ] 290 - 291 - [[package]] 292 - name = "actix-web-codegen" 293 - version = "4.3.0" 294 - source = "registry+https://github.com/rust-lang/crates.io-index" 295 - checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" 296 - dependencies = [ 297 - "actix-router", 298 - "proc-macro2", 299 - "quote", 300 - "syn 2.0.66", 301 - ] 302 - 303 - [[package]] 304 - name = "actix-web-httpauth" 305 - version = "0.8.2" 306 - source = "registry+https://github.com/rust-lang/crates.io-index" 307 - checksum = "456348ed9dcd72a13a1f4a660449fafdecee9ac8205552e286809eb5b0b29bd3" 308 - dependencies = [ 309 - "actix-utils", 310 - "actix-web", 311 - "base64 0.22.1", 312 - "futures-core", 313 - "futures-util", 314 - "log", 315 - "pin-project-lite", 316 - ] 317 - 318 - [[package]] 319 - name = "actix-web-lab" 320 - version = "0.20.2" 321 - source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "7675c1a84eec1b179c844cdea8488e3e409d8e4984026e92fa96c87dd86f33c6" 323 - dependencies = [ 324 - "actix-http", 325 - "actix-router", 326 - "actix-service", 327 - "actix-utils", 328 - "actix-web", 329 - "actix-web-lab-derive", 330 - "ahash 0.8.11", 331 - "arc-swap", 332 - "async-trait", 333 - "bytes", 334 - "bytestring", 335 - "csv", 336 - "derive_more", 337 - "futures-core", 338 - "futures-util", 339 - "http 0.2.12", 340 - "impl-more", 341 - "itertools 0.12.1", 342 - "local-channel", 343 - "mediatype", 344 - "mime", 345 - "once_cell", 346 - "pin-project-lite", 347 - "regex", 348 - "serde", 349 - "serde_html_form", 350 - "serde_json", 351 - "tokio", 352 - "tokio-stream", 353 - "tracing", 354 - ] 355 - 356 - [[package]] 357 - name = "actix-web-lab-derive" 358 - version = "0.20.0" 359 - source = "registry+https://github.com/rust-lang/crates.io-index" 360 - checksum = "9aa0b287c8de4a76b691f29dbb5451e8dd5b79d777eaf87350c9b0cbfdb5e968" 361 - dependencies = [ 362 - "proc-macro2", 363 - "quote", 364 - "syn 2.0.66", 365 - ] 366 - 367 - [[package]] 368 - name = "actix-web-opentelemetry" 369 - version = "0.17.0" 370 - source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "d6e0327e7b731c61b77fb54b278477aa3ebd09752bde38d169863167636e2d48" 372 - dependencies = [ 373 - "actix-http", 374 - "actix-web", 375 - "futures-util", 376 - "opentelemetry", 377 - "opentelemetry-semantic-conventions", 378 - "serde", 379 - ] 380 - 381 - [[package]] 382 - name = "actix-web-prometheus" 383 - version = "0.1.2" 384 - source = "registry+https://github.com/rust-lang/crates.io-index" 385 - checksum = "ad5228fd1a6b5d0f60d636776c2a70acc9fc667034bb4ac02ec4259f0eeeab6c" 386 - dependencies = [ 387 - "actix-service", 388 - "actix-web", 389 - "futures-lite 1.13.0", 390 - "pin-project", 391 - "prometheus", 392 - "quanta 0.10.1", 393 - "thiserror", 394 - ] 395 - 396 - [[package]] 397 - name = "actix-web-rust-embed-responder" 398 - version = "2.2.2" 399 - source = "registry+https://github.com/rust-lang/crates.io-index" 400 - checksum = "fd68c2339c8e4498a4b9b83392b58b85c337c835baf38c90757e3236e1121c97" 401 - dependencies = [ 402 - "actix-web", 403 - "base64 0.21.7", 404 - "brotli 3.5.0", 405 - "chrono", 406 - "flate2", 407 - "futures-core", 408 - "lazy_static", 409 - "regex", 410 - "rust-embed-for-web", 411 - ] 412 - 413 - [[package]] 414 - name = "actix-ws" 415 - version = "0.2.5" 416 - source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "535aec173810be3ca6f25dd5b4d431ae7125d62000aa3cbae1ec739921b02cf3" 418 - dependencies = [ 419 - "actix-codec", 420 - "actix-http", 421 - "actix-web", 422 - "futures-core", 423 - "tokio", 424 - ] 425 - 426 - [[package]] 427 - name = "actix_derive" 428 - version = "0.6.1" 429 - source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "7c7db3d5a9718568e4cf4a537cfd7070e6e6ff7481510d0237fb529ac850f6d3" 431 - dependencies = [ 432 - "proc-macro2", 433 - "quote", 434 - "syn 2.0.66", 435 - ] 436 - 437 - [[package]] 438 - name = "addr2line" 439 - version = "0.22.0" 440 - source = "registry+https://github.com/rust-lang/crates.io-index" 441 - checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 442 - dependencies = [ 443 - "gimli", 444 - ] 445 - 446 - [[package]] 447 - name = "adler" 448 - version = "1.0.2" 449 - source = "registry+https://github.com/rust-lang/crates.io-index" 450 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 451 - 452 - [[package]] 453 - name = "adler32" 454 - version = "1.2.0" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 457 - 458 - [[package]] 459 - name = "aead" 460 - version = "0.5.2" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 463 - dependencies = [ 464 - "crypto-common", 465 - "generic-array", 466 - ] 467 - 468 - [[package]] 469 - name = "aes" 470 - version = "0.8.4" 471 - source = "registry+https://github.com/rust-lang/crates.io-index" 472 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 473 - dependencies = [ 474 - "cfg-if 1.0.0", 475 - "cipher", 476 - "cpufeatures", 477 - ] 478 - 479 - [[package]] 480 - name = "ahash" 481 - version = "0.7.8" 482 - source = "registry+https://github.com/rust-lang/crates.io-index" 483 - checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 484 - dependencies = [ 485 - "getrandom", 486 - "once_cell", 487 - "version_check", 488 - ] 489 - 490 - [[package]] 491 - name = "ahash" 492 - version = "0.8.11" 493 - source = "registry+https://github.com/rust-lang/crates.io-index" 494 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 495 - dependencies = [ 496 - "cfg-if 1.0.0", 497 - "const-random", 498 - "getrandom", 499 - "once_cell", 500 - "serde", 501 - "version_check", 502 - "zerocopy", 503 - ] 504 - 505 - [[package]] 506 - name = "aho-corasick" 507 - version = "1.1.3" 508 - source = "registry+https://github.com/rust-lang/crates.io-index" 509 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 510 - dependencies = [ 511 - "memchr", 512 - ] 513 - 514 - [[package]] 515 - name = "alloc-no-stdlib" 516 - version = "2.0.4" 517 - source = "registry+https://github.com/rust-lang/crates.io-index" 518 - checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 519 - 520 - [[package]] 521 - name = "alloc-stdlib" 522 - version = "0.2.2" 523 - source = "registry+https://github.com/rust-lang/crates.io-index" 524 - checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 525 - dependencies = [ 526 - "alloc-no-stdlib", 527 - ] 528 - 529 - [[package]] 530 - name = "allocator-api2" 531 - version = "0.2.18" 532 - source = "registry+https://github.com/rust-lang/crates.io-index" 533 - checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 534 - 535 - [[package]] 536 - name = "android-tzdata" 537 - version = "0.1.1" 538 - source = "registry+https://github.com/rust-lang/crates.io-index" 539 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 540 - 541 - [[package]] 542 - name = "android_system_properties" 543 - version = "0.1.5" 544 - source = "registry+https://github.com/rust-lang/crates.io-index" 545 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 546 - dependencies = [ 547 - "libc", 548 - ] 549 - 550 - [[package]] 551 - name = "anes" 552 - version = "0.1.6" 553 - source = "registry+https://github.com/rust-lang/crates.io-index" 554 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 555 - 556 - [[package]] 557 - name = "ansi_term" 558 - version = "0.12.1" 559 - source = "registry+https://github.com/rust-lang/crates.io-index" 560 - checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 561 - dependencies = [ 562 - "winapi 0.3.9", 563 - ] 564 - 565 - [[package]] 566 - name = "anstream" 567 - version = "0.6.14" 568 - source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 570 - dependencies = [ 571 - "anstyle", 572 - "anstyle-parse", 573 - "anstyle-query", 574 - "anstyle-wincon", 575 - "colorchoice", 576 - "is_terminal_polyfill", 577 - "utf8parse", 578 - ] 579 - 580 - [[package]] 581 - name = "anstyle" 582 - version = "1.0.7" 583 - source = "registry+https://github.com/rust-lang/crates.io-index" 584 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 585 - 586 - [[package]] 587 - name = "anstyle-parse" 588 - version = "0.2.4" 589 - source = "registry+https://github.com/rust-lang/crates.io-index" 590 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 591 - dependencies = [ 592 - "utf8parse", 593 - ] 594 - 595 - [[package]] 596 - name = "anstyle-query" 597 - version = "1.1.0" 598 - source = "registry+https://github.com/rust-lang/crates.io-index" 599 - checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 600 - dependencies = [ 601 - "windows-sys 0.52.0", 602 - ] 603 - 604 - [[package]] 605 - name = "anstyle-wincon" 606 - version = "3.0.3" 607 - source = "registry+https://github.com/rust-lang/crates.io-index" 608 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 609 - dependencies = [ 610 - "anstyle", 611 - "windows-sys 0.52.0", 612 - ] 613 - 614 - [[package]] 615 - name = "anyhow" 616 - version = "1.0.86" 617 - source = "registry+https://github.com/rust-lang/crates.io-index" 618 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 619 - 620 - [[package]] 621 - name = "arbitrary" 622 - version = "1.3.2" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 625 - dependencies = [ 626 - "derive_arbitrary", 627 - ] 628 - 629 - [[package]] 630 - name = "arc-swap" 631 - version = "1.7.1" 632 - source = "registry+https://github.com/rust-lang/crates.io-index" 633 - checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 634 - 635 - [[package]] 636 - name = "argon2" 637 - version = "0.5.3" 638 - source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" 640 - dependencies = [ 641 - "base64ct", 642 - "blake2", 643 - "cpufeatures", 644 - "password-hash", 645 - ] 646 - 647 - [[package]] 648 - name = "arrayref" 649 - version = "0.3.7" 650 - source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 652 - 653 - [[package]] 654 - name = "arrayvec" 655 - version = "0.7.4" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 658 - 659 - [[package]] 660 - name = "arrow" 661 - version = "52.2.0" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "05048a8932648b63f21c37d88b552ccc8a65afb6dfe9fc9f30ce79174c2e7a85" 664 - dependencies = [ 665 - "arrow-arith", 666 - "arrow-array", 667 - "arrow-buffer", 668 - "arrow-cast", 669 - "arrow-csv", 670 - "arrow-data", 671 - "arrow-ipc", 672 - "arrow-json", 673 - "arrow-ord", 674 - "arrow-row", 675 - "arrow-schema", 676 - "arrow-select", 677 - "arrow-string", 678 - ] 679 - 680 - [[package]] 681 - name = "arrow-arith" 682 - version = "52.2.0" 683 - source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "1d8a57966e43bfe9a3277984a14c24ec617ad874e4c0e1d2a1b083a39cfbf22c" 685 - dependencies = [ 686 - "arrow-array", 687 - "arrow-buffer", 688 - "arrow-data", 689 - "arrow-schema", 690 - "chrono", 691 - "half", 692 - "num", 693 - ] 694 - 695 - [[package]] 696 - name = "arrow-array" 697 - version = "52.2.0" 698 - source = "registry+https://github.com/rust-lang/crates.io-index" 699 - checksum = "16f4a9468c882dc66862cef4e1fd8423d47e67972377d85d80e022786427768c" 700 - dependencies = [ 701 - "ahash 0.8.11", 702 - "arrow-buffer", 703 - "arrow-data", 704 - "arrow-schema", 705 - "chrono", 706 - "chrono-tz", 707 - "half", 708 - "hashbrown 0.14.5", 709 - "num", 710 - ] 711 - 712 - [[package]] 713 - name = "arrow-buffer" 714 - version = "52.2.0" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "c975484888fc95ec4a632cdc98be39c085b1bb518531b0c80c5d462063e5daa1" 717 - dependencies = [ 718 - "bytes", 719 - "half", 720 - "num", 721 - ] 722 - 723 - [[package]] 724 - name = "arrow-cast" 725 - version = "52.2.0" 726 - source = "registry+https://github.com/rust-lang/crates.io-index" 727 - checksum = "da26719e76b81d8bc3faad1d4dbdc1bcc10d14704e63dc17fc9f3e7e1e567c8e" 728 - dependencies = [ 729 - "arrow-array", 730 - "arrow-buffer", 731 - "arrow-data", 732 - "arrow-schema", 733 - "arrow-select", 734 - "atoi", 735 - "base64 0.22.1", 736 - "chrono", 737 - "comfy-table", 738 - "half", 739 - "lexical-core", 740 - "num", 741 - "ryu", 742 - ] 743 - 744 - [[package]] 745 - name = "arrow-csv" 746 - version = "52.2.0" 747 - source = "registry+https://github.com/rust-lang/crates.io-index" 748 - checksum = "c13c36dc5ddf8c128df19bab27898eea64bf9da2b555ec1cd17a8ff57fba9ec2" 749 - dependencies = [ 750 - "arrow-array", 751 - "arrow-buffer", 752 - "arrow-cast", 753 - "arrow-data", 754 - "arrow-schema", 755 - "chrono", 756 - "csv", 757 - "csv-core", 758 - "lazy_static", 759 - "lexical-core", 760 - "regex", 761 - ] 762 - 763 - [[package]] 764 - name = "arrow-data" 765 - version = "52.2.0" 766 - source = "registry+https://github.com/rust-lang/crates.io-index" 767 - checksum = "dd9d6f18c65ef7a2573ab498c374d8ae364b4a4edf67105357491c031f716ca5" 768 - dependencies = [ 769 - "arrow-buffer", 770 - "arrow-schema", 771 - "half", 772 - "num", 773 - ] 774 - 775 - [[package]] 776 - name = "arrow-ipc" 777 - version = "52.2.0" 778 - source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "e786e1cdd952205d9a8afc69397b317cfbb6e0095e445c69cda7e8da5c1eeb0f" 780 - dependencies = [ 781 - "arrow-array", 782 - "arrow-buffer", 783 - "arrow-cast", 784 - "arrow-data", 785 - "arrow-schema", 786 - "flatbuffers", 787 - "lz4_flex", 788 - "zstd", 789 - ] 790 - 791 - [[package]] 792 - name = "arrow-json" 793 - version = "52.2.0" 794 - source = "registry+https://github.com/rust-lang/crates.io-index" 795 - checksum = "fb22284c5a2a01d73cebfd88a33511a3234ab45d66086b2ca2d1228c3498e445" 796 - dependencies = [ 797 - "arrow-array", 798 - "arrow-buffer", 799 - "arrow-cast", 800 - "arrow-data", 801 - "arrow-schema", 802 - "chrono", 803 - "half", 804 - "indexmap 2.2.6", 805 - "lexical-core", 806 - "num", 807 - "serde", 808 - "serde_json", 809 - ] 810 - 811 - [[package]] 812 - name = "arrow-ord" 813 - version = "52.2.0" 814 - source = "registry+https://github.com/rust-lang/crates.io-index" 815 - checksum = "42745f86b1ab99ef96d1c0bcf49180848a64fe2c7a7a0d945bc64fa2b21ba9bc" 816 - dependencies = [ 817 - "arrow-array", 818 - "arrow-buffer", 819 - "arrow-data", 820 - "arrow-schema", 821 - "arrow-select", 822 - "half", 823 - "num", 824 - ] 825 - 826 - [[package]] 827 - name = "arrow-row" 828 - version = "52.2.0" 829 - source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "4cd09a518c602a55bd406bcc291a967b284cfa7a63edfbf8b897ea4748aad23c" 831 - dependencies = [ 832 - "ahash 0.8.11", 833 - "arrow-array", 834 - "arrow-buffer", 835 - "arrow-data", 836 - "arrow-schema", 837 - "half", 838 - ] 839 - 840 - [[package]] 841 - name = "arrow-schema" 842 - version = "52.2.0" 843 - source = "registry+https://github.com/rust-lang/crates.io-index" 844 - checksum = "9e972cd1ff4a4ccd22f86d3e53e835c2ed92e0eea6a3e8eadb72b4f1ac802cf8" 845 - dependencies = [ 846 - "serde", 847 - ] 848 - 849 - [[package]] 850 - name = "arrow-select" 851 - version = "52.2.0" 852 - source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "600bae05d43483d216fb3494f8c32fdbefd8aa4e1de237e790dbb3d9f44690a3" 854 - dependencies = [ 855 - "ahash 0.8.11", 856 - "arrow-array", 857 - "arrow-buffer", 858 - "arrow-data", 859 - "arrow-schema", 860 - "num", 861 - ] 862 - 863 - [[package]] 864 - name = "arrow-string" 865 - version = "52.2.0" 866 - source = "registry+https://github.com/rust-lang/crates.io-index" 867 - checksum = "f0dc1985b67cb45f6606a248ac2b4a288849f196bab8c657ea5589f47cdd55e6" 868 - dependencies = [ 869 - "arrow-array", 870 - "arrow-buffer", 871 - "arrow-data", 872 - "arrow-schema", 873 - "arrow-select", 874 - "memchr", 875 - "num", 876 - "regex", 877 - "regex-syntax 0.8.4", 878 - ] 879 - 880 - [[package]] 881 - name = "ascii-canvas" 882 - version = "3.0.0" 883 - source = "registry+https://github.com/rust-lang/crates.io-index" 884 - checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" 885 - dependencies = [ 886 - "term", 887 - ] 888 - 889 - [[package]] 890 - name = "askama" 891 - version = "0.12.1" 892 - source = "registry+https://github.com/rust-lang/crates.io-index" 893 - checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28" 894 - dependencies = [ 895 - "askama_derive", 896 - "askama_escape", 897 - "humansize", 898 - "num-traits", 899 - "percent-encoding", 900 - ] 901 - 902 - [[package]] 903 - name = "askama_derive" 904 - version = "0.12.5" 905 - source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" 907 - dependencies = [ 908 - "askama_parser", 909 - "basic-toml", 910 - "mime", 911 - "mime_guess", 912 - "proc-macro2", 913 - "quote", 914 - "serde", 915 - "syn 2.0.66", 916 - ] 917 - 918 - [[package]] 919 - name = "askama_escape" 920 - version = "0.10.3" 921 - source = "registry+https://github.com/rust-lang/crates.io-index" 922 - checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 923 - 924 - [[package]] 925 - name = "askama_parser" 926 - version = "0.2.1" 927 - source = "registry+https://github.com/rust-lang/crates.io-index" 928 - checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" 929 - dependencies = [ 930 - "nom", 931 - ] 932 - 933 - [[package]] 934 - name = "async-channel" 935 - version = "2.3.1" 936 - source = "registry+https://github.com/rust-lang/crates.io-index" 937 - checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 938 - dependencies = [ 939 - "concurrent-queue", 940 - "event-listener-strategy", 941 - "futures-core", 942 - "pin-project-lite", 943 - ] 944 - 945 - [[package]] 946 - name = "async-compression" 947 - version = "0.4.11" 948 - source = "registry+https://github.com/rust-lang/crates.io-index" 949 - checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5" 950 - dependencies = [ 951 - "bzip2", 952 - "flate2", 953 - "futures-core", 954 - "futures-io", 955 - "memchr", 956 - "pin-project-lite", 957 - "tokio", 958 - "xz2", 959 - "zstd", 960 - "zstd-safe", 961 - ] 962 - 963 - [[package]] 964 - name = "async-fs" 965 - version = "2.1.2" 966 - source = "registry+https://github.com/rust-lang/crates.io-index" 967 - checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" 968 - dependencies = [ 969 - "async-lock", 970 - "blocking", 971 - "futures-lite 2.3.0", 972 - ] 973 - 974 - [[package]] 975 - name = "async-lock" 976 - version = "3.4.0" 977 - source = "registry+https://github.com/rust-lang/crates.io-index" 978 - checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 979 - dependencies = [ 980 - "event-listener 5.3.1", 981 - "event-listener-strategy", 982 - "pin-project-lite", 983 - ] 984 - 985 - [[package]] 986 - name = "async-nats" 987 - version = "0.35.1" 988 - source = "registry+https://github.com/rust-lang/crates.io-index" 989 - checksum = "ab8df97cb8fc4a884af29ab383e9292ea0939cfcdd7d2a17179086dc6c427e7f" 990 - dependencies = [ 991 - "base64 0.22.1", 992 - "bytes", 993 - "futures", 994 - "memchr", 995 - "nkeys", 996 - "nuid", 997 - "once_cell", 998 - "portable-atomic", 999 - "rand", 1000 - "regex", 1001 - "ring", 1002 - "rustls-native-certs 0.7.0", 1003 - "rustls-pemfile 2.1.2", 1004 - "rustls-webpki 0.102.4", 1005 - "serde", 1006 - "serde_json", 1007 - "serde_nanos", 1008 - "serde_repr", 1009 - "thiserror", 1010 - "time", 1011 - "tokio", 1012 - "tokio-rustls 0.26.0", 1013 - "tracing", 1014 - "tryhard", 1015 - "url", 1016 - ] 1017 - 1018 - [[package]] 1019 - name = "async-recursion" 1020 - version = "1.1.1" 1021 - source = "registry+https://github.com/rust-lang/crates.io-index" 1022 - checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 1023 - dependencies = [ 1024 - "proc-macro2", 1025 - "quote", 1026 - "syn 2.0.66", 1027 - ] 1028 - 1029 - [[package]] 1030 - name = "async-stream" 1031 - version = "0.3.5" 1032 - source = "registry+https://github.com/rust-lang/crates.io-index" 1033 - checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 1034 - dependencies = [ 1035 - "async-stream-impl", 1036 - "futures-core", 1037 - "pin-project-lite", 1038 - ] 1039 - 1040 - [[package]] 1041 - name = "async-stream-impl" 1042 - version = "0.3.5" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 1045 - dependencies = [ 1046 - "proc-macro2", 1047 - "quote", 1048 - "syn 2.0.66", 1049 - ] 1050 - 1051 - [[package]] 1052 - name = "async-task" 1053 - version = "4.7.1" 1054 - source = "registry+https://github.com/rust-lang/crates.io-index" 1055 - checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 1056 - 1057 - [[package]] 1058 - name = "async-trait" 1059 - version = "0.1.80" 1060 - source = "registry+https://github.com/rust-lang/crates.io-index" 1061 - checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 1062 - dependencies = [ 1063 - "proc-macro2", 1064 - "quote", 1065 - "syn 2.0.66", 1066 - ] 1067 - 1068 - [[package]] 1069 - name = "async-tungstenite" 1070 - version = "0.23.0" 1071 - source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "a1e9efbe14612da0a19fb983059a0b621e9cf6225d7018ecab4f9988215540dc" 1073 - dependencies = [ 1074 - "futures-io", 1075 - "futures-util", 1076 - "log", 1077 - "pin-project-lite", 1078 - "tokio", 1079 - "tungstenite 0.20.1", 1080 - ] 1081 - 1082 - [[package]] 1083 - name = "async-walkdir" 1084 - version = "1.0.0" 1085 - source = "registry+https://github.com/rust-lang/crates.io-index" 1086 - checksum = "73f6338023cbfc0555eccb8e83d3d4dcf1183b51ca9140a03b1dbb8a559193db" 1087 - dependencies = [ 1088 - "async-fs", 1089 - "futures-lite 2.3.0", 1090 - ] 1091 - 1092 - [[package]] 1093 - name = "atoi" 1094 - version = "2.0.0" 1095 - source = "registry+https://github.com/rust-lang/crates.io-index" 1096 - checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 1097 - dependencies = [ 1098 - "num-traits", 1099 - ] 1100 - 1101 - [[package]] 1102 - name = "atomic" 1103 - version = "0.5.3" 1104 - source = "registry+https://github.com/rust-lang/crates.io-index" 1105 - checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba" 1106 - 1107 - [[package]] 1108 - name = "atomic-waker" 1109 - version = "1.1.2" 1110 - source = "registry+https://github.com/rust-lang/crates.io-index" 1111 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 1112 - 1113 - [[package]] 1114 - name = "atty" 1115 - version = "0.2.14" 1116 - source = "registry+https://github.com/rust-lang/crates.io-index" 1117 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 1118 - dependencies = [ 1119 - "hermit-abi 0.1.19", 1120 - "libc", 1121 - "winapi 0.3.9", 1122 - ] 1123 - 1124 - [[package]] 1125 - name = "autocfg" 1126 - version = "1.3.0" 1127 - source = "registry+https://github.com/rust-lang/crates.io-index" 1128 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 1129 - 1130 - [[package]] 1131 - name = "awc" 1132 - version = "3.5.0" 1133 - source = "registry+https://github.com/rust-lang/crates.io-index" 1134 - checksum = "fe6b67e44fb95d1dc9467e3930383e115f9b4ed60ca689db41409284e967a12d" 1135 - dependencies = [ 1136 - "actix-codec", 1137 - "actix-http", 1138 - "actix-rt", 1139 - "actix-service", 1140 - "actix-tls", 1141 - "actix-utils", 1142 - "base64 0.22.1", 1143 - "bytes", 1144 - "cfg-if 1.0.0", 1145 - "cookie", 1146 - "derive_more", 1147 - "futures-core", 1148 - "futures-util", 1149 - "h2 0.3.26", 1150 - "http 0.2.12", 1151 - "itoa", 1152 - "log", 1153 - "mime", 1154 - "percent-encoding", 1155 - "pin-project-lite", 1156 - "rand", 1157 - "serde", 1158 - "serde_json", 1159 - "serde_urlencoded", 1160 - "tokio", 1161 - ] 1162 - 1163 - [[package]] 1164 - name = "axum" 1165 - version = "0.6.20" 1166 - source = "registry+https://github.com/rust-lang/crates.io-index" 1167 - checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" 1168 - dependencies = [ 1169 - "async-trait", 1170 - "axum-core", 1171 - "bitflags 1.3.2", 1172 - "bytes", 1173 - "futures-util", 1174 - "http 0.2.12", 1175 - "http-body 0.4.6", 1176 - "hyper 0.14.29", 1177 - "itoa", 1178 - "matchit", 1179 - "memchr", 1180 - "mime", 1181 - "percent-encoding", 1182 - "pin-project-lite", 1183 - "rustversion", 1184 - "serde", 1185 - "sync_wrapper", 1186 - "tower", 1187 - "tower-layer", 1188 - "tower-service", 1189 - ] 1190 - 1191 - [[package]] 1192 - name = "axum-core" 1193 - version = "0.3.4" 1194 - source = "registry+https://github.com/rust-lang/crates.io-index" 1195 - checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 1196 - dependencies = [ 1197 - "async-trait", 1198 - "bytes", 1199 - "futures-util", 1200 - "http 0.2.12", 1201 - "http-body 0.4.6", 1202 - "mime", 1203 - "rustversion", 1204 - "tower-layer", 1205 - "tower-service", 1206 - ] 1207 - 1208 - [[package]] 1209 - name = "backtrace" 1210 - version = "0.3.73" 1211 - source = "registry+https://github.com/rust-lang/crates.io-index" 1212 - checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 1213 - dependencies = [ 1214 - "addr2line", 1215 - "cc", 1216 - "cfg-if 1.0.0", 1217 - "libc", 1218 - "miniz_oxide", 1219 - "object", 1220 - "rustc-demangle", 1221 - ] 1222 - 1223 - [[package]] 1224 - name = "base-encode" 1225 - version = "0.3.1" 1226 - source = "registry+https://github.com/rust-lang/crates.io-index" 1227 - checksum = "a17bd29f7c70f32e9387f4d4acfa5ea7b7749ef784fb78cf382df97069337b8c" 1228 - 1229 - [[package]] 1230 - name = "base16" 1231 - version = "0.2.1" 1232 - source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "d27c3610c36aee21ce8ac510e6224498de4228ad772a171ed65643a24693a5a8" 1234 - 1235 - [[package]] 1236 - name = "base62" 1237 - version = "2.0.2" 1238 - source = "registry+https://github.com/rust-lang/crates.io-index" 1239 - checksum = "f879ef8fc74665ed7f0e6127cb106315888fc2744f68e14b74f83edbb2a08992" 1240 - 1241 - [[package]] 1242 - name = "base64" 1243 - version = "0.12.3" 1244 - source = "registry+https://github.com/rust-lang/crates.io-index" 1245 - checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 1246 - 1247 - [[package]] 1248 - name = "base64" 1249 - version = "0.13.1" 1250 - source = "registry+https://github.com/rust-lang/crates.io-index" 1251 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 1252 - 1253 - [[package]] 1254 - name = "base64" 1255 - version = "0.21.7" 1256 - source = "registry+https://github.com/rust-lang/crates.io-index" 1257 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 1258 - 1259 - [[package]] 1260 - name = "base64" 1261 - version = "0.22.1" 1262 - source = "registry+https://github.com/rust-lang/crates.io-index" 1263 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 1264 - 1265 - [[package]] 1266 - name = "base64ct" 1267 - version = "1.6.0" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 1270 - 1271 - [[package]] 1272 - name = "base85rs" 1273 - version = "0.1.3" 1274 - source = "registry+https://github.com/rust-lang/crates.io-index" 1275 - checksum = "87678d33a2af71f019ed11f52db246ca6c5557edee2cccbe689676d1ad9c6b5a" 1276 - 1277 - [[package]] 1278 - name = "basic-toml" 1279 - version = "0.1.9" 1280 - source = "registry+https://github.com/rust-lang/crates.io-index" 1281 - checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" 1282 - dependencies = [ 1283 - "serde", 1284 - ] 1285 - 1286 - [[package]] 1287 - name = "bincode" 1288 - version = "1.3.3" 1289 - source = "registry+https://github.com/rust-lang/crates.io-index" 1290 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 1291 - dependencies = [ 1292 - "serde", 1293 - ] 1294 - 1295 - [[package]] 1296 - name = "bit-set" 1297 - version = "0.5.3" 1298 - source = "registry+https://github.com/rust-lang/crates.io-index" 1299 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 1300 - dependencies = [ 1301 - "bit-vec", 1302 - ] 1303 - 1304 - [[package]] 1305 - name = "bit-vec" 1306 - version = "0.6.3" 1307 - source = "registry+https://github.com/rust-lang/crates.io-index" 1308 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 1309 - 1310 - [[package]] 1311 - name = "bitflags" 1312 - version = "1.3.2" 1313 - source = "registry+https://github.com/rust-lang/crates.io-index" 1314 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 1315 - 1316 - [[package]] 1317 - name = "bitflags" 1318 - version = "2.5.0" 1319 - source = "registry+https://github.com/rust-lang/crates.io-index" 1320 - checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 1321 - dependencies = [ 1322 - "serde", 1323 - ] 1324 - 1325 - [[package]] 1326 - name = "bitvec" 1327 - version = "1.0.1" 1328 - source = "registry+https://github.com/rust-lang/crates.io-index" 1329 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 1330 - dependencies = [ 1331 - "funty", 1332 - "radium", 1333 - "tap", 1334 - "wyz", 1335 - ] 1336 - 1337 - [[package]] 1338 - name = "blake2" 1339 - version = "0.10.6" 1340 - source = "registry+https://github.com/rust-lang/crates.io-index" 1341 - checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 1342 - dependencies = [ 1343 - "digest", 1344 - ] 1345 - 1346 - [[package]] 1347 - name = "blake3" 1348 - version = "1.5.1" 1349 - source = "registry+https://github.com/rust-lang/crates.io-index" 1350 - checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52" 1351 - dependencies = [ 1352 - "arrayref", 1353 - "arrayvec", 1354 - "cc", 1355 - "cfg-if 1.0.0", 1356 - "constant_time_eq", 1357 - "rayon", 1358 - ] 1359 - 1360 - [[package]] 1361 - name = "block-buffer" 1362 - version = "0.10.4" 1363 - source = "registry+https://github.com/rust-lang/crates.io-index" 1364 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 1365 - dependencies = [ 1366 - "generic-array", 1367 - ] 1368 - 1369 - [[package]] 1370 - name = "block-padding" 1371 - version = "0.3.3" 1372 - source = "registry+https://github.com/rust-lang/crates.io-index" 1373 - checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 1374 - dependencies = [ 1375 - "generic-array", 1376 - ] 1377 - 1378 - [[package]] 1379 - name = "block2" 1380 - version = "0.5.1" 1381 - source = "registry+https://github.com/rust-lang/crates.io-index" 1382 - checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 1383 - dependencies = [ 1384 - "objc2", 1385 - ] 1386 - 1387 - [[package]] 1388 - name = "blocking" 1389 - version = "1.6.1" 1390 - source = "registry+https://github.com/rust-lang/crates.io-index" 1391 - checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 1392 - dependencies = [ 1393 - "async-channel", 1394 - "async-task", 1395 - "futures-io", 1396 - "futures-lite 2.3.0", 1397 - "piper", 1398 - ] 1399 - 1400 - [[package]] 1401 - name = "borsh" 1402 - version = "1.5.1" 1403 - source = "registry+https://github.com/rust-lang/crates.io-index" 1404 - checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" 1405 - dependencies = [ 1406 - "borsh-derive", 1407 - "cfg_aliases 0.2.1", 1408 - ] 1409 - 1410 - [[package]] 1411 - name = "borsh-derive" 1412 - version = "1.5.1" 1413 - source = "registry+https://github.com/rust-lang/crates.io-index" 1414 - checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b" 1415 - dependencies = [ 1416 - "once_cell", 1417 - "proc-macro-crate 3.1.0", 1418 - "proc-macro2", 1419 - "quote", 1420 - "syn 2.0.66", 1421 - "syn_derive", 1422 - ] 1423 - 1424 - [[package]] 1425 - name = "brotli" 1426 - version = "3.5.0" 1427 - source = "registry+https://github.com/rust-lang/crates.io-index" 1428 - checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391" 1429 - dependencies = [ 1430 - "alloc-no-stdlib", 1431 - "alloc-stdlib", 1432 - "brotli-decompressor 2.5.1", 1433 - ] 1434 - 1435 - [[package]] 1436 - name = "brotli" 1437 - version = "6.0.0" 1438 - source = "registry+https://github.com/rust-lang/crates.io-index" 1439 - checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 1440 - dependencies = [ 1441 - "alloc-no-stdlib", 1442 - "alloc-stdlib", 1443 - "brotli-decompressor 4.0.1", 1444 - ] 1445 - 1446 - [[package]] 1447 - name = "brotli-decompressor" 1448 - version = "2.5.1" 1449 - source = "registry+https://github.com/rust-lang/crates.io-index" 1450 - checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 1451 - dependencies = [ 1452 - "alloc-no-stdlib", 1453 - "alloc-stdlib", 1454 - ] 1455 - 1456 - [[package]] 1457 - name = "brotli-decompressor" 1458 - version = "4.0.1" 1459 - source = "registry+https://github.com/rust-lang/crates.io-index" 1460 - checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" 1461 - dependencies = [ 1462 - "alloc-no-stdlib", 1463 - "alloc-stdlib", 1464 - ] 1465 - 1466 - [[package]] 1467 - name = "bstr" 1468 - version = "1.9.1" 1469 - source = "registry+https://github.com/rust-lang/crates.io-index" 1470 - checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 1471 - dependencies = [ 1472 - "memchr", 1473 - "serde", 1474 - ] 1475 - 1476 - [[package]] 1477 - name = "bumpalo" 1478 - version = "3.16.0" 1479 - source = "registry+https://github.com/rust-lang/crates.io-index" 1480 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 1481 - 1482 - [[package]] 1483 - name = "bytecheck" 1484 - version = "0.6.12" 1485 - source = "registry+https://github.com/rust-lang/crates.io-index" 1486 - checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 1487 - dependencies = [ 1488 - "bytecheck_derive", 1489 - "ptr_meta", 1490 - "simdutf8", 1491 - ] 1492 - 1493 - [[package]] 1494 - name = "bytecheck_derive" 1495 - version = "0.6.12" 1496 - source = "registry+https://github.com/rust-lang/crates.io-index" 1497 - checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 1498 - dependencies = [ 1499 - "proc-macro2", 1500 - "quote", 1501 - "syn 1.0.109", 1502 - ] 1503 - 1504 - [[package]] 1505 - name = "byteorder" 1506 - version = "1.5.0" 1507 - source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 1509 - 1510 - [[package]] 1511 - name = "bytes" 1512 - version = "1.6.0" 1513 - source = "registry+https://github.com/rust-lang/crates.io-index" 1514 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 1515 - dependencies = [ 1516 - "serde", 1517 - ] 1518 - 1519 - [[package]] 1520 - name = "bytestring" 1521 - version = "1.3.1" 1522 - source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72" 1524 - dependencies = [ 1525 - "bytes", 1526 - ] 1527 - 1528 - [[package]] 1529 - name = "bzip2" 1530 - version = "0.4.4" 1531 - source = "registry+https://github.com/rust-lang/crates.io-index" 1532 - checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 1533 - dependencies = [ 1534 - "bzip2-sys", 1535 - "libc", 1536 - ] 1537 - 1538 - [[package]] 1539 - name = "bzip2-sys" 1540 - version = "0.1.11+1.0.8" 1541 - source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 1543 - dependencies = [ 1544 - "cc", 1545 - "libc", 1546 - "pkg-config", 1547 - ] 1548 - 1549 - [[package]] 1550 - name = "c_linked_list" 1551 - version = "1.1.1" 1552 - source = "registry+https://github.com/rust-lang/crates.io-index" 1553 - checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" 1554 - 1555 - [[package]] 1556 - name = "cactus" 1557 - version = "1.0.7" 1558 - source = "registry+https://github.com/rust-lang/crates.io-index" 1559 - checksum = "acbc26382d871df4b7442e3df10a9402bf3cf5e55cbd66f12be38861425f0564" 1560 - 1561 - [[package]] 1562 - name = "cast" 1563 - version = "0.3.0" 1564 - source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 1566 - 1567 - [[package]] 1568 - name = "cbc" 1569 - version = "0.1.2" 1570 - source = "registry+https://github.com/rust-lang/crates.io-index" 1571 - checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 1572 - dependencies = [ 1573 - "cipher", 1574 - ] 1575 - 1576 - [[package]] 1577 - name = "cc" 1578 - version = "1.0.99" 1579 - source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" 1581 - dependencies = [ 1582 - "jobserver", 1583 - "libc", 1584 - "once_cell", 1585 - ] 1586 - 1587 - [[package]] 1588 - name = "cesu8" 1589 - version = "1.1.0" 1590 - source = "registry+https://github.com/rust-lang/crates.io-index" 1591 - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 1592 - 1593 - [[package]] 1594 - name = "cfb-mode" 1595 - version = "0.8.2" 1596 - source = "registry+https://github.com/rust-lang/crates.io-index" 1597 - checksum = "738b8d467867f80a71351933f70461f5b56f24d5c93e0cf216e59229c968d330" 1598 - dependencies = [ 1599 - "cipher", 1600 - ] 1601 - 1602 - [[package]] 1603 - name = "cfg-if" 1604 - version = "0.1.10" 1605 - source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 1607 - 1608 - [[package]] 1609 - name = "cfg-if" 1610 - version = "1.0.0" 1611 - source = "registry+https://github.com/rust-lang/crates.io-index" 1612 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1613 - 1614 - [[package]] 1615 - name = "cfg_aliases" 1616 - version = "0.1.1" 1617 - source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 1619 - 1620 - [[package]] 1621 - name = "cfg_aliases" 1622 - version = "0.2.1" 1623 - source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 1625 - 1626 - [[package]] 1627 - name = "cfgrammar" 1628 - version = "0.12.0" 1629 - source = "registry+https://github.com/rust-lang/crates.io-index" 1630 - checksum = "bf74ea341ae8905eac9a234b6a5a845e118c25bbbdecf85ec77431a8b3bfa0be" 1631 - dependencies = [ 1632 - "indexmap 1.9.3", 1633 - "lazy_static", 1634 - "num-traits", 1635 - "regex", 1636 - "serde", 1637 - "vob", 1638 - ] 1639 - 1640 - [[package]] 1641 - name = "chacha20" 1642 - version = "0.9.1" 1643 - source = "registry+https://github.com/rust-lang/crates.io-index" 1644 - checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" 1645 - dependencies = [ 1646 - "cfg-if 1.0.0", 1647 - "cipher", 1648 - "cpufeatures", 1649 - ] 1650 - 1651 - [[package]] 1652 - name = "chacha20poly1305" 1653 - version = "0.10.1" 1654 - source = "registry+https://github.com/rust-lang/crates.io-index" 1655 - checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" 1656 - dependencies = [ 1657 - "aead", 1658 - "chacha20", 1659 - "cipher", 1660 - "poly1305", 1661 - "zeroize", 1662 - ] 1663 - 1664 - [[package]] 1665 - name = "charset" 1666 - version = "0.1.3" 1667 - source = "registry+https://github.com/rust-lang/crates.io-index" 1668 - checksum = "18e9079d1a12a2cc2bffb5db039c43661836ead4082120d5844f02555aca2d46" 1669 - dependencies = [ 1670 - "base64 0.13.1", 1671 - "encoding_rs", 1672 - ] 1673 - 1674 - [[package]] 1675 - name = "chromiumoxide" 1676 - version = "0.5.7" 1677 - source = "git+https://github.com/mattsse/chromiumoxide?rev=348967500868c2b5dfcb3930fe483b2ff17b35ff#348967500868c2b5dfcb3930fe483b2ff17b35ff" 1678 - dependencies = [ 1679 - "async-tungstenite", 1680 - "base64 0.21.7", 1681 - "cfg-if 1.0.0", 1682 - "chromiumoxide_cdp", 1683 - "chromiumoxide_fetcher", 1684 - "chromiumoxide_types", 1685 - "dunce", 1686 - "fnv", 1687 - "futures", 1688 - "futures-timer", 1689 - "pin-project-lite", 1690 - "reqwest 0.11.27", 1691 - "serde", 1692 - "serde_json", 1693 - "thiserror", 1694 - "tokio", 1695 - "tracing", 1696 - "url", 1697 - "which", 1698 - "winreg 0.51.0", 1699 - ] 1700 - 1701 - [[package]] 1702 - name = "chromiumoxide_cdp" 1703 - version = "0.5.2" 1704 - source = "git+https://github.com/mattsse/chromiumoxide?rev=348967500868c2b5dfcb3930fe483b2ff17b35ff#348967500868c2b5dfcb3930fe483b2ff17b35ff" 1705 - dependencies = [ 1706 - "chromiumoxide_pdl", 1707 - "chromiumoxide_types", 1708 - "serde", 1709 - "serde_json", 1710 - ] 1711 - 1712 - [[package]] 1713 - name = "chromiumoxide_fetcher" 1714 - version = "0.5.3" 1715 - source = "git+https://github.com/mattsse/chromiumoxide?rev=348967500868c2b5dfcb3930fe483b2ff17b35ff#348967500868c2b5dfcb3930fe483b2ff17b35ff" 1716 - dependencies = [ 1717 - "anyhow", 1718 - "directories", 1719 - "os_info", 1720 - "reqwest 0.11.27", 1721 - "thiserror", 1722 - "tokio", 1723 - "zip", 1724 - ] 1725 - 1726 - [[package]] 1727 - name = "chromiumoxide_pdl" 1728 - version = "0.5.2" 1729 - source = "git+https://github.com/mattsse/chromiumoxide?rev=348967500868c2b5dfcb3930fe483b2ff17b35ff#348967500868c2b5dfcb3930fe483b2ff17b35ff" 1730 - dependencies = [ 1731 - "chromiumoxide_types", 1732 - "either", 1733 - "heck 0.4.1", 1734 - "once_cell", 1735 - "proc-macro2", 1736 - "quote", 1737 - "regex", 1738 - "serde", 1739 - "serde_json", 1740 - ] 1741 - 1742 - [[package]] 1743 - name = "chromiumoxide_types" 1744 - version = "0.5.2" 1745 - source = "git+https://github.com/mattsse/chromiumoxide?rev=348967500868c2b5dfcb3930fe483b2ff17b35ff#348967500868c2b5dfcb3930fe483b2ff17b35ff" 1746 - dependencies = [ 1747 - "serde", 1748 - "serde_json", 1749 - ] 1750 - 1751 - [[package]] 1752 - name = "chrono" 1753 - version = "0.4.38" 1754 - source = "registry+https://github.com/rust-lang/crates.io-index" 1755 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 1756 - dependencies = [ 1757 - "android-tzdata", 1758 - "iana-time-zone", 1759 - "js-sys", 1760 - "num-traits", 1761 - "serde", 1762 - "wasm-bindgen", 1763 - "windows-targets 0.52.5", 1764 - ] 1765 - 1766 - [[package]] 1767 - name = "chrono-tz" 1768 - version = "0.9.0" 1769 - source = "registry+https://github.com/rust-lang/crates.io-index" 1770 - checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb" 1771 - dependencies = [ 1772 - "chrono", 1773 - "chrono-tz-build", 1774 - "phf", 1775 - ] 1776 - 1777 - [[package]] 1778 - name = "chrono-tz-build" 1779 - version = "0.3.0" 1780 - source = "registry+https://github.com/rust-lang/crates.io-index" 1781 - checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1" 1782 - dependencies = [ 1783 - "parse-zoneinfo", 1784 - "phf", 1785 - "phf_codegen", 1786 - ] 1787 - 1788 - [[package]] 1789 - name = "chumsky" 1790 - version = "0.9.3" 1791 - source = "registry+https://github.com/rust-lang/crates.io-index" 1792 - checksum = "8eebd66744a15ded14960ab4ccdbfb51ad3b81f51f3f04a80adac98c985396c9" 1793 - dependencies = [ 1794 - "hashbrown 0.14.5", 1795 - "stacker", 1796 - ] 1797 - 1798 - [[package]] 1799 - name = "ciborium" 1800 - version = "0.2.2" 1801 - source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 1803 - dependencies = [ 1804 - "ciborium-io", 1805 - "ciborium-ll", 1806 - "serde", 1807 - ] 1808 - 1809 - [[package]] 1810 - name = "ciborium-io" 1811 - version = "0.2.2" 1812 - source = "registry+https://github.com/rust-lang/crates.io-index" 1813 - checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 1814 - 1815 - [[package]] 1816 - name = "ciborium-ll" 1817 - version = "0.2.2" 1818 - source = "registry+https://github.com/rust-lang/crates.io-index" 1819 - checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 1820 - dependencies = [ 1821 - "ciborium-io", 1822 - "half", 1823 - ] 1824 - 1825 - [[package]] 1826 - name = "cidr" 1827 - version = "0.2.3" 1828 - source = "registry+https://github.com/rust-lang/crates.io-index" 1829 - checksum = "6bdf600c45bd958cf2945c445264471cca8b6c8e67bc87b71affd6d7e5682621" 1830 - 1831 - [[package]] 1832 - name = "cidr-utils" 1833 - version = "0.6.1" 1834 - source = "registry+https://github.com/rust-lang/crates.io-index" 1835 - checksum = "25c0a9fb70c2c2cc2a520aa259b1d1345650046a07df1b6da1d3cefcd327f43e" 1836 - dependencies = [ 1837 - "cidr", 1838 - "num-bigint", 1839 - "num-traits", 1840 - ] 1841 - 1842 - [[package]] 1843 - name = "cipher" 1844 - version = "0.4.4" 1845 - source = "registry+https://github.com/rust-lang/crates.io-index" 1846 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1847 - dependencies = [ 1848 - "crypto-common", 1849 - "inout", 1850 - "zeroize", 1851 - ] 1852 - 1853 - [[package]] 1854 - name = "cityhasher" 1855 - version = "0.1.0" 1856 - source = "registry+https://github.com/rust-lang/crates.io-index" 1857 - checksum = "ceab37c9e94f42414cccae77e930232c517f1bb190947018cffb0ab41fc40992" 1858 - 1859 - [[package]] 1860 - name = "clap" 1861 - version = "3.2.25" 1862 - source = "registry+https://github.com/rust-lang/crates.io-index" 1863 - checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 1864 - dependencies = [ 1865 - "atty", 1866 - "bitflags 1.3.2", 1867 - "clap_derive 3.2.25", 1868 - "clap_lex 0.2.4", 1869 - "indexmap 1.9.3", 1870 - "once_cell", 1871 - "strsim 0.10.0", 1872 - "termcolor", 1873 - "textwrap", 1874 - ] 1875 - 1876 - [[package]] 1877 - name = "clap" 1878 - version = "4.5.7" 1879 - source = "registry+https://github.com/rust-lang/crates.io-index" 1880 - checksum = "5db83dced34638ad474f39f250d7fea9598bdd239eaced1bdf45d597da0f433f" 1881 - dependencies = [ 1882 - "clap_builder", 1883 - "clap_derive 4.5.5", 1884 - ] 1885 - 1886 - [[package]] 1887 - name = "clap_builder" 1888 - version = "4.5.7" 1889 - source = "registry+https://github.com/rust-lang/crates.io-index" 1890 - checksum = "f7e204572485eb3fbf28f871612191521df159bc3e15a9f5064c66dba3a8c05f" 1891 - dependencies = [ 1892 - "anstream", 1893 - "anstyle", 1894 - "clap_lex 0.7.1", 1895 - "strsim 0.11.1", 1896 - ] 1897 - 1898 - [[package]] 1899 - name = "clap_derive" 1900 - version = "3.2.25" 1901 - source = "registry+https://github.com/rust-lang/crates.io-index" 1902 - checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" 1903 - dependencies = [ 1904 - "heck 0.4.1", 1905 - "proc-macro-error", 1906 - "proc-macro2", 1907 - "quote", 1908 - "syn 1.0.109", 1909 - ] 1910 - 1911 - [[package]] 1912 - name = "clap_derive" 1913 - version = "4.5.5" 1914 - source = "registry+https://github.com/rust-lang/crates.io-index" 1915 - checksum = "c780290ccf4fb26629baa7a1081e68ced113f1d3ec302fa5948f1c381ebf06c6" 1916 - dependencies = [ 1917 - "heck 0.5.0", 1918 - "proc-macro2", 1919 - "quote", 1920 - "syn 2.0.66", 1921 - ] 1922 - 1923 - [[package]] 1924 - name = "clap_lex" 1925 - version = "0.2.4" 1926 - source = "registry+https://github.com/rust-lang/crates.io-index" 1927 - checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 1928 - dependencies = [ 1929 - "os_str_bytes", 1930 - ] 1931 - 1932 - [[package]] 1933 - name = "clap_lex" 1934 - version = "0.7.1" 1935 - source = "registry+https://github.com/rust-lang/crates.io-index" 1936 - checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 1937 - 1938 - [[package]] 1939 - name = "clipboard-win" 1940 - version = "5.4.0" 1941 - source = "registry+https://github.com/rust-lang/crates.io-index" 1942 - checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892" 1943 - dependencies = [ 1944 - "error-code", 1945 - ] 1946 - 1947 - [[package]] 1948 - name = "cloudevents-sdk" 1949 - version = "0.7.0" 1950 - source = "registry+https://github.com/rust-lang/crates.io-index" 1951 - checksum = "801713078518ab05d7c78508c14cf55173a14a1a6659421d3352c2576a6167bf" 1952 - dependencies = [ 1953 - "actix-http", 1954 - "actix-web", 1955 - "async-trait", 1956 - "base64 0.12.3", 1957 - "bitflags 1.3.2", 1958 - "bytes", 1959 - "chrono", 1960 - "delegate-attr", 1961 - "futures", 1962 - "hostname 0.3.1", 1963 - "http 0.2.12", 1964 - "serde", 1965 - "serde_json", 1966 - "snafu 0.6.10", 1967 - "url", 1968 - "uuid", 1969 - "web-sys", 1970 - ] 1971 - 1972 - [[package]] 1973 - name = "codespan-reporting" 1974 - version = "0.11.1" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 1977 - dependencies = [ 1978 - "termcolor", 1979 - "unicode-width", 1980 - ] 1981 - 1982 - [[package]] 1983 - name = "colorchoice" 1984 - version = "1.0.1" 1985 - source = "registry+https://github.com/rust-lang/crates.io-index" 1986 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 1987 - 1988 - [[package]] 1989 - name = "combine" 1990 - version = "4.6.7" 1991 - source = "registry+https://github.com/rust-lang/crates.io-index" 1992 - checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 1993 - dependencies = [ 1994 - "bytes", 1995 - "memchr", 1996 - ] 1997 - 1998 - [[package]] 1999 - name = "comfy-table" 2000 - version = "7.1.1" 2001 - source = "registry+https://github.com/rust-lang/crates.io-index" 2002 - checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7" 2003 - dependencies = [ 2004 - "strum 0.26.2", 2005 - "strum_macros 0.26.4", 2006 - "unicode-width", 2007 - ] 2008 - 2009 - [[package]] 2010 - name = "community-id" 2011 - version = "0.2.2" 2012 - source = "registry+https://github.com/rust-lang/crates.io-index" 2013 - checksum = "4f6af96839c04974cf381e427792a99913ecf3f7bfb348f153dc8a8e5f9803ad" 2014 - dependencies = [ 2015 - "anyhow", 2016 - "base64 0.21.7", 2017 - "hex", 2018 - "lazy_static", 2019 - "num_enum", 2020 - "sha1", 2021 - ] 2022 - 2023 - [[package]] 2024 - name = "concurrent-queue" 2025 - version = "2.5.0" 2026 - source = "registry+https://github.com/rust-lang/crates.io-index" 2027 - checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 2028 - dependencies = [ 2029 - "crossbeam-utils", 2030 - ] 2031 - 2032 - [[package]] 2033 - name = "config" 2034 - version = "0.1.0" 2035 - dependencies = [ 2036 - "actix-web-prometheus", 2037 - "ahash 0.8.11", 2038 - "anyhow", 2039 - "arc-swap", 2040 - "arrow", 2041 - "arrow-json", 2042 - "arrow-schema", 2043 - "async-recursion", 2044 - "async-walkdir", 2045 - "base64 0.21.7", 2046 - "bitvec", 2047 - "byteorder", 2048 - "bytes", 2049 - "chromiumoxide", 2050 - "chrono", 2051 - "cityhasher", 2052 - "dashmap", 2053 - "datafusion", 2054 - "dotenv_config", 2055 - "dotenvy", 2056 - "futures", 2057 - "get_if_addrs", 2058 - "getrandom", 2059 - "gxhash", 2060 - "hashbrown 0.14.5", 2061 - "hex", 2062 - "indexmap 2.2.6", 2063 - "itertools 0.12.1", 2064 - "lettre", 2065 - "log", 2066 - "memchr", 2067 - "murmur3", 2068 - "once_cell", 2069 - "parking_lot", 2070 - "parquet", 2071 - "prometheus", 2072 - "proto", 2073 - "rand", 2074 - "regex", 2075 - "reqwest 0.11.27", 2076 - "segment", 2077 - "serde", 2078 - "serde_json", 2079 - "sqlparser", 2080 - "svix-ksuid", 2081 - "sysinfo", 2082 - "tokio", 2083 - "tracing", 2084 - "tracing-log", 2085 - "tracing-subscriber", 2086 - "utoipa", 2087 - ] 2088 - 2089 - [[package]] 2090 - name = "console-api" 2091 - version = "0.6.0" 2092 - source = "registry+https://github.com/rust-lang/crates.io-index" 2093 - checksum = "fd326812b3fd01da5bb1af7d340d0d555fd3d4b641e7f1dfcf5962a902952787" 2094 - dependencies = [ 2095 - "futures-core", 2096 - "prost 0.12.6", 2097 - "prost-types", 2098 - "tonic 0.10.2", 2099 - "tracing-core", 2100 - ] 2101 - 2102 - [[package]] 2103 - name = "console-subscriber" 2104 - version = "0.2.0" 2105 - source = "registry+https://github.com/rust-lang/crates.io-index" 2106 - checksum = "7481d4c57092cd1c19dd541b92bdce883de840df30aa5d03fd48a3935c01842e" 2107 - dependencies = [ 2108 - "console-api", 2109 - "crossbeam-channel", 2110 - "crossbeam-utils", 2111 - "futures-task", 2112 - "hdrhistogram", 2113 - "humantime", 2114 - "prost-types", 2115 - "serde", 2116 - "serde_json", 2117 - "thread_local", 2118 - "tokio", 2119 - "tokio-stream", 2120 - "tonic 0.10.2", 2121 - "tracing", 2122 - "tracing-core", 2123 - "tracing-subscriber", 2124 - ] 2125 - 2126 - [[package]] 2127 - name = "const-oid" 2128 - version = "0.9.6" 2129 - source = "registry+https://github.com/rust-lang/crates.io-index" 2130 - checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 2131 - 2132 - [[package]] 2133 - name = "const-random" 2134 - version = "0.1.18" 2135 - source = "registry+https://github.com/rust-lang/crates.io-index" 2136 - checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 2137 - dependencies = [ 2138 - "const-random-macro", 2139 - ] 2140 - 2141 - [[package]] 2142 - name = "const-random-macro" 2143 - version = "0.1.16" 2144 - source = "registry+https://github.com/rust-lang/crates.io-index" 2145 - checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 2146 - dependencies = [ 2147 - "getrandom", 2148 - "once_cell", 2149 - "tiny-keccak", 2150 - ] 2151 - 2152 - [[package]] 2153 - name = "constant_time_eq" 2154 - version = "0.3.0" 2155 - source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 2157 - 2158 - [[package]] 2159 - name = "convert_case" 2160 - version = "0.4.0" 2161 - source = "registry+https://github.com/rust-lang/crates.io-index" 2162 - checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 2163 - 2164 - [[package]] 2165 - name = "convert_case" 2166 - version = "0.6.0" 2167 - source = "registry+https://github.com/rust-lang/crates.io-index" 2168 - checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 2169 - dependencies = [ 2170 - "unicode-segmentation", 2171 - ] 2172 - 2173 - [[package]] 2174 - name = "cookie" 2175 - version = "0.16.2" 2176 - source = "registry+https://github.com/rust-lang/crates.io-index" 2177 - checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 2178 - dependencies = [ 2179 - "percent-encoding", 2180 - "time", 2181 - "version_check", 2182 - ] 2183 - 2184 - [[package]] 2185 - name = "core-foundation" 2186 - version = "0.9.4" 2187 - source = "registry+https://github.com/rust-lang/crates.io-index" 2188 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 2189 - dependencies = [ 2190 - "core-foundation-sys", 2191 - "libc", 2192 - ] 2193 - 2194 - [[package]] 2195 - name = "core-foundation-sys" 2196 - version = "0.8.6" 2197 - source = "registry+https://github.com/rust-lang/crates.io-index" 2198 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 2199 - 2200 - [[package]] 2201 - name = "cpp_demangle" 2202 - version = "0.4.3" 2203 - source = "registry+https://github.com/rust-lang/crates.io-index" 2204 - checksum = "7e8227005286ec39567949b33df9896bcadfa6051bccca2488129f108ca23119" 2205 - dependencies = [ 2206 - "cfg-if 1.0.0", 2207 - ] 2208 - 2209 - [[package]] 2210 - name = "cpufeatures" 2211 - version = "0.2.12" 2212 - source = "registry+https://github.com/rust-lang/crates.io-index" 2213 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 2214 - dependencies = [ 2215 - "libc", 2216 - ] 2217 - 2218 - [[package]] 2219 - name = "crc" 2220 - version = "3.2.1" 2221 - source = "registry+https://github.com/rust-lang/crates.io-index" 2222 - checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 2223 - dependencies = [ 2224 - "crc-catalog", 2225 - ] 2226 - 2227 - [[package]] 2228 - name = "crc-catalog" 2229 - version = "2.4.0" 2230 - source = "registry+https://github.com/rust-lang/crates.io-index" 2231 - checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 2232 - 2233 - [[package]] 2234 - name = "crc32fast" 2235 - version = "1.4.2" 2236 - source = "registry+https://github.com/rust-lang/crates.io-index" 2237 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 2238 - dependencies = [ 2239 - "cfg-if 1.0.0", 2240 - ] 2241 - 2242 - [[package]] 2243 - name = "criterion" 2244 - version = "0.5.1" 2245 - source = "registry+https://github.com/rust-lang/crates.io-index" 2246 - checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" 2247 - dependencies = [ 2248 - "anes", 2249 - "cast", 2250 - "ciborium", 2251 - "clap 4.5.7", 2252 - "criterion-plot", 2253 - "is-terminal", 2254 - "itertools 0.10.5", 2255 - "num-traits", 2256 - "once_cell", 2257 - "oorandom", 2258 - "rayon", 2259 - "regex", 2260 - "serde", 2261 - "serde_derive", 2262 - "serde_json", 2263 - "tinytemplate", 2264 - "walkdir", 2265 - ] 2266 - 2267 - [[package]] 2268 - name = "criterion-plot" 2269 - version = "0.5.0" 2270 - source = "registry+https://github.com/rust-lang/crates.io-index" 2271 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 2272 - dependencies = [ 2273 - "cast", 2274 - "itertools 0.10.5", 2275 - ] 2276 - 2277 - [[package]] 2278 - name = "cron" 2279 - version = "0.12.1" 2280 - source = "registry+https://github.com/rust-lang/crates.io-index" 2281 - checksum = "6f8c3e73077b4b4a6ab1ea5047c37c57aee77657bc8ecd6f29b0af082d0b0c07" 2282 - dependencies = [ 2283 - "chrono", 2284 - "nom", 2285 - "once_cell", 2286 - ] 2287 - 2288 - [[package]] 2289 - name = "crossbeam-channel" 2290 - version = "0.5.13" 2291 - source = "registry+https://github.com/rust-lang/crates.io-index" 2292 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 2293 - dependencies = [ 2294 - "crossbeam-utils", 2295 - ] 2296 - 2297 - [[package]] 2298 - name = "crossbeam-deque" 2299 - version = "0.8.5" 2300 - source = "registry+https://github.com/rust-lang/crates.io-index" 2301 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 2302 - dependencies = [ 2303 - "crossbeam-epoch", 2304 - "crossbeam-utils", 2305 - ] 2306 - 2307 - [[package]] 2308 - name = "crossbeam-epoch" 2309 - version = "0.9.18" 2310 - source = "registry+https://github.com/rust-lang/crates.io-index" 2311 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 2312 - dependencies = [ 2313 - "crossbeam-utils", 2314 - ] 2315 - 2316 - [[package]] 2317 - name = "crossbeam-queue" 2318 - version = "0.3.11" 2319 - source = "registry+https://github.com/rust-lang/crates.io-index" 2320 - checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 2321 - dependencies = [ 2322 - "crossbeam-utils", 2323 - ] 2324 - 2325 - [[package]] 2326 - name = "crossbeam-utils" 2327 - version = "0.8.20" 2328 - source = "registry+https://github.com/rust-lang/crates.io-index" 2329 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 2330 - 2331 - [[package]] 2332 - name = "crunchy" 2333 - version = "0.2.2" 2334 - source = "registry+https://github.com/rust-lang/crates.io-index" 2335 - checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 2336 - 2337 - [[package]] 2338 - name = "crypto-common" 2339 - version = "0.1.6" 2340 - source = "registry+https://github.com/rust-lang/crates.io-index" 2341 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 2342 - dependencies = [ 2343 - "generic-array", 2344 - "rand_core", 2345 - "typenum", 2346 - ] 2347 - 2348 - [[package]] 2349 - name = "crypto_secretbox" 2350 - version = "0.1.1" 2351 - source = "registry+https://github.com/rust-lang/crates.io-index" 2352 - checksum = "b9d6cf87adf719ddf43a805e92c6870a531aedda35ff640442cbaf8674e141e1" 2353 - dependencies = [ 2354 - "aead", 2355 - "cipher", 2356 - "generic-array", 2357 - "poly1305", 2358 - "salsa20", 2359 - "subtle", 2360 - "zeroize", 2361 - ] 2362 - 2363 - [[package]] 2364 - name = "csv" 2365 - version = "1.3.0" 2366 - source = "registry+https://github.com/rust-lang/crates.io-index" 2367 - checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe" 2368 - dependencies = [ 2369 - "csv-core", 2370 - "itoa", 2371 - "ryu", 2372 - "serde", 2373 - ] 2374 - 2375 - [[package]] 2376 - name = "csv-core" 2377 - version = "0.1.11" 2378 - source = "registry+https://github.com/rust-lang/crates.io-index" 2379 - checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70" 2380 - dependencies = [ 2381 - "memchr", 2382 - ] 2383 - 2384 - [[package]] 2385 - name = "ctr" 2386 - version = "0.9.2" 2387 - source = "registry+https://github.com/rust-lang/crates.io-index" 2388 - checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 2389 - dependencies = [ 2390 - "cipher", 2391 - ] 2392 - 2393 - [[package]] 2394 - name = "curve25519-dalek" 2395 - version = "4.1.3" 2396 - source = "registry+https://github.com/rust-lang/crates.io-index" 2397 - checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 2398 - dependencies = [ 2399 - "cfg-if 1.0.0", 2400 - "cpufeatures", 2401 - "curve25519-dalek-derive", 2402 - "digest", 2403 - "fiat-crypto", 2404 - "rustc_version", 2405 - "subtle", 2406 - ] 2407 - 2408 - [[package]] 2409 - name = "curve25519-dalek-derive" 2410 - version = "0.1.1" 2411 - source = "registry+https://github.com/rust-lang/crates.io-index" 2412 - checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 2413 - dependencies = [ 2414 - "proc-macro2", 2415 - "quote", 2416 - "syn 2.0.66", 2417 - ] 2418 - 2419 - [[package]] 2420 - name = "darling" 2421 - version = "0.20.9" 2422 - source = "registry+https://github.com/rust-lang/crates.io-index" 2423 - checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" 2424 - dependencies = [ 2425 - "darling_core", 2426 - "darling_macro", 2427 - ] 2428 - 2429 - [[package]] 2430 - name = "darling_core" 2431 - version = "0.20.9" 2432 - source = "registry+https://github.com/rust-lang/crates.io-index" 2433 - checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" 2434 - dependencies = [ 2435 - "fnv", 2436 - "ident_case", 2437 - "proc-macro2", 2438 - "quote", 2439 - "strsim 0.11.1", 2440 - "syn 2.0.66", 2441 - ] 2442 - 2443 - [[package]] 2444 - name = "darling_macro" 2445 - version = "0.20.9" 2446 - source = "registry+https://github.com/rust-lang/crates.io-index" 2447 - checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" 2448 - dependencies = [ 2449 - "darling_core", 2450 - "quote", 2451 - "syn 2.0.66", 2452 - ] 2453 - 2454 - [[package]] 2455 - name = "dashmap" 2456 - version = "6.0.1" 2457 - source = "registry+https://github.com/rust-lang/crates.io-index" 2458 - checksum = "804c8821570c3f8b70230c2ba75ffa5c0f9a4189b9a432b6656c536712acae28" 2459 - dependencies = [ 2460 - "cfg-if 1.0.0", 2461 - "crossbeam-utils", 2462 - "hashbrown 0.14.5", 2463 - "lock_api", 2464 - "once_cell", 2465 - "parking_lot_core", 2466 - "serde", 2467 - ] 2468 - 2469 - [[package]] 2470 - name = "data-encoding" 2471 - version = "2.6.0" 2472 - source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 2474 - 2475 - [[package]] 2476 - name = "datafusion" 2477 - version = "41.0.0" 2478 - source = "registry+https://github.com/rust-lang/crates.io-index" 2479 - checksum = "e4fd4a99fc70d40ef7e52b243b4a399c3f8d353a40d5ecb200deee05e49c61bb" 2480 - dependencies = [ 2481 - "ahash 0.8.11", 2482 - "arrow", 2483 - "arrow-array", 2484 - "arrow-ipc", 2485 - "arrow-schema", 2486 - "async-compression", 2487 - "async-trait", 2488 - "bytes", 2489 - "bzip2", 2490 - "chrono", 2491 - "dashmap", 2492 - "datafusion-catalog", 2493 - "datafusion-common", 2494 - "datafusion-common-runtime", 2495 - "datafusion-execution", 2496 - "datafusion-expr", 2497 - "datafusion-functions", 2498 - "datafusion-functions-aggregate", 2499 - "datafusion-functions-nested", 2500 - "datafusion-optimizer", 2501 - "datafusion-physical-expr", 2502 - "datafusion-physical-expr-common", 2503 - "datafusion-physical-optimizer", 2504 - "datafusion-physical-plan", 2505 - "datafusion-sql", 2506 - "flate2", 2507 - "futures", 2508 - "glob", 2509 - "half", 2510 - "hashbrown 0.14.5", 2511 - "indexmap 2.2.6", 2512 - "itertools 0.12.1", 2513 - "log", 2514 - "num_cpus", 2515 - "object_store", 2516 - "parking_lot", 2517 - "parquet", 2518 - "paste", 2519 - "pin-project-lite", 2520 - "rand", 2521 - "sqlparser", 2522 - "tempfile", 2523 - "tokio", 2524 - "tokio-util", 2525 - "url", 2526 - "uuid", 2527 - "xz2", 2528 - "zstd", 2529 - ] 2530 - 2531 - [[package]] 2532 - name = "datafusion-catalog" 2533 - version = "41.0.0" 2534 - source = "registry+https://github.com/rust-lang/crates.io-index" 2535 - checksum = "e13b3cfbd84c6003594ae1972314e3df303a27ce8ce755fcea3240c90f4c0529" 2536 - dependencies = [ 2537 - "arrow-schema", 2538 - "async-trait", 2539 - "datafusion-common", 2540 - "datafusion-execution", 2541 - "datafusion-expr", 2542 - "datafusion-physical-plan", 2543 - ] 2544 - 2545 - [[package]] 2546 - name = "datafusion-common" 2547 - version = "41.0.0" 2548 - source = "registry+https://github.com/rust-lang/crates.io-index" 2549 - checksum = "44fdbc877e3e40dcf88cc8f283d9f5c8851f0a3aa07fee657b1b75ac1ad49b9c" 2550 - dependencies = [ 2551 - "ahash 0.8.11", 2552 - "arrow", 2553 - "arrow-array", 2554 - "arrow-buffer", 2555 - "arrow-schema", 2556 - "chrono", 2557 - "half", 2558 - "hashbrown 0.14.5", 2559 - "instant", 2560 - "libc", 2561 - "num_cpus", 2562 - "object_store", 2563 - "parquet", 2564 - "sqlparser", 2565 - ] 2566 - 2567 - [[package]] 2568 - name = "datafusion-common-runtime" 2569 - version = "41.0.0" 2570 - source = "registry+https://github.com/rust-lang/crates.io-index" 2571 - checksum = "8a7496d1f664179f6ce3a5cbef6566056ccaf3ea4aa72cc455f80e62c1dd86b1" 2572 - dependencies = [ 2573 - "tokio", 2574 - ] 2575 - 2576 - [[package]] 2577 - name = "datafusion-execution" 2578 - version = "41.0.0" 2579 - source = "registry+https://github.com/rust-lang/crates.io-index" 2580 - checksum = "799e70968c815b611116951e3dd876aef04bf217da31b72eec01ee6a959336a1" 2581 - dependencies = [ 2582 - "arrow", 2583 - "chrono", 2584 - "dashmap", 2585 - "datafusion-common", 2586 - "datafusion-expr", 2587 - "futures", 2588 - "hashbrown 0.14.5", 2589 - "log", 2590 - "object_store", 2591 - "parking_lot", 2592 - "rand", 2593 - "tempfile", 2594 - "url", 2595 - ] 2596 - 2597 - [[package]] 2598 - name = "datafusion-expr" 2599 - version = "41.0.0" 2600 - source = "registry+https://github.com/rust-lang/crates.io-index" 2601 - checksum = "1c1841c409d9518c17971d15c9bae62e629eb937e6fb6c68cd32e9186f8b30d2" 2602 - dependencies = [ 2603 - "ahash 0.8.11", 2604 - "arrow", 2605 - "arrow-array", 2606 - "arrow-buffer", 2607 - "chrono", 2608 - "datafusion-common", 2609 - "paste", 2610 - "serde_json", 2611 - "sqlparser", 2612 - "strum 0.26.2", 2613 - "strum_macros 0.26.4", 2614 - ] 2615 - 2616 - [[package]] 2617 - name = "datafusion-functions" 2618 - version = "41.0.0" 2619 - source = "registry+https://github.com/rust-lang/crates.io-index" 2620 - checksum = "a8e481cf34d2a444bd8fa09b65945f0ce83dc92df8665b761505b3d9f351bebb" 2621 - dependencies = [ 2622 - "arrow", 2623 - "arrow-buffer", 2624 - "base64 0.22.1", 2625 - "blake2", 2626 - "blake3", 2627 - "chrono", 2628 - "datafusion-common", 2629 - "datafusion-execution", 2630 - "datafusion-expr", 2631 - "hashbrown 0.14.5", 2632 - "hex", 2633 - "itertools 0.12.1", 2634 - "log", 2635 - "md-5", 2636 - "rand", 2637 - "regex", 2638 - "sha2", 2639 - "unicode-segmentation", 2640 - "uuid", 2641 - ] 2642 - 2643 - [[package]] 2644 - name = "datafusion-functions-aggregate" 2645 - version = "41.0.0" 2646 - source = "registry+https://github.com/rust-lang/crates.io-index" 2647 - checksum = "2b4ece19f73c02727e5e8654d79cd5652de371352c1df3c4ac3e419ecd6943fb" 2648 - dependencies = [ 2649 - "ahash 0.8.11", 2650 - "arrow", 2651 - "arrow-schema", 2652 - "datafusion-common", 2653 - "datafusion-execution", 2654 - "datafusion-expr", 2655 - "datafusion-physical-expr-common", 2656 - "log", 2657 - "paste", 2658 - "sqlparser", 2659 - ] 2660 - 2661 - [[package]] 2662 - name = "datafusion-functions-nested" 2663 - version = "41.0.0" 2664 - source = "registry+https://github.com/rust-lang/crates.io-index" 2665 - checksum = "a1474552cc824e8c9c88177d454db5781d4b66757d4aca75719306b8343a5e8d" 2666 - dependencies = [ 2667 - "arrow", 2668 - "arrow-array", 2669 - "arrow-buffer", 2670 - "arrow-ord", 2671 - "arrow-schema", 2672 - "datafusion-common", 2673 - "datafusion-execution", 2674 - "datafusion-expr", 2675 - "datafusion-functions", 2676 - "datafusion-functions-aggregate", 2677 - "itertools 0.12.1", 2678 - "log", 2679 - "paste", 2680 - "rand", 2681 - ] 2682 - 2683 - [[package]] 2684 - name = "datafusion-optimizer" 2685 - version = "41.0.0" 2686 - source = "registry+https://github.com/rust-lang/crates.io-index" 2687 - checksum = "791ff56f55608bc542d1ea7a68a64bdc86a9413f5a381d06a39fd49c2a3ab906" 2688 - dependencies = [ 2689 - "arrow", 2690 - "async-trait", 2691 - "chrono", 2692 - "datafusion-common", 2693 - "datafusion-expr", 2694 - "datafusion-physical-expr", 2695 - "hashbrown 0.14.5", 2696 - "indexmap 2.2.6", 2697 - "itertools 0.12.1", 2698 - "log", 2699 - "paste", 2700 - "regex-syntax 0.8.4", 2701 - ] 2702 - 2703 - [[package]] 2704 - name = "datafusion-physical-expr" 2705 - version = "41.0.0" 2706 - source = "registry+https://github.com/rust-lang/crates.io-index" 2707 - checksum = "9a223962b3041304a3e20ed07a21d5de3d88d7e4e71ca192135db6d24e3365a4" 2708 - dependencies = [ 2709 - "ahash 0.8.11", 2710 - "arrow", 2711 - "arrow-array", 2712 - "arrow-buffer", 2713 - "arrow-ord", 2714 - "arrow-schema", 2715 - "arrow-string", 2716 - "base64 0.22.1", 2717 - "chrono", 2718 - "datafusion-common", 2719 - "datafusion-execution", 2720 - "datafusion-expr", 2721 - "datafusion-physical-expr-common", 2722 - "half", 2723 - "hashbrown 0.14.5", 2724 - "hex", 2725 - "indexmap 2.2.6", 2726 - "itertools 0.12.1", 2727 - "log", 2728 - "paste", 2729 - "petgraph", 2730 - "regex", 2731 - ] 2732 - 2733 - [[package]] 2734 - name = "datafusion-physical-expr-common" 2735 - version = "41.0.0" 2736 - source = "registry+https://github.com/rust-lang/crates.io-index" 2737 - checksum = "db5e7d8532a1601cd916881db87a70b0a599900d23f3db2897d389032da53bc6" 2738 - dependencies = [ 2739 - "ahash 0.8.11", 2740 - "arrow", 2741 - "datafusion-common", 2742 - "datafusion-expr", 2743 - "hashbrown 0.14.5", 2744 - "rand", 2745 - ] 2746 - 2747 - [[package]] 2748 - name = "datafusion-physical-optimizer" 2749 - version = "41.0.0" 2750 - source = "registry+https://github.com/rust-lang/crates.io-index" 2751 - checksum = "fdb9c78f308e050f5004671039786a925c3fee83b90004e9fcfd328d7febdcc0" 2752 - dependencies = [ 2753 - "datafusion-common", 2754 - "datafusion-execution", 2755 - "datafusion-physical-expr", 2756 - "datafusion-physical-plan", 2757 - ] 2758 - 2759 - [[package]] 2760 - name = "datafusion-physical-plan" 2761 - version = "41.0.0" 2762 - source = "registry+https://github.com/rust-lang/crates.io-index" 2763 - checksum = "8d1116949432eb2d30f6362707e2846d942e491052a206f2ddcb42d08aea1ffe" 2764 - dependencies = [ 2765 - "ahash 0.8.11", 2766 - "arrow", 2767 - "arrow-array", 2768 - "arrow-buffer", 2769 - "arrow-ord", 2770 - "arrow-schema", 2771 - "async-trait", 2772 - "chrono", 2773 - "datafusion-common", 2774 - "datafusion-common-runtime", 2775 - "datafusion-execution", 2776 - "datafusion-expr", 2777 - "datafusion-functions-aggregate", 2778 - "datafusion-physical-expr", 2779 - "datafusion-physical-expr-common", 2780 - "futures", 2781 - "half", 2782 - "hashbrown 0.14.5", 2783 - "indexmap 2.2.6", 2784 - "itertools 0.12.1", 2785 - "log", 2786 - "once_cell", 2787 - "parking_lot", 2788 - "pin-project-lite", 2789 - "rand", 2790 - "tokio", 2791 - ] 2792 - 2793 - [[package]] 2794 - name = "datafusion-proto" 2795 - version = "41.0.0" 2796 - source = "registry+https://github.com/rust-lang/crates.io-index" 2797 - checksum = "cf1d25864c18178d0e51438648f5e0fa08417dbbc39b642c1752cbbb1013abf0" 2798 - dependencies = [ 2799 - "arrow", 2800 - "chrono", 2801 - "datafusion", 2802 - "datafusion-common", 2803 - "datafusion-expr", 2804 - "datafusion-proto-common", 2805 - "object_store", 2806 - "prost 0.12.6", 2807 - ] 2808 - 2809 - [[package]] 2810 - name = "datafusion-proto-common" 2811 - version = "41.0.0" 2812 - source = "registry+https://github.com/rust-lang/crates.io-index" 2813 - checksum = "96a683253732334526b1cc5314a73a0f786803831f7e189ed3fe387ac50d7222" 2814 - dependencies = [ 2815 - "arrow", 2816 - "chrono", 2817 - "datafusion-common", 2818 - "object_store", 2819 - "prost 0.12.6", 2820 - ] 2821 - 2822 - [[package]] 2823 - name = "datafusion-sql" 2824 - version = "41.0.0" 2825 - source = "registry+https://github.com/rust-lang/crates.io-index" 2826 - checksum = "b45d0180711165fe94015d7c4123eb3e1cf5fb60b1506453200b8d1ce666bef0" 2827 - dependencies = [ 2828 - "arrow", 2829 - "arrow-array", 2830 - "arrow-schema", 2831 - "datafusion-common", 2832 - "datafusion-expr", 2833 - "log", 2834 - "regex", 2835 - "sqlparser", 2836 - "strum 0.26.2", 2837 - ] 2838 - 2839 - [[package]] 2840 - name = "debugid" 2841 - version = "0.8.0" 2842 - source = "registry+https://github.com/rust-lang/crates.io-index" 2843 - checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 2844 - dependencies = [ 2845 - "uuid", 2846 - ] 2847 - 2848 - [[package]] 2849 - name = "delegate-attr" 2850 - version = "0.2.9" 2851 - source = "registry+https://github.com/rust-lang/crates.io-index" 2852 - checksum = "ee7e7ea0dba407429d816e8e38dda1a467cd74737722f2ccc8eae60429a1a3ab" 2853 - dependencies = [ 2854 - "proc-macro2", 2855 - "quote", 2856 - "syn 1.0.109", 2857 - ] 2858 - 2859 - [[package]] 2860 - name = "der" 2861 - version = "0.7.9" 2862 - source = "registry+https://github.com/rust-lang/crates.io-index" 2863 - checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" 2864 - dependencies = [ 2865 - "const-oid", 2866 - "pem-rfc7468", 2867 - "zeroize", 2868 - ] 2869 - 2870 - [[package]] 2871 - name = "deranged" 2872 - version = "0.3.11" 2873 - source = "registry+https://github.com/rust-lang/crates.io-index" 2874 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 2875 - dependencies = [ 2876 - "powerfmt", 2877 - "serde", 2878 - ] 2879 - 2880 - [[package]] 2881 - name = "derive_arbitrary" 2882 - version = "1.3.2" 2883 - source = "registry+https://github.com/rust-lang/crates.io-index" 2884 - checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 2885 - dependencies = [ 2886 - "proc-macro2", 2887 - "quote", 2888 - "syn 2.0.66", 2889 - ] 2890 - 2891 - [[package]] 2892 - name = "derive_more" 2893 - version = "0.99.17" 2894 - source = "registry+https://github.com/rust-lang/crates.io-index" 2895 - checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 2896 - dependencies = [ 2897 - "convert_case 0.4.0", 2898 - "proc-macro2", 2899 - "quote", 2900 - "rustc_version", 2901 - "syn 1.0.109", 2902 - ] 2903 - 2904 - [[package]] 2905 - name = "digest" 2906 - version = "0.10.7" 2907 - source = "registry+https://github.com/rust-lang/crates.io-index" 2908 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 2909 - dependencies = [ 2910 - "block-buffer", 2911 - "const-oid", 2912 - "crypto-common", 2913 - "subtle", 2914 - ] 2915 - 2916 - [[package]] 2917 - name = "directories" 2918 - version = "5.0.1" 2919 - source = "registry+https://github.com/rust-lang/crates.io-index" 2920 - checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" 2921 - dependencies = [ 2922 - "dirs-sys", 2923 - ] 2924 - 2925 - [[package]] 2926 - name = "dirs" 2927 - version = "5.0.1" 2928 - source = "registry+https://github.com/rust-lang/crates.io-index" 2929 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 2930 - dependencies = [ 2931 - "dirs-sys", 2932 - ] 2933 - 2934 - [[package]] 2935 - name = "dirs-next" 2936 - version = "2.0.0" 2937 - source = "registry+https://github.com/rust-lang/crates.io-index" 2938 - checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 2939 - dependencies = [ 2940 - "cfg-if 1.0.0", 2941 - "dirs-sys-next", 2942 - ] 2943 - 2944 - [[package]] 2945 - name = "dirs-sys" 2946 - version = "0.4.1" 2947 - source = "registry+https://github.com/rust-lang/crates.io-index" 2948 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 2949 - dependencies = [ 2950 - "libc", 2951 - "option-ext", 2952 - "redox_users", 2953 - "windows-sys 0.48.0", 2954 - ] 2955 - 2956 - [[package]] 2957 - name = "dirs-sys-next" 2958 - version = "0.1.2" 2959 - source = "registry+https://github.com/rust-lang/crates.io-index" 2960 - checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 2961 - dependencies = [ 2962 - "libc", 2963 - "redox_users", 2964 - "winapi 0.3.9", 2965 - ] 2966 - 2967 - [[package]] 2968 - name = "displaydoc" 2969 - version = "0.2.4" 2970 - source = "registry+https://github.com/rust-lang/crates.io-index" 2971 - checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 2972 - dependencies = [ 2973 - "proc-macro2", 2974 - "quote", 2975 - "syn 2.0.66", 2976 - ] 2977 - 2978 - [[package]] 2979 - name = "dissimilar" 2980 - version = "1.0.9" 2981 - source = "registry+https://github.com/rust-lang/crates.io-index" 2982 - checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d" 2983 - 2984 - [[package]] 2985 - name = "dns-lookup" 2986 - version = "2.0.4" 2987 - source = "registry+https://github.com/rust-lang/crates.io-index" 2988 - checksum = "e5766087c2235fec47fafa4cfecc81e494ee679d0fd4a59887ea0919bfb0e4fc" 2989 - dependencies = [ 2990 - "cfg-if 1.0.0", 2991 - "libc", 2992 - "socket2", 2993 - "windows-sys 0.48.0", 2994 - ] 2995 - 2996 - [[package]] 2997 - name = "doc-comment" 2998 - version = "0.3.3" 2999 - source = "registry+https://github.com/rust-lang/crates.io-index" 3000 - checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 3001 - 3002 - [[package]] 3003 - name = "domain" 3004 - version = "0.10.1" 3005 - source = "registry+https://github.com/rust-lang/crates.io-index" 3006 - checksum = "7eefe29e8dd614abbee51a1616654cab123c4c56850ab83f5b7f1e1f9977bf7c" 3007 - dependencies = [ 3008 - "bytes", 3009 - "futures-util", 3010 - "moka", 3011 - "octseq", 3012 - "rand", 3013 - "serde", 3014 - "smallvec", 3015 - "time", 3016 - "tokio", 3017 - "tracing", 3018 - ] 3019 - 3020 - [[package]] 3021 - name = "dotenv_config" 3022 - version = "0.1.9" 3023 - source = "registry+https://github.com/rust-lang/crates.io-index" 3024 - checksum = "4bce5ef5fd13358c4135f7ec808e6eb0e4fe8a93e399ea73d9ea24e3ec3f78b5" 3025 - dependencies = [ 3026 - "anyhow", 3027 - "askama", 3028 - "convert_case 0.6.0", 3029 - ] 3030 - 3031 - [[package]] 3032 - name = "dotenvy" 3033 - version = "0.15.7" 3034 - source = "registry+https://github.com/rust-lang/crates.io-index" 3035 - checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 3036 - 3037 - [[package]] 3038 - name = "dunce" 3039 - version = "1.0.4" 3040 - source = "registry+https://github.com/rust-lang/crates.io-index" 3041 - checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 3042 - 3043 - [[package]] 3044 - name = "dyn-clone" 3045 - version = "1.0.17" 3046 - source = "registry+https://github.com/rust-lang/crates.io-index" 3047 - checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" 3048 - 3049 - [[package]] 3050 - name = "ed25519" 3051 - version = "2.2.3" 3052 - source = "registry+https://github.com/rust-lang/crates.io-index" 3053 - checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 3054 - dependencies = [ 3055 - "signature", 3056 - ] 3057 - 3058 - [[package]] 3059 - name = "ed25519-dalek" 3060 - version = "2.1.1" 3061 - source = "registry+https://github.com/rust-lang/crates.io-index" 3062 - checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 3063 - dependencies = [ 3064 - "curve25519-dalek", 3065 - "ed25519", 3066 - "sha2", 3067 - "signature", 3068 - "subtle", 3069 - ] 3070 - 3071 - [[package]] 3072 - name = "either" 3073 - version = "1.12.0" 3074 - source = "registry+https://github.com/rust-lang/crates.io-index" 3075 - checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" 3076 - dependencies = [ 3077 - "serde", 3078 - ] 3079 - 3080 - [[package]] 3081 - name = "email-encoding" 3082 - version = "0.3.0" 3083 - source = "registry+https://github.com/rust-lang/crates.io-index" 3084 - checksum = "60d1d33cdaede7e24091f039632eb5d3c7469fe5b066a985281a34fc70fa317f" 3085 - dependencies = [ 3086 - "base64 0.22.1", 3087 - "memchr", 3088 - ] 3089 - 3090 - [[package]] 3091 - name = "email_address" 3092 - version = "0.2.4" 3093 - source = "registry+https://github.com/rust-lang/crates.io-index" 3094 - checksum = "e2153bd83ebc09db15bcbdc3e2194d901804952e3dc96967e1cd3b0c5c32d112" 3095 - 3096 - [[package]] 3097 - name = "ena" 3098 - version = "0.14.3" 3099 - source = "registry+https://github.com/rust-lang/crates.io-index" 3100 - checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" 3101 - dependencies = [ 3102 - "log", 3103 - ] 3104 - 3105 - [[package]] 3106 - name = "encode_unicode" 3107 - version = "1.0.0" 3108 - source = "registry+https://github.com/rust-lang/crates.io-index" 3109 - checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 3110 - 3111 - [[package]] 3112 - name = "encoding_rs" 3113 - version = "0.8.34" 3114 - source = "registry+https://github.com/rust-lang/crates.io-index" 3115 - checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 3116 - dependencies = [ 3117 - "cfg-if 1.0.0", 3118 - ] 3119 - 3120 - [[package]] 3121 - name = "enrichment" 3122 - version = "0.1.0" 3123 - source = "git+https://github.com/openobserve/vector?rev=70e61fc344b9db2f191cfba9ad58ee08e79d30b4#70e61fc344b9db2f191cfba9ad58ee08e79d30b4" 3124 - dependencies = [ 3125 - "arc-swap", 3126 - "chrono", 3127 - "dyn-clone", 3128 - "vrl", 3129 - ] 3130 - 3131 - [[package]] 3132 - name = "enum-iterator" 3133 - version = "1.5.0" 3134 - source = "registry+https://github.com/rust-lang/crates.io-index" 3135 - checksum = "9fd242f399be1da0a5354aa462d57b4ab2b4ee0683cc552f7c007d2d12d36e94" 3136 - dependencies = [ 3137 - "enum-iterator-derive", 3138 - ] 3139 - 3140 - [[package]] 3141 - name = "enum-iterator-derive" 3142 - version = "1.4.0" 3143 - source = "registry+https://github.com/rust-lang/crates.io-index" 3144 - checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b" 3145 - dependencies = [ 3146 - "proc-macro2", 3147 - "quote", 3148 - "syn 2.0.66", 3149 - ] 3150 - 3151 - [[package]] 3152 - name = "env_logger" 3153 - version = "0.8.4" 3154 - source = "registry+https://github.com/rust-lang/crates.io-index" 3155 - checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" 3156 - dependencies = [ 3157 - "log", 3158 - "regex", 3159 - ] 3160 - 3161 - [[package]] 3162 - name = "env_logger" 3163 - version = "0.10.2" 3164 - source = "registry+https://github.com/rust-lang/crates.io-index" 3165 - checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 3166 - dependencies = [ 3167 - "humantime", 3168 - "is-terminal", 3169 - "log", 3170 - "regex", 3171 - "termcolor", 3172 - ] 3173 - 3174 - [[package]] 3175 - name = "equivalent" 3176 - version = "1.0.1" 3177 - source = "registry+https://github.com/rust-lang/crates.io-index" 3178 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 3179 - 3180 - [[package]] 3181 - name = "errno" 3182 - version = "0.3.9" 3183 - source = "registry+https://github.com/rust-lang/crates.io-index" 3184 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 3185 - dependencies = [ 3186 - "libc", 3187 - "windows-sys 0.52.0", 3188 - ] 3189 - 3190 - [[package]] 3191 - name = "error-code" 3192 - version = "3.2.0" 3193 - source = "registry+https://github.com/rust-lang/crates.io-index" 3194 - checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b" 3195 - 3196 - [[package]] 3197 - name = "etcd-client" 3198 - version = "0.12.4" 3199 - source = "registry+https://github.com/rust-lang/crates.io-index" 3200 - checksum = "4ae697f3928e8c89ae6f4dcf788059f49fd01a76dc53e63628f5a33881f5715e" 3201 - dependencies = [ 3202 - "http 0.2.12", 3203 - "prost 0.12.6", 3204 - "tokio", 3205 - "tokio-stream", 3206 - "tonic 0.10.2", 3207 - "tonic-build 0.10.2", 3208 - "tower", 3209 - "tower-service", 3210 - ] 3211 - 3212 - [[package]] 3213 - name = "etcetera" 3214 - version = "0.8.0" 3215 - source = "registry+https://github.com/rust-lang/crates.io-index" 3216 - checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 3217 - dependencies = [ 3218 - "cfg-if 1.0.0", 3219 - "home", 3220 - "windows-sys 0.48.0", 3221 - ] 3222 - 3223 - [[package]] 3224 - name = "event-listener" 3225 - version = "2.5.3" 3226 - source = "registry+https://github.com/rust-lang/crates.io-index" 3227 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 3228 - 3229 - [[package]] 3230 - name = "event-listener" 3231 - version = "5.3.1" 3232 - source = "registry+https://github.com/rust-lang/crates.io-index" 3233 - checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" 3234 - dependencies = [ 3235 - "concurrent-queue", 3236 - "parking", 3237 - "pin-project-lite", 3238 - ] 3239 - 3240 - [[package]] 3241 - name = "event-listener-strategy" 3242 - version = "0.5.2" 3243 - source = "registry+https://github.com/rust-lang/crates.io-index" 3244 - checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 3245 - dependencies = [ 3246 - "event-listener 5.3.1", 3247 - "pin-project-lite", 3248 - ] 3249 - 3250 - [[package]] 3251 - name = "exitcode" 3252 - version = "1.1.2" 3253 - source = "registry+https://github.com/rust-lang/crates.io-index" 3254 - checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" 3255 - 3256 - [[package]] 3257 - name = "expect-test" 3258 - version = "1.5.0" 3259 - source = "registry+https://github.com/rust-lang/crates.io-index" 3260 - checksum = "9e0be0a561335815e06dab7c62e50353134c796e7a6155402a64bcff66b6a5e0" 3261 - dependencies = [ 3262 - "dissimilar", 3263 - "once_cell", 3264 - ] 3265 - 3266 - [[package]] 3267 - name = "fastrand" 3268 - version = "1.9.0" 3269 - source = "registry+https://github.com/rust-lang/crates.io-index" 3270 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 3271 - dependencies = [ 3272 - "instant", 3273 - ] 3274 - 3275 - [[package]] 3276 - name = "fastrand" 3277 - version = "2.1.0" 3278 - source = "registry+https://github.com/rust-lang/crates.io-index" 3279 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 3280 - 3281 - [[package]] 3282 - name = "faststr" 3283 - version = "0.2.19" 3284 - source = "registry+https://github.com/rust-lang/crates.io-index" 3285 - checksum = "f375fcf41ec4dac873a8028fba4210dbda5c86bba13d2d741e651b474f7c05a4" 3286 - dependencies = [ 3287 - "bytes", 3288 - "serde", 3289 - "simdutf8", 3290 - ] 3291 - 3292 - [[package]] 3293 - name = "fiat-crypto" 3294 - version = "0.2.9" 3295 - source = "registry+https://github.com/rust-lang/crates.io-index" 3296 - checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 3297 - 3298 - [[package]] 3299 - name = "filetime" 3300 - version = "0.2.23" 3301 - source = "registry+https://github.com/rust-lang/crates.io-index" 3302 - checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" 3303 - dependencies = [ 3304 - "cfg-if 1.0.0", 3305 - "libc", 3306 - "redox_syscall 0.4.1", 3307 - "windows-sys 0.52.0", 3308 - ] 3309 - 3310 - [[package]] 3311 - name = "findshlibs" 3312 - version = "0.10.2" 3313 - source = "registry+https://github.com/rust-lang/crates.io-index" 3314 - checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" 3315 - dependencies = [ 3316 - "cc", 3317 - "lazy_static", 3318 - "libc", 3319 - "winapi 0.3.9", 3320 - ] 3321 - 3322 - [[package]] 3323 - name = "fixedbitset" 3324 - version = "0.4.2" 3325 - source = "registry+https://github.com/rust-lang/crates.io-index" 3326 - checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 3327 - 3328 - [[package]] 3329 - name = "flatbuffers" 3330 - version = "24.3.25" 3331 - source = "registry+https://github.com/rust-lang/crates.io-index" 3332 - checksum = "8add37afff2d4ffa83bc748a70b4b1370984f6980768554182424ef71447c35f" 3333 - dependencies = [ 3334 - "bitflags 1.3.2", 3335 - "rustc_version", 3336 - ] 3337 - 3338 - [[package]] 3339 - name = "flate2" 3340 - version = "1.0.30" 3341 - source = "registry+https://github.com/rust-lang/crates.io-index" 3342 - checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 3343 - dependencies = [ 3344 - "crc32fast", 3345 - "libz-sys", 3346 - "miniz_oxide", 3347 - ] 3348 - 3349 - [[package]] 3350 - name = "float-cmp" 3351 - version = "0.9.0" 3352 - source = "registry+https://github.com/rust-lang/crates.io-index" 3353 - checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 3354 - dependencies = [ 3355 - "num-traits", 3356 - ] 3357 - 3358 - [[package]] 3359 - name = "flume" 3360 - version = "0.11.0" 3361 - source = "registry+https://github.com/rust-lang/crates.io-index" 3362 - checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" 3363 - dependencies = [ 3364 - "futures-core", 3365 - "futures-sink", 3366 - "spin 0.9.8", 3367 - ] 3368 - 3369 - [[package]] 3370 - name = "fnv" 3371 - version = "1.0.7" 3372 - source = "registry+https://github.com/rust-lang/crates.io-index" 3373 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 3374 - 3375 - [[package]] 3376 - name = "form_urlencoded" 3377 - version = "1.2.1" 3378 - source = "registry+https://github.com/rust-lang/crates.io-index" 3379 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 3380 - dependencies = [ 3381 - "percent-encoding", 3382 - ] 3383 - 3384 - [[package]] 3385 - name = "funty" 3386 - version = "2.0.0" 3387 - source = "registry+https://github.com/rust-lang/crates.io-index" 3388 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 3389 - 3390 - [[package]] 3391 - name = "futures" 3392 - version = "0.3.30" 3393 - source = "registry+https://github.com/rust-lang/crates.io-index" 3394 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 3395 - dependencies = [ 3396 - "futures-channel", 3397 - "futures-core", 3398 - "futures-executor", 3399 - "futures-io", 3400 - "futures-sink", 3401 - "futures-task", 3402 - "futures-util", 3403 - ] 3404 - 3405 - [[package]] 3406 - name = "futures-channel" 3407 - version = "0.3.30" 3408 - source = "registry+https://github.com/rust-lang/crates.io-index" 3409 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 3410 - dependencies = [ 3411 - "futures-core", 3412 - "futures-sink", 3413 - ] 3414 - 3415 - [[package]] 3416 - name = "futures-core" 3417 - version = "0.3.30" 3418 - source = "registry+https://github.com/rust-lang/crates.io-index" 3419 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 3420 - 3421 - [[package]] 3422 - name = "futures-executor" 3423 - version = "0.3.30" 3424 - source = "registry+https://github.com/rust-lang/crates.io-index" 3425 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 3426 - dependencies = [ 3427 - "futures-core", 3428 - "futures-task", 3429 - "futures-util", 3430 - ] 3431 - 3432 - [[package]] 3433 - name = "futures-intrusive" 3434 - version = "0.5.0" 3435 - source = "registry+https://github.com/rust-lang/crates.io-index" 3436 - checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 3437 - dependencies = [ 3438 - "futures-core", 3439 - "lock_api", 3440 - "parking_lot", 3441 - ] 3442 - 3443 - [[package]] 3444 - name = "futures-io" 3445 - version = "0.3.30" 3446 - source = "registry+https://github.com/rust-lang/crates.io-index" 3447 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 3448 - 3449 - [[package]] 3450 - name = "futures-lite" 3451 - version = "1.13.0" 3452 - source = "registry+https://github.com/rust-lang/crates.io-index" 3453 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 3454 - dependencies = [ 3455 - "fastrand 1.9.0", 3456 - "futures-core", 3457 - "futures-io", 3458 - "memchr", 3459 - "parking", 3460 - "pin-project-lite", 3461 - "waker-fn", 3462 - ] 3463 - 3464 - [[package]] 3465 - name = "futures-lite" 3466 - version = "2.3.0" 3467 - source = "registry+https://github.com/rust-lang/crates.io-index" 3468 - checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" 3469 - dependencies = [ 3470 - "fastrand 2.1.0", 3471 - "futures-core", 3472 - "futures-io", 3473 - "parking", 3474 - "pin-project-lite", 3475 - ] 3476 - 3477 - [[package]] 3478 - name = "futures-macro" 3479 - version = "0.3.30" 3480 - source = "registry+https://github.com/rust-lang/crates.io-index" 3481 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 3482 - dependencies = [ 3483 - "proc-macro2", 3484 - "quote", 3485 - "syn 2.0.66", 3486 - ] 3487 - 3488 - [[package]] 3489 - name = "futures-sink" 3490 - version = "0.3.30" 3491 - source = "registry+https://github.com/rust-lang/crates.io-index" 3492 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 3493 - 3494 - [[package]] 3495 - name = "futures-task" 3496 - version = "0.3.30" 3497 - source = "registry+https://github.com/rust-lang/crates.io-index" 3498 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 3499 - 3500 - [[package]] 3501 - name = "futures-timer" 3502 - version = "3.0.3" 3503 - source = "registry+https://github.com/rust-lang/crates.io-index" 3504 - checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 3505 - 3506 - [[package]] 3507 - name = "futures-util" 3508 - version = "0.3.30" 3509 - source = "registry+https://github.com/rust-lang/crates.io-index" 3510 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 3511 - dependencies = [ 3512 - "futures-channel", 3513 - "futures-core", 3514 - "futures-io", 3515 - "futures-macro", 3516 - "futures-sink", 3517 - "futures-task", 3518 - "memchr", 3519 - "pin-project-lite", 3520 - "pin-utils", 3521 - "slab", 3522 - ] 3523 - 3524 - [[package]] 3525 - name = "gcc" 3526 - version = "0.3.55" 3527 - source = "registry+https://github.com/rust-lang/crates.io-index" 3528 - checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" 3529 - 3530 - [[package]] 3531 - name = "generic-array" 3532 - version = "0.14.7" 3533 - source = "registry+https://github.com/rust-lang/crates.io-index" 3534 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 3535 - dependencies = [ 3536 - "typenum", 3537 - "version_check", 3538 - "zeroize", 3539 - ] 3540 - 3541 - [[package]] 3542 - name = "get_if_addrs" 3543 - version = "0.5.3" 3544 - source = "registry+https://github.com/rust-lang/crates.io-index" 3545 - checksum = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" 3546 - dependencies = [ 3547 - "c_linked_list", 3548 - "get_if_addrs-sys", 3549 - "libc", 3550 - "winapi 0.2.8", 3551 - ] 3552 - 3553 - [[package]] 3554 - name = "get_if_addrs-sys" 3555 - version = "0.1.1" 3556 - source = "registry+https://github.com/rust-lang/crates.io-index" 3557 - checksum = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" 3558 - dependencies = [ 3559 - "gcc", 3560 - "libc", 3561 - ] 3562 - 3563 - [[package]] 3564 - name = "getopts" 3565 - version = "0.2.21" 3566 - source = "registry+https://github.com/rust-lang/crates.io-index" 3567 - checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 3568 - dependencies = [ 3569 - "unicode-width", 3570 - ] 3571 - 3572 - [[package]] 3573 - name = "getrandom" 3574 - version = "0.2.15" 3575 - source = "registry+https://github.com/rust-lang/crates.io-index" 3576 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 3577 - dependencies = [ 3578 - "cfg-if 1.0.0", 3579 - "js-sys", 3580 - "libc", 3581 - "wasi 0.11.0+wasi-snapshot-preview1", 3582 - "wasm-bindgen", 3583 - ] 3584 - 3585 - [[package]] 3586 - name = "getset" 3587 - version = "0.1.2" 3588 - source = "registry+https://github.com/rust-lang/crates.io-index" 3589 - checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9" 3590 - dependencies = [ 3591 - "proc-macro-error", 3592 - "proc-macro2", 3593 - "quote", 3594 - "syn 1.0.109", 3595 - ] 3596 - 3597 - [[package]] 3598 - name = "gimli" 3599 - version = "0.29.0" 3600 - source = "registry+https://github.com/rust-lang/crates.io-index" 3601 - checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 3602 - 3603 - [[package]] 3604 - name = "glob" 3605 - version = "0.3.1" 3606 - source = "registry+https://github.com/rust-lang/crates.io-index" 3607 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 3608 - 3609 - [[package]] 3610 - name = "globset" 3611 - version = "0.4.14" 3612 - source = "registry+https://github.com/rust-lang/crates.io-index" 3613 - checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 3614 - dependencies = [ 3615 - "aho-corasick", 3616 - "bstr", 3617 - "log", 3618 - "regex-automata 0.4.7", 3619 - "regex-syntax 0.8.4", 3620 - ] 3621 - 3622 - [[package]] 3623 - name = "grok" 3624 - version = "2.0.0" 3625 - source = "registry+https://github.com/rust-lang/crates.io-index" 3626 - checksum = "273797968160270573071022613fc4aa28b91fe68f3eef6c96a1b2a1947ddfbd" 3627 - dependencies = [ 3628 - "glob", 3629 - "onig", 3630 - ] 3631 - 3632 - [[package]] 3633 - name = "gxhash" 3634 - version = "3.4.1" 3635 - source = "registry+https://github.com/rust-lang/crates.io-index" 3636 - checksum = "a197c9b654827513cf53842c5c6d3da2b4b35a785f8e0eff78bdf8e445aba1bb" 3637 - dependencies = [ 3638 - "rustversion", 3639 - ] 3640 - 3641 - [[package]] 3642 - name = "h2" 3643 - version = "0.3.26" 3644 - source = "registry+https://github.com/rust-lang/crates.io-index" 3645 - checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 3646 - dependencies = [ 3647 - "bytes", 3648 - "fnv", 3649 - "futures-core", 3650 - "futures-sink", 3651 - "futures-util", 3652 - "http 0.2.12", 3653 - "indexmap 2.2.6", 3654 - "slab", 3655 - "tokio", 3656 - "tokio-util", 3657 - "tracing", 3658 - ] 3659 - 3660 - [[package]] 3661 - name = "h2" 3662 - version = "0.4.5" 3663 - source = "registry+https://github.com/rust-lang/crates.io-index" 3664 - checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" 3665 - dependencies = [ 3666 - "atomic-waker", 3667 - "bytes", 3668 - "fnv", 3669 - "futures-core", 3670 - "futures-sink", 3671 - "http 1.1.0", 3672 - "indexmap 2.2.6", 3673 - "slab", 3674 - "tokio", 3675 - "tokio-util", 3676 - "tracing", 3677 - ] 3678 - 3679 - [[package]] 3680 - name = "half" 3681 - version = "2.4.1" 3682 - source = "registry+https://github.com/rust-lang/crates.io-index" 3683 - checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" 3684 - dependencies = [ 3685 - "cfg-if 1.0.0", 3686 - "crunchy", 3687 - "num-traits", 3688 - ] 3689 - 3690 - [[package]] 3691 - name = "hashbrown" 3692 - version = "0.12.3" 3693 - source = "registry+https://github.com/rust-lang/crates.io-index" 3694 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 3695 - dependencies = [ 3696 - "ahash 0.7.8", 3697 - ] 3698 - 3699 - [[package]] 3700 - name = "hashbrown" 3701 - version = "0.14.5" 3702 - source = "registry+https://github.com/rust-lang/crates.io-index" 3703 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 3704 - dependencies = [ 3705 - "ahash 0.8.11", 3706 - "allocator-api2", 3707 - "serde", 3708 - ] 3709 - 3710 - [[package]] 3711 - name = "hashlink" 3712 - version = "0.8.4" 3713 - source = "registry+https://github.com/rust-lang/crates.io-index" 3714 - checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 3715 - dependencies = [ 3716 - "hashbrown 0.14.5", 3717 - ] 3718 - 3719 - [[package]] 3720 - name = "hashlink" 3721 - version = "0.9.1" 3722 - source = "registry+https://github.com/rust-lang/crates.io-index" 3723 - checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" 3724 - dependencies = [ 3725 - "hashbrown 0.14.5", 3726 - ] 3727 - 3728 - [[package]] 3729 - name = "hdrhistogram" 3730 - version = "7.5.4" 3731 - source = "registry+https://github.com/rust-lang/crates.io-index" 3732 - checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" 3733 - dependencies = [ 3734 - "base64 0.21.7", 3735 - "byteorder", 3736 - "flate2", 3737 - "nom", 3738 - "num-traits", 3739 - ] 3740 - 3741 - [[package]] 3742 - name = "heck" 3743 - version = "0.4.1" 3744 - source = "registry+https://github.com/rust-lang/crates.io-index" 3745 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 3746 - dependencies = [ 3747 - "unicode-segmentation", 3748 - ] 3749 - 3750 - [[package]] 3751 - name = "heck" 3752 - version = "0.5.0" 3753 - source = "registry+https://github.com/rust-lang/crates.io-index" 3754 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 3755 - 3756 - [[package]] 3757 - name = "hermit-abi" 3758 - version = "0.1.19" 3759 - source = "registry+https://github.com/rust-lang/crates.io-index" 3760 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 3761 - dependencies = [ 3762 - "libc", 3763 - ] 3764 - 3765 - [[package]] 3766 - name = "hermit-abi" 3767 - version = "0.3.9" 3768 - source = "registry+https://github.com/rust-lang/crates.io-index" 3769 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 3770 - 3771 - [[package]] 3772 - name = "hex" 3773 - version = "0.4.3" 3774 - source = "registry+https://github.com/rust-lang/crates.io-index" 3775 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 3776 - 3777 - [[package]] 3778 - name = "hkdf" 3779 - version = "0.12.4" 3780 - source = "registry+https://github.com/rust-lang/crates.io-index" 3781 - checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 3782 - dependencies = [ 3783 - "hmac", 3784 - ] 3785 - 3786 - [[package]] 3787 - name = "hmac" 3788 - version = "0.12.1" 3789 - source = "registry+https://github.com/rust-lang/crates.io-index" 3790 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 3791 - dependencies = [ 3792 - "digest", 3793 - ] 3794 - 3795 - [[package]] 3796 - name = "home" 3797 - version = "0.5.9" 3798 - source = "registry+https://github.com/rust-lang/crates.io-index" 3799 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 3800 - dependencies = [ 3801 - "windows-sys 0.52.0", 3802 - ] 3803 - 3804 - [[package]] 3805 - name = "hostname" 3806 - version = "0.3.1" 3807 - source = "registry+https://github.com/rust-lang/crates.io-index" 3808 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 3809 - dependencies = [ 3810 - "libc", 3811 - "match_cfg", 3812 - "winapi 0.3.9", 3813 - ] 3814 - 3815 - [[package]] 3816 - name = "hostname" 3817 - version = "0.4.0" 3818 - source = "registry+https://github.com/rust-lang/crates.io-index" 3819 - checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba" 3820 - dependencies = [ 3821 - "cfg-if 1.0.0", 3822 - "libc", 3823 - "windows", 3824 - ] 3825 - 3826 - [[package]] 3827 - name = "http" 3828 - version = "0.2.12" 3829 - source = "registry+https://github.com/rust-lang/crates.io-index" 3830 - checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 3831 - dependencies = [ 3832 - "bytes", 3833 - "fnv", 3834 - "itoa", 3835 - ] 3836 - 3837 - [[package]] 3838 - name = "http" 3839 - version = "1.1.0" 3840 - source = "registry+https://github.com/rust-lang/crates.io-index" 3841 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 3842 - dependencies = [ 3843 - "bytes", 3844 - "fnv", 3845 - "itoa", 3846 - ] 3847 - 3848 - [[package]] 3849 - name = "http-auth-basic" 3850 - version = "0.3.3" 3851 - source = "registry+https://github.com/rust-lang/crates.io-index" 3852 - checksum = "dd2e17aacf7f4a2428def798e2ff4f4f883c0987bdaf47dd5c8bc027bc9f1ebc" 3853 - dependencies = [ 3854 - "base64 0.13.1", 3855 - ] 3856 - 3857 - [[package]] 3858 - name = "http-body" 3859 - version = "0.4.6" 3860 - source = "registry+https://github.com/rust-lang/crates.io-index" 3861 - checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 3862 - dependencies = [ 3863 - "bytes", 3864 - "http 0.2.12", 3865 - "pin-project-lite", 3866 - ] 3867 - 3868 - [[package]] 3869 - name = "http-body" 3870 - version = "1.0.0" 3871 - source = "registry+https://github.com/rust-lang/crates.io-index" 3872 - checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 3873 - dependencies = [ 3874 - "bytes", 3875 - "http 1.1.0", 3876 - ] 3877 - 3878 - [[package]] 3879 - name = "http-body-util" 3880 - version = "0.1.2" 3881 - source = "registry+https://github.com/rust-lang/crates.io-index" 3882 - checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 3883 - dependencies = [ 3884 - "bytes", 3885 - "futures-util", 3886 - "http 1.1.0", 3887 - "http-body 1.0.0", 3888 - "pin-project-lite", 3889 - ] 3890 - 3891 - [[package]] 3892 - name = "httparse" 3893 - version = "1.9.3" 3894 - source = "registry+https://github.com/rust-lang/crates.io-index" 3895 - checksum = "d0e7a4dd27b9476dc40cb050d3632d3bba3a70ddbff012285f7f8559a1e7e545" 3896 - 3897 - [[package]] 3898 - name = "httpdate" 3899 - version = "1.0.3" 3900 - source = "registry+https://github.com/rust-lang/crates.io-index" 3901 - checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 3902 - 3903 - [[package]] 3904 - name = "humansize" 3905 - version = "2.1.3" 3906 - source = "registry+https://github.com/rust-lang/crates.io-index" 3907 - checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 3908 - dependencies = [ 3909 - "libm", 3910 - ] 3911 - 3912 - [[package]] 3913 - name = "humantime" 3914 - version = "2.1.0" 3915 - source = "registry+https://github.com/rust-lang/crates.io-index" 3916 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 3917 - 3918 - [[package]] 3919 - name = "hyper" 3920 - version = "0.14.29" 3921 - source = "registry+https://github.com/rust-lang/crates.io-index" 3922 - checksum = "f361cde2f109281a220d4307746cdfd5ee3f410da58a70377762396775634b33" 3923 - dependencies = [ 3924 - "bytes", 3925 - "futures-channel", 3926 - "futures-core", 3927 - "futures-util", 3928 - "h2 0.3.26", 3929 - "http 0.2.12", 3930 - "http-body 0.4.6", 3931 - "httparse", 3932 - "httpdate", 3933 - "itoa", 3934 - "pin-project-lite", 3935 - "socket2", 3936 - "tokio", 3937 - "tower-service", 3938 - "tracing", 3939 - "want", 3940 - ] 3941 - 3942 - [[package]] 3943 - name = "hyper" 3944 - version = "1.3.1" 3945 - source = "registry+https://github.com/rust-lang/crates.io-index" 3946 - checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" 3947 - dependencies = [ 3948 - "bytes", 3949 - "futures-channel", 3950 - "futures-util", 3951 - "h2 0.4.5", 3952 - "http 1.1.0", 3953 - "http-body 1.0.0", 3954 - "httparse", 3955 - "itoa", 3956 - "pin-project-lite", 3957 - "smallvec", 3958 - "tokio", 3959 - "want", 3960 - ] 3961 - 3962 - [[package]] 3963 - name = "hyper-rustls" 3964 - version = "0.24.2" 3965 - source = "registry+https://github.com/rust-lang/crates.io-index" 3966 - checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 3967 - dependencies = [ 3968 - "futures-util", 3969 - "http 0.2.12", 3970 - "hyper 0.14.29", 3971 - "rustls 0.21.12", 3972 - "tokio", 3973 - "tokio-rustls 0.24.1", 3974 - ] 3975 - 3976 - [[package]] 3977 - name = "hyper-rustls" 3978 - version = "0.26.0" 3979 - source = "registry+https://github.com/rust-lang/crates.io-index" 3980 - checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c" 3981 - dependencies = [ 3982 - "futures-util", 3983 - "http 1.1.0", 3984 - "hyper 1.3.1", 3985 - "hyper-util", 3986 - "rustls 0.22.4", 3987 - "rustls-pki-types", 3988 - "tokio", 3989 - "tokio-rustls 0.25.0", 3990 - "tower-service", 3991 - ] 3992 - 3993 - [[package]] 3994 - name = "hyper-timeout" 3995 - version = "0.4.1" 3996 - source = "registry+https://github.com/rust-lang/crates.io-index" 3997 - checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 3998 - dependencies = [ 3999 - "hyper 0.14.29", 4000 - "pin-project-lite", 4001 - "tokio", 4002 - "tokio-io-timeout", 4003 - ] 4004 - 4005 - [[package]] 4006 - name = "hyper-util" 4007 - version = "0.1.5" 4008 - source = "registry+https://github.com/rust-lang/crates.io-index" 4009 - checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56" 4010 - dependencies = [ 4011 - "bytes", 4012 - "futures-channel", 4013 - "futures-util", 4014 - "http 1.1.0", 4015 - "http-body 1.0.0", 4016 - "hyper 1.3.1", 4017 - "pin-project-lite", 4018 - "socket2", 4019 - "tokio", 4020 - "tower", 4021 - "tower-service", 4022 - "tracing", 4023 - ] 4024 - 4025 - [[package]] 4026 - name = "iana-time-zone" 4027 - version = "0.1.60" 4028 - source = "registry+https://github.com/rust-lang/crates.io-index" 4029 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 4030 - dependencies = [ 4031 - "android_system_properties", 4032 - "core-foundation-sys", 4033 - "iana-time-zone-haiku", 4034 - "js-sys", 4035 - "wasm-bindgen", 4036 - "windows-core", 4037 - ] 4038 - 4039 - [[package]] 4040 - name = "iana-time-zone-haiku" 4041 - version = "0.1.2" 4042 - source = "registry+https://github.com/rust-lang/crates.io-index" 4043 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 4044 - dependencies = [ 4045 - "cc", 4046 - ] 4047 - 4048 - [[package]] 4049 - name = "icu_collections" 4050 - version = "1.5.0" 4051 - source = "registry+https://github.com/rust-lang/crates.io-index" 4052 - checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 4053 - dependencies = [ 4054 - "displaydoc", 4055 - "yoke", 4056 - "zerofrom", 4057 - "zerovec", 4058 - ] 4059 - 4060 - [[package]] 4061 - name = "icu_locid" 4062 - version = "1.5.0" 4063 - source = "registry+https://github.com/rust-lang/crates.io-index" 4064 - checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 4065 - dependencies = [ 4066 - "displaydoc", 4067 - "litemap", 4068 - "tinystr", 4069 - "writeable", 4070 - "zerovec", 4071 - ] 4072 - 4073 - [[package]] 4074 - name = "icu_locid_transform" 4075 - version = "1.5.0" 4076 - source = "registry+https://github.com/rust-lang/crates.io-index" 4077 - checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 4078 - dependencies = [ 4079 - "displaydoc", 4080 - "icu_locid", 4081 - "icu_locid_transform_data", 4082 - "icu_provider", 4083 - "tinystr", 4084 - "zerovec", 4085 - ] 4086 - 4087 - [[package]] 4088 - name = "icu_locid_transform_data" 4089 - version = "1.5.0" 4090 - source = "registry+https://github.com/rust-lang/crates.io-index" 4091 - checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 4092 - 4093 - [[package]] 4094 - name = "icu_normalizer" 4095 - version = "1.5.0" 4096 - source = "registry+https://github.com/rust-lang/crates.io-index" 4097 - checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 4098 - dependencies = [ 4099 - "displaydoc", 4100 - "icu_collections", 4101 - "icu_normalizer_data", 4102 - "icu_properties", 4103 - "icu_provider", 4104 - "smallvec", 4105 - "utf16_iter", 4106 - "utf8_iter", 4107 - "write16", 4108 - "zerovec", 4109 - ] 4110 - 4111 - [[package]] 4112 - name = "icu_normalizer_data" 4113 - version = "1.5.0" 4114 - source = "registry+https://github.com/rust-lang/crates.io-index" 4115 - checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 4116 - 4117 - [[package]] 4118 - name = "icu_properties" 4119 - version = "1.5.0" 4120 - source = "registry+https://github.com/rust-lang/crates.io-index" 4121 - checksum = "1f8ac670d7422d7f76b32e17a5db556510825b29ec9154f235977c9caba61036" 4122 - dependencies = [ 4123 - "displaydoc", 4124 - "icu_collections", 4125 - "icu_locid_transform", 4126 - "icu_properties_data", 4127 - "icu_provider", 4128 - "tinystr", 4129 - "zerovec", 4130 - ] 4131 - 4132 - [[package]] 4133 - name = "icu_properties_data" 4134 - version = "1.5.0" 4135 - source = "registry+https://github.com/rust-lang/crates.io-index" 4136 - checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 4137 - 4138 - [[package]] 4139 - name = "icu_provider" 4140 - version = "1.5.0" 4141 - source = "registry+https://github.com/rust-lang/crates.io-index" 4142 - checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 4143 - dependencies = [ 4144 - "displaydoc", 4145 - "icu_locid", 4146 - "icu_provider_macros", 4147 - "stable_deref_trait", 4148 - "tinystr", 4149 - "writeable", 4150 - "yoke", 4151 - "zerofrom", 4152 - "zerovec", 4153 - ] 4154 - 4155 - [[package]] 4156 - name = "icu_provider_macros" 4157 - version = "1.5.0" 4158 - source = "registry+https://github.com/rust-lang/crates.io-index" 4159 - checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 4160 - dependencies = [ 4161 - "proc-macro2", 4162 - "quote", 4163 - "syn 2.0.66", 4164 - ] 4165 - 4166 - [[package]] 4167 - name = "ident_case" 4168 - version = "1.0.1" 4169 - source = "registry+https://github.com/rust-lang/crates.io-index" 4170 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 4171 - 4172 - [[package]] 4173 - name = "idna" 4174 - version = "0.3.0" 4175 - source = "registry+https://github.com/rust-lang/crates.io-index" 4176 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 4177 - dependencies = [ 4178 - "unicode-bidi", 4179 - "unicode-normalization", 4180 - ] 4181 - 4182 - [[package]] 4183 - name = "idna" 4184 - version = "0.5.0" 4185 - source = "registry+https://github.com/rust-lang/crates.io-index" 4186 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 4187 - dependencies = [ 4188 - "unicode-bidi", 4189 - "unicode-normalization", 4190 - ] 4191 - 4192 - [[package]] 4193 - name = "idna" 4194 - version = "1.0.0" 4195 - source = "registry+https://github.com/rust-lang/crates.io-index" 4196 - checksum = "4716a3a0933a1d01c2f72450e89596eb51dd34ef3c211ccd875acdf1f8fe47ed" 4197 - dependencies = [ 4198 - "icu_normalizer", 4199 - "icu_properties", 4200 - "smallvec", 4201 - "utf8_iter", 4202 - ] 4203 - 4204 - [[package]] 4205 - name = "impl-more" 4206 - version = "0.1.6" 4207 - source = "registry+https://github.com/rust-lang/crates.io-index" 4208 - checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" 4209 - 4210 - [[package]] 4211 - name = "indexmap" 4212 - version = "1.9.3" 4213 - source = "registry+https://github.com/rust-lang/crates.io-index" 4214 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 4215 - dependencies = [ 4216 - "autocfg", 4217 - "hashbrown 0.12.3", 4218 - ] 4219 - 4220 - [[package]] 4221 - name = "indexmap" 4222 - version = "2.2.6" 4223 - source = "registry+https://github.com/rust-lang/crates.io-index" 4224 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 4225 - dependencies = [ 4226 - "equivalent", 4227 - "hashbrown 0.14.5", 4228 - "serde", 4229 - ] 4230 - 4231 - [[package]] 4232 - name = "indoc" 4233 - version = "2.0.5" 4234 - source = "registry+https://github.com/rust-lang/crates.io-index" 4235 - checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" 4236 - 4237 - [[package]] 4238 - name = "infra" 4239 - version = "0.1.0" 4240 - dependencies = [ 4241 - "ahash 0.8.11", 4242 - "anyhow", 4243 - "async-nats", 4244 - "async-recursion", 4245 - "async-trait", 4246 - "bytes", 4247 - "chrono", 4248 - "config", 4249 - "datafusion", 4250 - "etcd-client", 4251 - "futures", 4252 - "hashbrown 0.14.5", 4253 - "hashlink 0.9.1", 4254 - "log", 4255 - "object_store", 4256 - "once_cell", 4257 - "parking_lot", 4258 - "serde", 4259 - "serde_json", 4260 - "sqlx", 4261 - "thiserror", 4262 - "tokio", 4263 - "tokio-stream", 4264 - "tracing", 4265 - "zstd", 4266 - ] 4267 - 4268 - [[package]] 4269 - name = "ingester" 4270 - version = "0.1.0" 4271 - dependencies = [ 4272 - "arrow", 4273 - "arrow-schema", 4274 - "async-walkdir", 4275 - "byteorder", 4276 - "bytes", 4277 - "chrono", 4278 - "config", 4279 - "datafusion", 4280 - "futures", 4281 - "hashbrown 0.14.5", 4282 - "indexmap 2.2.6", 4283 - "infra", 4284 - "itertools 0.12.1", 4285 - "log", 4286 - "once_cell", 4287 - "parquet", 4288 - "serde", 4289 - "serde_json", 4290 - "snafu 0.7.5", 4291 - "tokio", 4292 - "wal", 4293 - ] 4294 - 4295 - [[package]] 4296 - name = "inout" 4297 - version = "0.1.3" 4298 - source = "registry+https://github.com/rust-lang/crates.io-index" 4299 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 4300 - dependencies = [ 4301 - "block-padding", 4302 - "generic-array", 4303 - ] 4304 - 4305 - [[package]] 4306 - name = "instant" 4307 - version = "0.1.13" 4308 - source = "registry+https://github.com/rust-lang/crates.io-index" 4309 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 4310 - dependencies = [ 4311 - "cfg-if 1.0.0", 4312 - "js-sys", 4313 - "wasm-bindgen", 4314 - "web-sys", 4315 - ] 4316 - 4317 - [[package]] 4318 - name = "integer-encoding" 4319 - version = "3.0.4" 4320 - source = "registry+https://github.com/rust-lang/crates.io-index" 4321 - checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" 4322 - 4323 - [[package]] 4324 - name = "ipnet" 4325 - version = "2.9.0" 4326 - source = "registry+https://github.com/rust-lang/crates.io-index" 4327 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 4328 - 4329 - [[package]] 4330 - name = "ipnetwork" 4331 - version = "0.18.0" 4332 - source = "registry+https://github.com/rust-lang/crates.io-index" 4333 - checksum = "4088d739b183546b239688ddbc79891831df421773df95e236daf7867866d355" 4334 - dependencies = [ 4335 - "serde", 4336 - ] 4337 - 4338 - [[package]] 4339 - name = "ipnetwork" 4340 - version = "0.20.0" 4341 - source = "registry+https://github.com/rust-lang/crates.io-index" 4342 - checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" 4343 - dependencies = [ 4344 - "serde", 4345 - ] 4346 - 4347 - [[package]] 4348 - name = "is-terminal" 4349 - version = "0.4.12" 4350 - source = "registry+https://github.com/rust-lang/crates.io-index" 4351 - checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 4352 - dependencies = [ 4353 - "hermit-abi 0.3.9", 4354 - "libc", 4355 - "windows-sys 0.52.0", 4356 - ] 4357 - 4358 - [[package]] 4359 - name = "is_terminal_polyfill" 4360 - version = "1.70.0" 4361 - source = "registry+https://github.com/rust-lang/crates.io-index" 4362 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 4363 - 4364 - [[package]] 4365 - name = "itertools" 4366 - version = "0.10.5" 4367 - source = "registry+https://github.com/rust-lang/crates.io-index" 4368 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 4369 - dependencies = [ 4370 - "either", 4371 - ] 4372 - 4373 - [[package]] 4374 - name = "itertools" 4375 - version = "0.11.0" 4376 - source = "registry+https://github.com/rust-lang/crates.io-index" 4377 - checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 4378 - dependencies = [ 4379 - "either", 4380 - ] 4381 - 4382 - [[package]] 4383 - name = "itertools" 4384 - version = "0.12.1" 4385 - source = "registry+https://github.com/rust-lang/crates.io-index" 4386 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 4387 - dependencies = [ 4388 - "either", 4389 - ] 4390 - 4391 - [[package]] 4392 - name = "itertools" 4393 - version = "0.13.0" 4394 - source = "registry+https://github.com/rust-lang/crates.io-index" 4395 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 4396 - dependencies = [ 4397 - "either", 4398 - ] 4399 - 4400 - [[package]] 4401 - name = "itoa" 4402 - version = "1.0.11" 4403 - source = "registry+https://github.com/rust-lang/crates.io-index" 4404 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 4405 - 4406 - [[package]] 4407 - name = "jni" 4408 - version = "0.21.1" 4409 - source = "registry+https://github.com/rust-lang/crates.io-index" 4410 - checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 4411 - dependencies = [ 4412 - "cesu8", 4413 - "cfg-if 1.0.0", 4414 - "combine", 4415 - "jni-sys", 4416 - "log", 4417 - "thiserror", 4418 - "walkdir", 4419 - "windows-sys 0.45.0", 4420 - ] 4421 - 4422 - [[package]] 4423 - name = "jni-sys" 4424 - version = "0.3.0" 4425 - source = "registry+https://github.com/rust-lang/crates.io-index" 4426 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 4427 - 4428 - [[package]] 4429 - name = "jobserver" 4430 - version = "0.1.31" 4431 - source = "registry+https://github.com/rust-lang/crates.io-index" 4432 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 4433 - dependencies = [ 4434 - "libc", 4435 - ] 4436 - 4437 - [[package]] 4438 - name = "js-sys" 4439 - version = "0.3.69" 4440 - source = "registry+https://github.com/rust-lang/crates.io-index" 4441 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 4442 - dependencies = [ 4443 - "wasm-bindgen", 4444 - ] 4445 - 4446 - [[package]] 4447 - name = "json" 4448 - version = "0.12.4" 4449 - source = "registry+https://github.com/rust-lang/crates.io-index" 4450 - checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" 4451 - 4452 - [[package]] 4453 - name = "jsonwebtoken" 4454 - version = "9.3.0" 4455 - source = "registry+https://github.com/rust-lang/crates.io-index" 4456 - checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 4457 - dependencies = [ 4458 - "base64 0.21.7", 4459 - "js-sys", 4460 - "pem", 4461 - "ring", 4462 - "serde", 4463 - "serde_json", 4464 - "simple_asn1", 4465 - ] 4466 - 4467 - [[package]] 4468 - name = "keccak" 4469 - version = "0.1.5" 4470 - source = "registry+https://github.com/rust-lang/crates.io-index" 4471 - checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" 4472 - dependencies = [ 4473 - "cpufeatures", 4474 - ] 4475 - 4476 - [[package]] 4477 - name = "lalrpop" 4478 - version = "0.20.2" 4479 - source = "registry+https://github.com/rust-lang/crates.io-index" 4480 - checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" 4481 - dependencies = [ 4482 - "ascii-canvas", 4483 - "bit-set", 4484 - "ena", 4485 - "itertools 0.11.0", 4486 - "lalrpop-util", 4487 - "petgraph", 4488 - "regex", 4489 - "regex-syntax 0.8.4", 4490 - "string_cache", 4491 - "term", 4492 - "tiny-keccak", 4493 - "unicode-xid", 4494 - "walkdir", 4495 - ] 4496 - 4497 - [[package]] 4498 - name = "lalrpop-util" 4499 - version = "0.20.2" 4500 - source = "registry+https://github.com/rust-lang/crates.io-index" 4501 - checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" 4502 - dependencies = [ 4503 - "regex-automata 0.4.7", 4504 - ] 4505 - 4506 - [[package]] 4507 - name = "language-tags" 4508 - version = "0.3.2" 4509 - source = "registry+https://github.com/rust-lang/crates.io-index" 4510 - checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 4511 - 4512 - [[package]] 4513 - name = "lazy_static" 4514 - version = "1.4.0" 4515 - source = "registry+https://github.com/rust-lang/crates.io-index" 4516 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 4517 - dependencies = [ 4518 - "spin 0.5.2", 4519 - ] 4520 - 4521 - [[package]] 4522 - name = "lettre" 4523 - version = "0.11.7" 4524 - source = "registry+https://github.com/rust-lang/crates.io-index" 4525 - checksum = "1a62049a808f1c4e2356a2a380bd5f2aca3b011b0b482cf3b914ba1731426969" 4526 - dependencies = [ 4527 - "async-trait", 4528 - "base64 0.22.1", 4529 - "chumsky", 4530 - "email-encoding", 4531 - "email_address", 4532 - "fastrand 2.1.0", 4533 - "futures-io", 4534 - "futures-util", 4535 - "hostname 0.4.0", 4536 - "httpdate", 4537 - "idna 0.5.0", 4538 - "mime", 4539 - "nom", 4540 - "percent-encoding", 4541 - "quoted_printable", 4542 - "rustls 0.23.9", 4543 - "rustls-pemfile 2.1.2", 4544 - "socket2", 4545 - "tokio", 4546 - "tokio-rustls 0.26.0", 4547 - "url", 4548 - "webpki-roots 0.26.2", 4549 - ] 4550 - 4551 - [[package]] 4552 - name = "lexical-core" 4553 - version = "0.8.5" 4554 - source = "registry+https://github.com/rust-lang/crates.io-index" 4555 - checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46" 4556 - dependencies = [ 4557 - "lexical-parse-float", 4558 - "lexical-parse-integer", 4559 - "lexical-util", 4560 - "lexical-write-float", 4561 - "lexical-write-integer", 4562 - ] 4563 - 4564 - [[package]] 4565 - name = "lexical-parse-float" 4566 - version = "0.8.5" 4567 - source = "registry+https://github.com/rust-lang/crates.io-index" 4568 - checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f" 4569 - dependencies = [ 4570 - "lexical-parse-integer", 4571 - "lexical-util", 4572 - "static_assertions", 4573 - ] 4574 - 4575 - [[package]] 4576 - name = "lexical-parse-integer" 4577 - version = "0.8.6" 4578 - source = "registry+https://github.com/rust-lang/crates.io-index" 4579 - checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9" 4580 - dependencies = [ 4581 - "lexical-util", 4582 - "static_assertions", 4583 - ] 4584 - 4585 - [[package]] 4586 - name = "lexical-util" 4587 - version = "0.8.5" 4588 - source = "registry+https://github.com/rust-lang/crates.io-index" 4589 - checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc" 4590 - dependencies = [ 4591 - "static_assertions", 4592 - ] 4593 - 4594 - [[package]] 4595 - name = "lexical-write-float" 4596 - version = "0.8.5" 4597 - source = "registry+https://github.com/rust-lang/crates.io-index" 4598 - checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862" 4599 - dependencies = [ 4600 - "lexical-util", 4601 - "lexical-write-integer", 4602 - "static_assertions", 4603 - ] 4604 - 4605 - [[package]] 4606 - name = "lexical-write-integer" 4607 - version = "0.8.5" 4608 - source = "registry+https://github.com/rust-lang/crates.io-index" 4609 - checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446" 4610 - dependencies = [ 4611 - "lexical-util", 4612 - "static_assertions", 4613 - ] 4614 - 4615 - [[package]] 4616 - name = "libc" 4617 - version = "0.2.155" 4618 - source = "registry+https://github.com/rust-lang/crates.io-index" 4619 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 4620 - 4621 - [[package]] 4622 - name = "libflate" 4623 - version = "1.4.0" 4624 - source = "registry+https://github.com/rust-lang/crates.io-index" 4625 - checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18" 4626 - dependencies = [ 4627 - "adler32", 4628 - "crc32fast", 4629 - "libflate_lz77", 4630 - ] 4631 - 4632 - [[package]] 4633 - name = "libflate_lz77" 4634 - version = "1.2.0" 4635 - source = "registry+https://github.com/rust-lang/crates.io-index" 4636 - checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf" 4637 - dependencies = [ 4638 - "rle-decode-fast", 4639 - ] 4640 - 4641 - [[package]] 4642 - name = "libm" 4643 - version = "0.2.8" 4644 - source = "registry+https://github.com/rust-lang/crates.io-index" 4645 - checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 4646 - 4647 - [[package]] 4648 - name = "libmimalloc-sys" 4649 - version = "0.1.38" 4650 - source = "registry+https://github.com/rust-lang/crates.io-index" 4651 - checksum = "0e7bb23d733dfcc8af652a78b7bf232f0e967710d044732185e561e47c0336b6" 4652 - dependencies = [ 4653 - "cc", 4654 - "libc", 4655 - ] 4656 - 4657 - [[package]] 4658 - name = "libredox" 4659 - version = "0.1.3" 4660 - source = "registry+https://github.com/rust-lang/crates.io-index" 4661 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 4662 - dependencies = [ 4663 - "bitflags 2.5.0", 4664 - "libc", 4665 - ] 4666 - 4667 - [[package]] 4668 - name = "libsqlite3-sys" 4669 - version = "0.27.0" 4670 - source = "registry+https://github.com/rust-lang/crates.io-index" 4671 - checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 4672 - dependencies = [ 4673 - "cc", 4674 - "pkg-config", 4675 - "vcpkg", 4676 - ] 4677 - 4678 - [[package]] 4679 - name = "libz-sys" 4680 - version = "1.1.18" 4681 - source = "registry+https://github.com/rust-lang/crates.io-index" 4682 - checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e" 4683 - dependencies = [ 4684 - "cc", 4685 - "pkg-config", 4686 - "vcpkg", 4687 - ] 4688 - 4689 - [[package]] 4690 - name = "linux-raw-sys" 4691 - version = "0.4.14" 4692 - source = "registry+https://github.com/rust-lang/crates.io-index" 4693 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 4694 - 4695 - [[package]] 4696 - name = "litemap" 4697 - version = "0.7.3" 4698 - source = "registry+https://github.com/rust-lang/crates.io-index" 4699 - checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" 4700 - 4701 - [[package]] 4702 - name = "local-channel" 4703 - version = "0.1.5" 4704 - source = "registry+https://github.com/rust-lang/crates.io-index" 4705 - checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" 4706 - dependencies = [ 4707 - "futures-core", 4708 - "futures-sink", 4709 - "local-waker", 4710 - ] 4711 - 4712 - [[package]] 4713 - name = "local-waker" 4714 - version = "0.1.4" 4715 - source = "registry+https://github.com/rust-lang/crates.io-index" 4716 - checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" 4717 - 4718 - [[package]] 4719 - name = "lock_api" 4720 - version = "0.4.12" 4721 - source = "registry+https://github.com/rust-lang/crates.io-index" 4722 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 4723 - dependencies = [ 4724 - "autocfg", 4725 - "scopeguard", 4726 - ] 4727 - 4728 - [[package]] 4729 - name = "log" 4730 - version = "0.4.21" 4731 - source = "registry+https://github.com/rust-lang/crates.io-index" 4732 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 4733 - 4734 - [[package]] 4735 - name = "lrlex" 4736 - version = "0.12.0" 4737 - source = "registry+https://github.com/rust-lang/crates.io-index" 4738 - checksum = "22b832738fbfa58ad036580929e973b3b6bd31c6d6c7f18f6b5ea7b626675c85" 4739 - dependencies = [ 4740 - "getopts", 4741 - "lazy_static", 4742 - "lrpar", 4743 - "num-traits", 4744 - "regex", 4745 - "serde", 4746 - "try_from", 4747 - "vergen", 4748 - ] 4749 - 4750 - [[package]] 4751 - name = "lrpar" 4752 - version = "0.12.0" 4753 - source = "registry+https://github.com/rust-lang/crates.io-index" 4754 - checksum = "2f270b952b07995fe874b10a5ed7dd28c80aa2130e37a7de7ed667d034e0a521" 4755 - dependencies = [ 4756 - "bincode", 4757 - "cactus", 4758 - "cfgrammar", 4759 - "filetime", 4760 - "indexmap 1.9.3", 4761 - "lazy_static", 4762 - "lrtable", 4763 - "num-traits", 4764 - "packedvec", 4765 - "regex", 4766 - "serde", 4767 - "static_assertions", 4768 - "vergen", 4769 - "vob", 4770 - ] 4771 - 4772 - [[package]] 4773 - name = "lrtable" 4774 - version = "0.12.0" 4775 - source = "registry+https://github.com/rust-lang/crates.io-index" 4776 - checksum = "a854115c6a10772ac154261592b082436abc869c812575cadcf9d7ceda8eff0b" 4777 - dependencies = [ 4778 - "cfgrammar", 4779 - "fnv", 4780 - "num-traits", 4781 - "serde", 4782 - "sparsevec", 4783 - "static_assertions", 4784 - "vob", 4785 - ] 4786 - 4787 - [[package]] 4788 - name = "lz4_flex" 4789 - version = "0.11.3" 4790 - source = "registry+https://github.com/rust-lang/crates.io-index" 4791 - checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5" 4792 - dependencies = [ 4793 - "twox-hash", 4794 - ] 4795 - 4796 - [[package]] 4797 - name = "lzma-sys" 4798 - version = "0.1.20" 4799 - source = "registry+https://github.com/rust-lang/crates.io-index" 4800 - checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" 4801 - dependencies = [ 4802 - "cc", 4803 - "libc", 4804 - "pkg-config", 4805 - ] 4806 - 4807 - [[package]] 4808 - name = "mach" 4809 - version = "0.3.2" 4810 - source = "registry+https://github.com/rust-lang/crates.io-index" 4811 - checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 4812 - dependencies = [ 4813 - "libc", 4814 - ] 4815 - 4816 - [[package]] 4817 - name = "match_cfg" 4818 - version = "0.1.0" 4819 - source = "registry+https://github.com/rust-lang/crates.io-index" 4820 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 4821 - 4822 - [[package]] 4823 - name = "matchers" 4824 - version = "0.1.0" 4825 - source = "registry+https://github.com/rust-lang/crates.io-index" 4826 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 4827 - dependencies = [ 4828 - "regex-automata 0.1.10", 4829 - ] 4830 - 4831 - [[package]] 4832 - name = "matchit" 4833 - version = "0.7.3" 4834 - source = "registry+https://github.com/rust-lang/crates.io-index" 4835 - checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 4836 - 4837 - [[package]] 4838 - name = "maxminddb" 4839 - version = "0.23.0" 4840 - source = "registry+https://github.com/rust-lang/crates.io-index" 4841 - checksum = "fe2ba61113f9f7a9f0e87c519682d39c43a6f3f79c2cc42c3ba3dda83b1fa334" 4842 - dependencies = [ 4843 - "ipnetwork 0.18.0", 4844 - "log", 4845 - "memchr", 4846 - "serde", 4847 - ] 4848 - 4849 - [[package]] 4850 - name = "md-5" 4851 - version = "0.10.6" 4852 - source = "registry+https://github.com/rust-lang/crates.io-index" 4853 - checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 4854 - dependencies = [ 4855 - "cfg-if 1.0.0", 4856 - "digest", 4857 - ] 4858 - 4859 - [[package]] 4860 - name = "mediatype" 4861 - version = "0.19.18" 4862 - source = "registry+https://github.com/rust-lang/crates.io-index" 4863 - checksum = "8878cd8d1b3c8c8ae4b2ba0a36652b7cf192f618a599a7fbdfa25cffd4ea72dd" 4864 - 4865 - [[package]] 4866 - name = "memchr" 4867 - version = "2.7.2" 4868 - source = "registry+https://github.com/rust-lang/crates.io-index" 4869 - checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 4870 - 4871 - [[package]] 4872 - name = "memmap2" 4873 - version = "0.9.4" 4874 - source = "registry+https://github.com/rust-lang/crates.io-index" 4875 - checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 4876 - dependencies = [ 4877 - "libc", 4878 - ] 4879 - 4880 - [[package]] 4881 - name = "memory-stats" 4882 - version = "1.1.0" 4883 - source = "registry+https://github.com/rust-lang/crates.io-index" 4884 - checksum = "34f79cf9964c5c9545493acda1263f1912f8d2c56c8a2ffee2606cb960acaacc" 4885 - dependencies = [ 4886 - "libc", 4887 - "winapi 0.3.9", 4888 - ] 4889 - 4890 - [[package]] 4891 - name = "mimalloc" 4892 - version = "0.1.42" 4893 - source = "registry+https://github.com/rust-lang/crates.io-index" 4894 - checksum = "e9186d86b79b52f4a77af65604b51225e8db1d6ee7e3f41aec1e40829c71a176" 4895 - dependencies = [ 4896 - "libmimalloc-sys", 4897 - ] 4898 - 4899 - [[package]] 4900 - name = "mime" 4901 - version = "0.3.17" 4902 - source = "registry+https://github.com/rust-lang/crates.io-index" 4903 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 4904 - 4905 - [[package]] 4906 - name = "mime_guess" 4907 - version = "2.0.4" 4908 - source = "registry+https://github.com/rust-lang/crates.io-index" 4909 - checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 4910 - dependencies = [ 4911 - "mime", 4912 - "unicase", 4913 - ] 4914 - 4915 - [[package]] 4916 - name = "minimal-lexical" 4917 - version = "0.2.1" 4918 - source = "registry+https://github.com/rust-lang/crates.io-index" 4919 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 4920 - 4921 - [[package]] 4922 - name = "miniz_oxide" 4923 - version = "0.7.3" 4924 - source = "registry+https://github.com/rust-lang/crates.io-index" 4925 - checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" 4926 - dependencies = [ 4927 - "adler", 4928 - ] 4929 - 4930 - [[package]] 4931 - name = "mio" 4932 - version = "0.8.11" 4933 - source = "registry+https://github.com/rust-lang/crates.io-index" 4934 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 4935 - dependencies = [ 4936 - "libc", 4937 - "log", 4938 - "wasi 0.11.0+wasi-snapshot-preview1", 4939 - "windows-sys 0.48.0", 4940 - ] 4941 - 4942 - [[package]] 4943 - name = "moka" 4944 - version = "0.12.8" 4945 - source = "registry+https://github.com/rust-lang/crates.io-index" 4946 - checksum = "32cf62eb4dd975d2dde76432fb1075c49e3ee2331cf36f1f8fd4b66550d32b6f" 4947 - dependencies = [ 4948 - "async-lock", 4949 - "async-trait", 4950 - "crossbeam-channel", 4951 - "crossbeam-epoch", 4952 - "crossbeam-utils", 4953 - "event-listener 5.3.1", 4954 - "futures-util", 4955 - "once_cell", 4956 - "parking_lot", 4957 - "quanta 0.12.3", 4958 - "rustc_version", 4959 - "smallvec", 4960 - "tagptr", 4961 - "thiserror", 4962 - "triomphe", 4963 - "uuid", 4964 - ] 4965 - 4966 - [[package]] 4967 - name = "multimap" 4968 - version = "0.10.0" 4969 - source = "registry+https://github.com/rust-lang/crates.io-index" 4970 - checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" 4971 - 4972 - [[package]] 4973 - name = "murmur3" 4974 - version = "0.5.2" 4975 - source = "registry+https://github.com/rust-lang/crates.io-index" 4976 - checksum = "9252111cf132ba0929b6f8e030cac2a24b507f3a4d6db6fb2896f27b354c714b" 4977 - 4978 - [[package]] 4979 - name = "names" 4980 - version = "0.14.0" 4981 - source = "registry+https://github.com/rust-lang/crates.io-index" 4982 - checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc" 4983 - dependencies = [ 4984 - "clap 3.2.25", 4985 - "rand", 4986 - ] 4987 - 4988 - [[package]] 4989 - name = "ndk-context" 4990 - version = "0.1.1" 4991 - source = "registry+https://github.com/rust-lang/crates.io-index" 4992 - checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 4993 - 4994 - [[package]] 4995 - name = "new_debug_unreachable" 4996 - version = "1.0.6" 4997 - source = "registry+https://github.com/rust-lang/crates.io-index" 4998 - checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 4999 - 5000 - [[package]] 5001 - name = "new_mime_guess" 5002 - version = "4.0.1" 5003 - source = "registry+https://github.com/rust-lang/crates.io-index" 5004 - checksum = "c2d684d1b59e0dc07b37e2203ef576987473288f530082512aff850585c61b1f" 5005 - dependencies = [ 5006 - "mime", 5007 - "unicase", 5008 - ] 5009 - 5010 - [[package]] 5011 - name = "nix" 5012 - version = "0.26.4" 5013 - source = "registry+https://github.com/rust-lang/crates.io-index" 5014 - checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 5015 - dependencies = [ 5016 - "bitflags 1.3.2", 5017 - "cfg-if 1.0.0", 5018 - "libc", 5019 - ] 5020 - 5021 - [[package]] 5022 - name = "nix" 5023 - version = "0.28.0" 5024 - source = "registry+https://github.com/rust-lang/crates.io-index" 5025 - checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 5026 - dependencies = [ 5027 - "bitflags 2.5.0", 5028 - "cfg-if 1.0.0", 5029 - "cfg_aliases 0.1.1", 5030 - "libc", 5031 - ] 5032 - 5033 - [[package]] 5034 - name = "nkeys" 5035 - version = "0.4.1" 5036 - source = "registry+https://github.com/rust-lang/crates.io-index" 5037 - checksum = "bc522a19199a0795776406619aa6aa78e1e55690fbeb3181b8db5265fd0e89ce" 5038 - dependencies = [ 5039 - "data-encoding", 5040 - "ed25519", 5041 - "ed25519-dalek", 5042 - "getrandom", 5043 - "log", 5044 - "rand", 5045 - "signatory", 5046 - ] 5047 - 5048 - [[package]] 5049 - name = "nom" 5050 - version = "7.1.3" 5051 - source = "registry+https://github.com/rust-lang/crates.io-index" 5052 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 5053 - dependencies = [ 5054 - "memchr", 5055 - "minimal-lexical", 5056 - ] 5057 - 5058 - [[package]] 5059 - name = "ntapi" 5060 - version = "0.4.1" 5061 - source = "registry+https://github.com/rust-lang/crates.io-index" 5062 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 5063 - dependencies = [ 5064 - "winapi 0.3.9", 5065 - ] 5066 - 5067 - [[package]] 5068 - name = "nu-ansi-term" 5069 - version = "0.46.0" 5070 - source = "registry+https://github.com/rust-lang/crates.io-index" 5071 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 5072 - dependencies = [ 5073 - "overload", 5074 - "winapi 0.3.9", 5075 - ] 5076 - 5077 - [[package]] 5078 - name = "nuid" 5079 - version = "0.5.0" 5080 - source = "registry+https://github.com/rust-lang/crates.io-index" 5081 - checksum = "fc895af95856f929163a0aa20c26a78d26bfdc839f51b9d5aa7a5b79e52b7e83" 5082 - dependencies = [ 5083 - "rand", 5084 - ] 5085 - 5086 - [[package]] 5087 - name = "num" 5088 - version = "0.4.3" 5089 - source = "registry+https://github.com/rust-lang/crates.io-index" 5090 - checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 5091 - dependencies = [ 5092 - "num-bigint", 5093 - "num-complex", 5094 - "num-integer", 5095 - "num-iter", 5096 - "num-rational", 5097 - "num-traits", 5098 - ] 5099 - 5100 - [[package]] 5101 - name = "num-bigint" 5102 - version = "0.4.5" 5103 - source = "registry+https://github.com/rust-lang/crates.io-index" 5104 - checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7" 5105 - dependencies = [ 5106 - "num-integer", 5107 - "num-traits", 5108 - ] 5109 - 5110 - [[package]] 5111 - name = "num-bigint-dig" 5112 - version = "0.8.4" 5113 - source = "registry+https://github.com/rust-lang/crates.io-index" 5114 - checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 5115 - dependencies = [ 5116 - "byteorder", 5117 - "lazy_static", 5118 - "libm", 5119 - "num-integer", 5120 - "num-iter", 5121 - "num-traits", 5122 - "rand", 5123 - "smallvec", 5124 - "zeroize", 5125 - ] 5126 - 5127 - [[package]] 5128 - name = "num-complex" 5129 - version = "0.4.6" 5130 - source = "registry+https://github.com/rust-lang/crates.io-index" 5131 - checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 5132 - dependencies = [ 5133 - "num-traits", 5134 - ] 5135 - 5136 - [[package]] 5137 - name = "num-conv" 5138 - version = "0.1.0" 5139 - source = "registry+https://github.com/rust-lang/crates.io-index" 5140 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 5141 - 5142 - [[package]] 5143 - name = "num-integer" 5144 - version = "0.1.46" 5145 - source = "registry+https://github.com/rust-lang/crates.io-index" 5146 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 5147 - dependencies = [ 5148 - "num-traits", 5149 - ] 5150 - 5151 - [[package]] 5152 - name = "num-iter" 5153 - version = "0.1.45" 5154 - source = "registry+https://github.com/rust-lang/crates.io-index" 5155 - checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 5156 - dependencies = [ 5157 - "autocfg", 5158 - "num-integer", 5159 - "num-traits", 5160 - ] 5161 - 5162 - [[package]] 5163 - name = "num-rational" 5164 - version = "0.4.2" 5165 - source = "registry+https://github.com/rust-lang/crates.io-index" 5166 - checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 5167 - dependencies = [ 5168 - "num-bigint", 5169 - "num-integer", 5170 - "num-traits", 5171 - ] 5172 - 5173 - [[package]] 5174 - name = "num-traits" 5175 - version = "0.2.19" 5176 - source = "registry+https://github.com/rust-lang/crates.io-index" 5177 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 5178 - dependencies = [ 5179 - "autocfg", 5180 - "libm", 5181 - ] 5182 - 5183 - [[package]] 5184 - name = "num_cpus" 5185 - version = "1.16.0" 5186 - source = "registry+https://github.com/rust-lang/crates.io-index" 5187 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 5188 - dependencies = [ 5189 - "hermit-abi 0.3.9", 5190 - "libc", 5191 - ] 5192 - 5193 - [[package]] 5194 - name = "num_enum" 5195 - version = "0.6.1" 5196 - source = "registry+https://github.com/rust-lang/crates.io-index" 5197 - checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" 5198 - dependencies = [ 5199 - "num_enum_derive", 5200 - ] 5201 - 5202 - [[package]] 5203 - name = "num_enum_derive" 5204 - version = "0.6.1" 5205 - source = "registry+https://github.com/rust-lang/crates.io-index" 5206 - checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" 5207 - dependencies = [ 5208 - "proc-macro-crate 1.3.1", 5209 - "proc-macro2", 5210 - "quote", 5211 - "syn 2.0.66", 5212 - ] 5213 - 5214 - [[package]] 5215 - name = "objc-sys" 5216 - version = "0.3.5" 5217 - source = "registry+https://github.com/rust-lang/crates.io-index" 5218 - checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 5219 - 5220 - [[package]] 5221 - name = "objc2" 5222 - version = "0.5.2" 5223 - source = "registry+https://github.com/rust-lang/crates.io-index" 5224 - checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 5225 - dependencies = [ 5226 - "objc-sys", 5227 - "objc2-encode", 5228 - ] 5229 - 5230 - [[package]] 5231 - name = "objc2-encode" 5232 - version = "4.0.3" 5233 - source = "registry+https://github.com/rust-lang/crates.io-index" 5234 - checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 5235 - 5236 - [[package]] 5237 - name = "objc2-foundation" 5238 - version = "0.2.2" 5239 - source = "registry+https://github.com/rust-lang/crates.io-index" 5240 - checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 5241 - dependencies = [ 5242 - "bitflags 2.5.0", 5243 - "block2", 5244 - "libc", 5245 - "objc2", 5246 - ] 5247 - 5248 - [[package]] 5249 - name = "object" 5250 - version = "0.36.0" 5251 - source = "registry+https://github.com/rust-lang/crates.io-index" 5252 - checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434" 5253 - dependencies = [ 5254 - "memchr", 5255 - ] 5256 - 5257 - [[package]] 5258 - name = "object_store" 5259 - version = "0.10.2" 5260 - source = "registry+https://github.com/rust-lang/crates.io-index" 5261 - checksum = "e6da452820c715ce78221e8202ccc599b4a52f3e1eb3eedb487b680c81a8e3f3" 5262 - dependencies = [ 5263 - "async-trait", 5264 - "base64 0.22.1", 5265 - "bytes", 5266 - "chrono", 5267 - "futures", 5268 - "humantime", 5269 - "hyper 1.3.1", 5270 - "itertools 0.13.0", 5271 - "md-5", 5272 - "parking_lot", 5273 - "percent-encoding", 5274 - "quick-xml", 5275 - "rand", 5276 - "reqwest 0.12.4", 5277 - "ring", 5278 - "rustls-pemfile 2.1.2", 5279 - "serde", 5280 - "serde_json", 5281 - "snafu 0.7.5", 5282 - "tokio", 5283 - "tracing", 5284 - "url", 5285 - "walkdir", 5286 - ] 5287 - 5288 - [[package]] 5289 - name = "octseq" 5290 - version = "0.5.1" 5291 - source = "registry+https://github.com/rust-lang/crates.io-index" 5292 - checksum = "2ed2eaec452d98ccc1c615dd843fd039d9445f2fb4da114ee7e6af5fcb68be98" 5293 - dependencies = [ 5294 - "bytes", 5295 - "serde", 5296 - "smallvec", 5297 - ] 5298 - 5299 - [[package]] 5300 - name = "ofb" 5301 - version = "0.6.1" 5302 - source = "registry+https://github.com/rust-lang/crates.io-index" 5303 - checksum = "2cc40678e045ff4eb1666ea6c0f994b133c31f673c09aed292261b6d5b6963a0" 5304 - dependencies = [ 5305 - "cipher", 5306 - ] 5307 - 5308 - [[package]] 5309 - name = "once_cell" 5310 - version = "1.19.0" 5311 - source = "registry+https://github.com/rust-lang/crates.io-index" 5312 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 5313 - 5314 - [[package]] 5315 - name = "onig" 5316 - version = "6.4.0" 5317 - source = "registry+https://github.com/rust-lang/crates.io-index" 5318 - checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f" 5319 - dependencies = [ 5320 - "bitflags 1.3.2", 5321 - "libc", 5322 - "once_cell", 5323 - "onig_sys", 5324 - ] 5325 - 5326 - [[package]] 5327 - name = "onig_sys" 5328 - version = "69.8.1" 5329 - source = "registry+https://github.com/rust-lang/crates.io-index" 5330 - checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7" 5331 - dependencies = [ 5332 - "cc", 5333 - "pkg-config", 5334 - ] 5335 - 5336 - [[package]] 5337 - name = "oorandom" 5338 - version = "11.1.3" 5339 - source = "registry+https://github.com/rust-lang/crates.io-index" 5340 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 5341 - 5342 - [[package]] 5343 - name = "opaque-debug" 5344 - version = "0.3.1" 5345 - source = "registry+https://github.com/rust-lang/crates.io-index" 5346 - checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 5347 - 5348 - [[package]] 5349 - name = "openobserve" 5350 - version = "0.10.9" 5351 - dependencies = [ 5352 - "actix", 5353 - "actix-cors", 5354 - "actix-http", 5355 - "actix-multipart", 5356 - "actix-web", 5357 - "actix-web-actors", 5358 - "actix-web-httpauth", 5359 - "actix-web-lab", 5360 - "actix-web-opentelemetry", 5361 - "actix-web-prometheus", 5362 - "actix-web-rust-embed-responder", 5363 - "actix-ws", 5364 - "ahash 0.8.11", 5365 - "anyhow", 5366 - "argon2", 5367 - "arrow", 5368 - "arrow-schema", 5369 - "async-recursion", 5370 - "async-trait", 5371 - "awc", 5372 - "base64 0.21.7", 5373 - "bitvec", 5374 - "blake3", 5375 - "bytes", 5376 - "chromiumoxide", 5377 - "chrono", 5378 - "clap 4.5.7", 5379 - "cloudevents-sdk", 5380 - "config", 5381 - "console-subscriber", 5382 - "cron", 5383 - "csv", 5384 - "dashmap", 5385 - "datafusion", 5386 - "datafusion-proto", 5387 - "enrichment", 5388 - "env_logger 0.10.2", 5389 - "etcd-client", 5390 - "expect-test", 5391 - "faststr", 5392 - "flate2", 5393 - "float-cmp", 5394 - "futures", 5395 - "getrandom", 5396 - "hashbrown 0.14.5", 5397 - "hex", 5398 - "http-auth-basic", 5399 - "infra", 5400 - "ingester", 5401 - "ipnetwork 0.20.0", 5402 - "itertools 0.12.1", 5403 - "jsonwebtoken", 5404 - "lettre", 5405 - "log", 5406 - "maxminddb", 5407 - "memory-stats", 5408 - "mimalloc", 5409 - "object_store", 5410 - "once_cell", 5411 - "opentelemetry", 5412 - "opentelemetry-otlp", 5413 - "opentelemetry-proto", 5414 - "opentelemetry_sdk", 5415 - "parking_lot", 5416 - "parquet", 5417 - "prometheus", 5418 - "promql-parser", 5419 - "prost 0.12.6", 5420 - "proto", 5421 - "pyroscope", 5422 - "pyroscope_pprofrs", 5423 - "rand", 5424 - "rayon", 5425 - "regex", 5426 - "regex-syntax 0.8.4", 5427 - "report_server", 5428 - "reqwest 0.11.27", 5429 - "rust-embed-for-web", 5430 - "segment", 5431 - "serde", 5432 - "serde_json", 5433 - "sha256", 5434 - "snafu 0.7.5", 5435 - "snap", 5436 - "sqlparser", 5437 - "strum 0.25.0", 5438 - "sysinfo", 5439 - "syslog_loose 0.18.0", 5440 - "thiserror", 5441 - "tikv-jemallocator", 5442 - "time", 5443 - "tokio", 5444 - "tokio-stream", 5445 - "tokio-tungstenite", 5446 - "tonic 0.11.0", 5447 - "tracing", 5448 - "tracing-appender", 5449 - "tracing-opentelemetry", 5450 - "tracing-subscriber", 5451 - "uaparser", 5452 - "url", 5453 - "utoipa", 5454 - "utoipa-swagger-ui", 5455 - "version-compare", 5456 - "vrl", 5457 - "zstd", 5458 - ] 5459 - 5460 - [[package]] 5461 - name = "openssl-probe" 5462 - version = "0.1.5" 5463 - source = "registry+https://github.com/rust-lang/crates.io-index" 5464 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 5465 - 5466 - [[package]] 5467 - name = "opentelemetry" 5468 - version = "0.22.0" 5469 - source = "registry+https://github.com/rust-lang/crates.io-index" 5470 - checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf" 5471 - dependencies = [ 5472 - "futures-core", 5473 - "futures-sink", 5474 - "js-sys", 5475 - "once_cell", 5476 - "pin-project-lite", 5477 - "thiserror", 5478 - "urlencoding", 5479 - ] 5480 - 5481 - [[package]] 5482 - name = "opentelemetry-http" 5483 - version = "0.11.1" 5484 - source = "registry+https://github.com/rust-lang/crates.io-index" 5485 - checksum = "7690dc77bf776713848c4faa6501157469017eaf332baccd4eb1cea928743d94" 5486 - dependencies = [ 5487 - "async-trait", 5488 - "bytes", 5489 - "http 0.2.12", 5490 - "opentelemetry", 5491 - "reqwest 0.11.27", 5492 - ] 5493 - 5494 - [[package]] 5495 - name = "opentelemetry-otlp" 5496 - version = "0.15.0" 5497 - source = "registry+https://github.com/rust-lang/crates.io-index" 5498 - checksum = "1a016b8d9495c639af2145ac22387dcb88e44118e45320d9238fbf4e7889abcb" 5499 - dependencies = [ 5500 - "async-trait", 5501 - "futures-core", 5502 - "http 0.2.12", 5503 - "opentelemetry", 5504 - "opentelemetry-http", 5505 - "opentelemetry-proto", 5506 - "opentelemetry-semantic-conventions", 5507 - "opentelemetry_sdk", 5508 - "prost 0.12.6", 5509 - "reqwest 0.11.27", 5510 - "serde", 5511 - "thiserror", 5512 - "tokio", 5513 - "tonic 0.11.0", 5514 - ] 5515 - 5516 - [[package]] 5517 - name = "opentelemetry-proto" 5518 - version = "0.5.0" 5519 - source = "registry+https://github.com/rust-lang/crates.io-index" 5520 - checksum = "3a8fddc9b68f5b80dae9d6f510b88e02396f006ad48cac349411fbecc80caae4" 5521 - dependencies = [ 5522 - "opentelemetry", 5523 - "opentelemetry_sdk", 5524 - "prost 0.12.6", 5525 - "serde", 5526 - "tonic 0.11.0", 5527 - ] 5528 - 5529 - [[package]] 5530 - name = "opentelemetry-semantic-conventions" 5531 - version = "0.14.0" 5532 - source = "registry+https://github.com/rust-lang/crates.io-index" 5533 - checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910" 5534 - 5535 - [[package]] 5536 - name = "opentelemetry_sdk" 5537 - version = "0.22.1" 5538 - source = "registry+https://github.com/rust-lang/crates.io-index" 5539 - checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e" 5540 - dependencies = [ 5541 - "async-trait", 5542 - "crossbeam-channel", 5543 - "futures-channel", 5544 - "futures-executor", 5545 - "futures-util", 5546 - "glob", 5547 - "once_cell", 5548 - "opentelemetry", 5549 - "ordered-float 4.2.0", 5550 - "percent-encoding", 5551 - "rand", 5552 - "serde_json", 5553 - "thiserror", 5554 - "tokio", 5555 - "tokio-stream", 5556 - ] 5557 - 5558 - [[package]] 5559 - name = "option-ext" 5560 - version = "0.2.0" 5561 - source = "registry+https://github.com/rust-lang/crates.io-index" 5562 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 5563 - 5564 - [[package]] 5565 - name = "ordered-float" 5566 - version = "2.10.1" 5567 - source = "registry+https://github.com/rust-lang/crates.io-index" 5568 - checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 5569 - dependencies = [ 5570 - "num-traits", 5571 - ] 5572 - 5573 - [[package]] 5574 - name = "ordered-float" 5575 - version = "4.2.0" 5576 - source = "registry+https://github.com/rust-lang/crates.io-index" 5577 - checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e" 5578 - dependencies = [ 5579 - "num-traits", 5580 - ] 5581 - 5582 - [[package]] 5583 - name = "os_info" 5584 - version = "3.8.2" 5585 - source = "registry+https://github.com/rust-lang/crates.io-index" 5586 - checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092" 5587 - dependencies = [ 5588 - "log", 5589 - "windows-sys 0.52.0", 5590 - ] 5591 - 5592 - [[package]] 5593 - name = "os_str_bytes" 5594 - version = "6.6.1" 5595 - source = "registry+https://github.com/rust-lang/crates.io-index" 5596 - checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 5597 - 5598 - [[package]] 5599 - name = "overload" 5600 - version = "0.1.1" 5601 - source = "registry+https://github.com/rust-lang/crates.io-index" 5602 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 5603 - 5604 - [[package]] 5605 - name = "owo-colors" 5606 - version = "3.5.0" 5607 - source = "registry+https://github.com/rust-lang/crates.io-index" 5608 - checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 5609 - 5610 - [[package]] 5611 - name = "packedvec" 5612 - version = "1.2.4" 5613 - source = "registry+https://github.com/rust-lang/crates.io-index" 5614 - checksum = "bde3c690ec20e4a2b4fb46f0289a451181eb50011a1e2acc8d85e2fde9062a45" 5615 - dependencies = [ 5616 - "num-traits", 5617 - "serde", 5618 - ] 5619 - 5620 - [[package]] 5621 - name = "pad" 5622 - version = "0.1.6" 5623 - source = "registry+https://github.com/rust-lang/crates.io-index" 5624 - checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3" 5625 - dependencies = [ 5626 - "unicode-width", 5627 - ] 5628 - 5629 - [[package]] 5630 - name = "parking" 5631 - version = "2.2.0" 5632 - source = "registry+https://github.com/rust-lang/crates.io-index" 5633 - checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" 5634 - 5635 - [[package]] 5636 - name = "parking_lot" 5637 - version = "0.12.3" 5638 - source = "registry+https://github.com/rust-lang/crates.io-index" 5639 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 5640 - dependencies = [ 5641 - "lock_api", 5642 - "parking_lot_core", 5643 - ] 5644 - 5645 - [[package]] 5646 - name = "parking_lot_core" 5647 - version = "0.9.10" 5648 - source = "registry+https://github.com/rust-lang/crates.io-index" 5649 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 5650 - dependencies = [ 5651 - "cfg-if 1.0.0", 5652 - "libc", 5653 - "redox_syscall 0.5.1", 5654 - "smallvec", 5655 - "windows-targets 0.52.5", 5656 - ] 5657 - 5658 - [[package]] 5659 - name = "parquet" 5660 - version = "52.2.0" 5661 - source = "registry+https://github.com/rust-lang/crates.io-index" 5662 - checksum = "e977b9066b4d3b03555c22bdc442f3fadebd96a39111249113087d0edb2691cd" 5663 - dependencies = [ 5664 - "ahash 0.8.11", 5665 - "arrow-array", 5666 - "arrow-buffer", 5667 - "arrow-cast", 5668 - "arrow-data", 5669 - "arrow-ipc", 5670 - "arrow-schema", 5671 - "arrow-select", 5672 - "base64 0.22.1", 5673 - "brotli 6.0.0", 5674 - "bytes", 5675 - "chrono", 5676 - "flate2", 5677 - "futures", 5678 - "half", 5679 - "hashbrown 0.14.5", 5680 - "lz4_flex", 5681 - "num", 5682 - "num-bigint", 5683 - "object_store", 5684 - "paste", 5685 - "seq-macro", 5686 - "snap", 5687 - "thrift", 5688 - "tokio", 5689 - "twox-hash", 5690 - "zstd", 5691 - "zstd-sys", 5692 - ] 5693 - 5694 - [[package]] 5695 - name = "parse-size" 5696 - version = "1.0.0" 5697 - source = "registry+https://github.com/rust-lang/crates.io-index" 5698 - checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae" 5699 - 5700 - [[package]] 5701 - name = "parse-zoneinfo" 5702 - version = "0.3.1" 5703 - source = "registry+https://github.com/rust-lang/crates.io-index" 5704 - checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" 5705 - dependencies = [ 5706 - "regex", 5707 - ] 5708 - 5709 - [[package]] 5710 - name = "password-hash" 5711 - version = "0.5.0" 5712 - source = "registry+https://github.com/rust-lang/crates.io-index" 5713 - checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 5714 - dependencies = [ 5715 - "base64ct", 5716 - "rand_core", 5717 - "subtle", 5718 - ] 5719 - 5720 - [[package]] 5721 - name = "paste" 5722 - version = "1.0.15" 5723 - source = "registry+https://github.com/rust-lang/crates.io-index" 5724 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 5725 - 5726 - [[package]] 5727 - name = "peeking_take_while" 5728 - version = "1.0.0" 5729 - source = "registry+https://github.com/rust-lang/crates.io-index" 5730 - checksum = "9e9ed2178b0575fff8e1b83b58ba6f75e727aafac2e1b6c795169ad3b17eb518" 5731 - 5732 - [[package]] 5733 - name = "pem" 5734 - version = "3.0.4" 5735 - source = "registry+https://github.com/rust-lang/crates.io-index" 5736 - checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 5737 - dependencies = [ 5738 - "base64 0.22.1", 5739 - "serde", 5740 - ] 5741 - 5742 - [[package]] 5743 - name = "pem-rfc7468" 5744 - version = "0.7.0" 5745 - source = "registry+https://github.com/rust-lang/crates.io-index" 5746 - checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 5747 - dependencies = [ 5748 - "base64ct", 5749 - ] 5750 - 5751 - [[package]] 5752 - name = "percent-encoding" 5753 - version = "2.3.1" 5754 - source = "registry+https://github.com/rust-lang/crates.io-index" 5755 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 5756 - 5757 - [[package]] 5758 - name = "pest" 5759 - version = "2.7.10" 5760 - source = "registry+https://github.com/rust-lang/crates.io-index" 5761 - checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8" 5762 - dependencies = [ 5763 - "memchr", 5764 - "thiserror", 5765 - "ucd-trie", 5766 - ] 5767 - 5768 - [[package]] 5769 - name = "pest_derive" 5770 - version = "2.7.10" 5771 - source = "registry+https://github.com/rust-lang/crates.io-index" 5772 - checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459" 5773 - dependencies = [ 5774 - "pest", 5775 - "pest_generator", 5776 - ] 5777 - 5778 - [[package]] 5779 - name = "pest_generator" 5780 - version = "2.7.10" 5781 - source = "registry+https://github.com/rust-lang/crates.io-index" 5782 - checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687" 5783 - dependencies = [ 5784 - "pest", 5785 - "pest_meta", 5786 - "proc-macro2", 5787 - "quote", 5788 - "syn 2.0.66", 5789 - ] 5790 - 5791 - [[package]] 5792 - name = "pest_meta" 5793 - version = "2.7.10" 5794 - source = "registry+https://github.com/rust-lang/crates.io-index" 5795 - checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd" 5796 - dependencies = [ 5797 - "once_cell", 5798 - "pest", 5799 - "sha2", 5800 - ] 5801 - 5802 - [[package]] 5803 - name = "petgraph" 5804 - version = "0.6.5" 5805 - source = "registry+https://github.com/rust-lang/crates.io-index" 5806 - checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" 5807 - dependencies = [ 5808 - "fixedbitset", 5809 - "indexmap 2.2.6", 5810 - ] 5811 - 5812 - [[package]] 5813 - name = "phf" 5814 - version = "0.11.2" 5815 - source = "registry+https://github.com/rust-lang/crates.io-index" 5816 - checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" 5817 - dependencies = [ 5818 - "phf_shared 0.11.2", 5819 - ] 5820 - 5821 - [[package]] 5822 - name = "phf_codegen" 5823 - version = "0.11.2" 5824 - source = "registry+https://github.com/rust-lang/crates.io-index" 5825 - checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 5826 - dependencies = [ 5827 - "phf_generator", 5828 - "phf_shared 0.11.2", 5829 - ] 5830 - 5831 - [[package]] 5832 - name = "phf_generator" 5833 - version = "0.11.2" 5834 - source = "registry+https://github.com/rust-lang/crates.io-index" 5835 - checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" 5836 - dependencies = [ 5837 - "phf_shared 0.11.2", 5838 - "rand", 5839 - ] 5840 - 5841 - [[package]] 5842 - name = "phf_shared" 5843 - version = "0.10.0" 5844 - source = "registry+https://github.com/rust-lang/crates.io-index" 5845 - checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 5846 - dependencies = [ 5847 - "siphasher", 5848 - ] 5849 - 5850 - [[package]] 5851 - name = "phf_shared" 5852 - version = "0.11.2" 5853 - source = "registry+https://github.com/rust-lang/crates.io-index" 5854 - checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" 5855 - dependencies = [ 5856 - "siphasher", 5857 - ] 5858 - 5859 - [[package]] 5860 - name = "pin-project" 5861 - version = "1.1.5" 5862 - source = "registry+https://github.com/rust-lang/crates.io-index" 5863 - checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 5864 - dependencies = [ 5865 - "pin-project-internal", 5866 - ] 5867 - 5868 - [[package]] 5869 - name = "pin-project-internal" 5870 - version = "1.1.5" 5871 - source = "registry+https://github.com/rust-lang/crates.io-index" 5872 - checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 5873 - dependencies = [ 5874 - "proc-macro2", 5875 - "quote", 5876 - "syn 2.0.66", 5877 - ] 5878 - 5879 - [[package]] 5880 - name = "pin-project-lite" 5881 - version = "0.2.14" 5882 - source = "registry+https://github.com/rust-lang/crates.io-index" 5883 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 5884 - 5885 - [[package]] 5886 - name = "pin-utils" 5887 - version = "0.1.0" 5888 - source = "registry+https://github.com/rust-lang/crates.io-index" 5889 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 5890 - 5891 - [[package]] 5892 - name = "piper" 5893 - version = "0.2.3" 5894 - source = "registry+https://github.com/rust-lang/crates.io-index" 5895 - checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" 5896 - dependencies = [ 5897 - "atomic-waker", 5898 - "fastrand 2.1.0", 5899 - "futures-io", 5900 - ] 5901 - 5902 - [[package]] 5903 - name = "pkcs1" 5904 - version = "0.7.5" 5905 - source = "registry+https://github.com/rust-lang/crates.io-index" 5906 - checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 5907 - dependencies = [ 5908 - "der", 5909 - "pkcs8", 5910 - "spki", 5911 - ] 5912 - 5913 - [[package]] 5914 - name = "pkcs8" 5915 - version = "0.10.2" 5916 - source = "registry+https://github.com/rust-lang/crates.io-index" 5917 - checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 5918 - dependencies = [ 5919 - "der", 5920 - "spki", 5921 - ] 5922 - 5923 - [[package]] 5924 - name = "pkg-config" 5925 - version = "0.3.30" 5926 - source = "registry+https://github.com/rust-lang/crates.io-index" 5927 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 5928 - 5929 - [[package]] 5930 - name = "poly1305" 5931 - version = "0.8.0" 5932 - source = "registry+https://github.com/rust-lang/crates.io-index" 5933 - checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" 5934 - dependencies = [ 5935 - "cpufeatures", 5936 - "opaque-debug", 5937 - "universal-hash", 5938 - ] 5939 - 5940 - [[package]] 5941 - name = "portable-atomic" 5942 - version = "1.6.0" 5943 - source = "registry+https://github.com/rust-lang/crates.io-index" 5944 - checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 5945 - 5946 - [[package]] 5947 - name = "powerfmt" 5948 - version = "0.2.0" 5949 - source = "registry+https://github.com/rust-lang/crates.io-index" 5950 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 5951 - 5952 - [[package]] 5953 - name = "pprof" 5954 - version = "0.12.1" 5955 - source = "registry+https://github.com/rust-lang/crates.io-index" 5956 - checksum = "978385d59daf9269189d052ca8a84c1acfd0715c0599a5d5188d4acc078ca46a" 5957 - dependencies = [ 5958 - "backtrace", 5959 - "cfg-if 1.0.0", 5960 - "findshlibs", 5961 - "libc", 5962 - "log", 5963 - "nix 0.26.4", 5964 - "once_cell", 5965 - "parking_lot", 5966 - "smallvec", 5967 - "symbolic-demangle", 5968 - "tempfile", 5969 - "thiserror", 5970 - ] 5971 - 5972 - [[package]] 5973 - name = "ppv-lite86" 5974 - version = "0.2.17" 5975 - source = "registry+https://github.com/rust-lang/crates.io-index" 5976 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 5977 - 5978 - [[package]] 5979 - name = "precomputed-hash" 5980 - version = "0.1.1" 5981 - source = "registry+https://github.com/rust-lang/crates.io-index" 5982 - checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 5983 - 5984 - [[package]] 5985 - name = "prettydiff" 5986 - version = "0.7.0" 5987 - source = "registry+https://github.com/rust-lang/crates.io-index" 5988 - checksum = "abec3fb083c10660b3854367697da94c674e9e82aa7511014dc958beeb7215e9" 5989 - dependencies = [ 5990 - "owo-colors", 5991 - "pad", 5992 - ] 5993 - 5994 - [[package]] 5995 - name = "prettyplease" 5996 - version = "0.2.20" 5997 - source = "registry+https://github.com/rust-lang/crates.io-index" 5998 - checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" 5999 - dependencies = [ 6000 - "proc-macro2", 6001 - "syn 2.0.66", 6002 - ] 6003 - 6004 - [[package]] 6005 - name = "prettytable-rs" 6006 - version = "0.10.0" 6007 - source = "registry+https://github.com/rust-lang/crates.io-index" 6008 - checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a" 6009 - dependencies = [ 6010 - "encode_unicode", 6011 - "is-terminal", 6012 - "lazy_static", 6013 - "term", 6014 - "unicode-width", 6015 - ] 6016 - 6017 - [[package]] 6018 - name = "proc-macro-crate" 6019 - version = "1.3.1" 6020 - source = "registry+https://github.com/rust-lang/crates.io-index" 6021 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 6022 - dependencies = [ 6023 - "once_cell", 6024 - "toml_edit 0.19.15", 6025 - ] 6026 - 6027 - [[package]] 6028 - name = "proc-macro-crate" 6029 - version = "3.1.0" 6030 - source = "registry+https://github.com/rust-lang/crates.io-index" 6031 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 6032 - dependencies = [ 6033 - "toml_edit 0.21.1", 6034 - ] 6035 - 6036 - [[package]] 6037 - name = "proc-macro-error" 6038 - version = "1.0.4" 6039 - source = "registry+https://github.com/rust-lang/crates.io-index" 6040 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 6041 - dependencies = [ 6042 - "proc-macro-error-attr", 6043 - "proc-macro2", 6044 - "quote", 6045 - "syn 1.0.109", 6046 - "version_check", 6047 - ] 6048 - 6049 - [[package]] 6050 - name = "proc-macro-error-attr" 6051 - version = "1.0.4" 6052 - source = "registry+https://github.com/rust-lang/crates.io-index" 6053 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 6054 - dependencies = [ 6055 - "proc-macro2", 6056 - "quote", 6057 - "version_check", 6058 - ] 6059 - 6060 - [[package]] 6061 - name = "proc-macro2" 6062 - version = "1.0.85" 6063 - source = "registry+https://github.com/rust-lang/crates.io-index" 6064 - checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23" 6065 - dependencies = [ 6066 - "unicode-ident", 6067 - ] 6068 - 6069 - [[package]] 6070 - name = "procfs" 6071 - version = "0.16.0" 6072 - source = "registry+https://github.com/rust-lang/crates.io-index" 6073 - checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" 6074 - dependencies = [ 6075 - "bitflags 2.5.0", 6076 - "hex", 6077 - "lazy_static", 6078 - "procfs-core", 6079 - "rustix", 6080 - ] 6081 - 6082 - [[package]] 6083 - name = "procfs-core" 6084 - version = "0.16.0" 6085 - source = "registry+https://github.com/rust-lang/crates.io-index" 6086 - checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" 6087 - dependencies = [ 6088 - "bitflags 2.5.0", 6089 - "hex", 6090 - ] 6091 - 6092 - [[package]] 6093 - name = "prometheus" 6094 - version = "0.13.4" 6095 - source = "registry+https://github.com/rust-lang/crates.io-index" 6096 - checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" 6097 - dependencies = [ 6098 - "cfg-if 1.0.0", 6099 - "fnv", 6100 - "lazy_static", 6101 - "libc", 6102 - "memchr", 6103 - "parking_lot", 6104 - "procfs", 6105 - "protobuf", 6106 - "thiserror", 6107 - ] 6108 - 6109 - [[package]] 6110 - name = "promql-parser" 6111 - version = "0.3.1" 6112 - source = "registry+https://github.com/rust-lang/crates.io-index" 6113 - checksum = "a24c16fbf55ea420c6286ef5ee86772062332d9f3b10d24a6edbc2e88840e1ad" 6114 - dependencies = [ 6115 - "cfgrammar", 6116 - "lazy_static", 6117 - "lrlex", 6118 - "lrpar", 6119 - "regex", 6120 - ] 6121 - 6122 - [[package]] 6123 - name = "prost" 6124 - version = "0.11.9" 6125 - source = "registry+https://github.com/rust-lang/crates.io-index" 6126 - checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 6127 - dependencies = [ 6128 - "bytes", 6129 - "prost-derive 0.11.9", 6130 - ] 6131 - 6132 - [[package]] 6133 - name = "prost" 6134 - version = "0.12.6" 6135 - source = "registry+https://github.com/rust-lang/crates.io-index" 6136 - checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29" 6137 - dependencies = [ 6138 - "bytes", 6139 - "prost-derive 0.12.6", 6140 - ] 6141 - 6142 - [[package]] 6143 - name = "prost-build" 6144 - version = "0.12.6" 6145 - source = "registry+https://github.com/rust-lang/crates.io-index" 6146 - checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" 6147 - dependencies = [ 6148 - "bytes", 6149 - "heck 0.5.0", 6150 - "itertools 0.12.1", 6151 - "log", 6152 - "multimap", 6153 - "once_cell", 6154 - "petgraph", 6155 - "prettyplease", 6156 - "prost 0.12.6", 6157 - "prost-types", 6158 - "regex", 6159 - "syn 2.0.66", 6160 - "tempfile", 6161 - ] 6162 - 6163 - [[package]] 6164 - name = "prost-derive" 6165 - version = "0.11.9" 6166 - source = "registry+https://github.com/rust-lang/crates.io-index" 6167 - checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 6168 - dependencies = [ 6169 - "anyhow", 6170 - "itertools 0.10.5", 6171 - "proc-macro2", 6172 - "quote", 6173 - "syn 1.0.109", 6174 - ] 6175 - 6176 - [[package]] 6177 - name = "prost-derive" 6178 - version = "0.12.6" 6179 - source = "registry+https://github.com/rust-lang/crates.io-index" 6180 - checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" 6181 - dependencies = [ 6182 - "anyhow", 6183 - "itertools 0.12.1", 6184 - "proc-macro2", 6185 - "quote", 6186 - "syn 2.0.66", 6187 - ] 6188 - 6189 - [[package]] 6190 - name = "prost-reflect" 6191 - version = "0.13.1" 6192 - source = "registry+https://github.com/rust-lang/crates.io-index" 6193 - checksum = "6f5eec97d5d34bdd17ad2db2219aabf46b054c6c41bd5529767c9ce55be5898f" 6194 - dependencies = [ 6195 - "once_cell", 6196 - "prost 0.12.6", 6197 - "prost-types", 6198 - ] 6199 - 6200 - [[package]] 6201 - name = "prost-types" 6202 - version = "0.12.6" 6203 - source = "registry+https://github.com/rust-lang/crates.io-index" 6204 - checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" 6205 - dependencies = [ 6206 - "prost 0.12.6", 6207 - ] 6208 - 6209 - [[package]] 6210 - name = "proto" 6211 - version = "0.1.0" 6212 - dependencies = [ 6213 - "async-trait", 6214 - "datafusion", 6215 - "datafusion-proto", 6216 - "prost 0.12.6", 6217 - "prost-build", 6218 - "serde", 6219 - "serde_json", 6220 - "tokio", 6221 - "tonic 0.11.0", 6222 - "tonic-build 0.11.0", 6223 - ] 6224 - 6225 - [[package]] 6226 - name = "protobuf" 6227 - version = "2.28.0" 6228 - source = "registry+https://github.com/rust-lang/crates.io-index" 6229 - checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" 6230 - 6231 - [[package]] 6232 - name = "psl" 6233 - version = "2.1.55" 6234 - source = "registry+https://github.com/rust-lang/crates.io-index" 6235 - checksum = "ce9398ad066421139b2e3afe16ea46772ffda30bd9ba57554dc035df5e26edc8" 6236 - dependencies = [ 6237 - "psl-types", 6238 - ] 6239 - 6240 - [[package]] 6241 - name = "psl-types" 6242 - version = "2.0.11" 6243 - source = "registry+https://github.com/rust-lang/crates.io-index" 6244 - checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" 6245 - 6246 - [[package]] 6247 - name = "psm" 6248 - version = "0.1.21" 6249 - source = "registry+https://github.com/rust-lang/crates.io-index" 6250 - checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" 6251 - dependencies = [ 6252 - "cc", 6253 - ] 6254 - 6255 - [[package]] 6256 - name = "ptr_meta" 6257 - version = "0.1.4" 6258 - source = "registry+https://github.com/rust-lang/crates.io-index" 6259 - checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 6260 - dependencies = [ 6261 - "ptr_meta_derive", 6262 - ] 6263 - 6264 - [[package]] 6265 - name = "ptr_meta_derive" 6266 - version = "0.1.4" 6267 - source = "registry+https://github.com/rust-lang/crates.io-index" 6268 - checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 6269 - dependencies = [ 6270 - "proc-macro2", 6271 - "quote", 6272 - "syn 1.0.109", 6273 - ] 6274 - 6275 - [[package]] 6276 - name = "publicsuffix" 6277 - version = "2.2.3" 6278 - source = "registry+https://github.com/rust-lang/crates.io-index" 6279 - checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" 6280 - dependencies = [ 6281 - "idna 0.3.0", 6282 - "psl-types", 6283 - ] 6284 - 6285 - [[package]] 6286 - name = "pyroscope" 6287 - version = "0.5.7" 6288 - source = "registry+https://github.com/rust-lang/crates.io-index" 6289 - checksum = "ac8a53ce01af1087eaeee6ce7c4fbf50ea4040ab1825c0115c4bafa039644ba9" 6290 - dependencies = [ 6291 - "json", 6292 - "libc", 6293 - "libflate", 6294 - "log", 6295 - "names", 6296 - "prost 0.11.9", 6297 - "reqwest 0.11.27", 6298 - "thiserror", 6299 - "url", 6300 - "winapi 0.3.9", 6301 - ] 6302 - 6303 - [[package]] 6304 - name = "pyroscope_pprofrs" 6305 - version = "0.2.7" 6306 - source = "registry+https://github.com/rust-lang/crates.io-index" 6307 - checksum = "43f010b2a981a7f8449a650f25f309e520b5206ea2d89512dcb146aaa5518ff4" 6308 - dependencies = [ 6309 - "log", 6310 - "pprof", 6311 - "pyroscope", 6312 - "thiserror", 6313 - ] 6314 - 6315 - [[package]] 6316 - name = "quanta" 6317 - version = "0.10.1" 6318 - source = "registry+https://github.com/rust-lang/crates.io-index" 6319 - checksum = "b7e31331286705f455e56cca62e0e717158474ff02b7936c1fa596d983f4ae27" 6320 - dependencies = [ 6321 - "crossbeam-utils", 6322 - "libc", 6323 - "mach", 6324 - "once_cell", 6325 - "raw-cpuid 10.7.0", 6326 - "wasi 0.10.2+wasi-snapshot-preview1", 6327 - "web-sys", 6328 - "winapi 0.3.9", 6329 - ] 6330 - 6331 - [[package]] 6332 - name = "quanta" 6333 - version = "0.12.3" 6334 - source = "registry+https://github.com/rust-lang/crates.io-index" 6335 - checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" 6336 - dependencies = [ 6337 - "crossbeam-utils", 6338 - "libc", 6339 - "once_cell", 6340 - "raw-cpuid 11.1.0", 6341 - "wasi 0.11.0+wasi-snapshot-preview1", 6342 - "web-sys", 6343 - "winapi 0.3.9", 6344 - ] 6345 - 6346 - [[package]] 6347 - name = "quick-xml" 6348 - version = "0.36.1" 6349 - source = "registry+https://github.com/rust-lang/crates.io-index" 6350 - checksum = "96a05e2e8efddfa51a84ca47cec303fac86c8541b686d37cac5efc0e094417bc" 6351 - dependencies = [ 6352 - "memchr", 6353 - "serde", 6354 - ] 6355 - 6356 - [[package]] 6357 - name = "quickcheck" 6358 - version = "1.0.3" 6359 - source = "registry+https://github.com/rust-lang/crates.io-index" 6360 - checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6" 6361 - dependencies = [ 6362 - "env_logger 0.8.4", 6363 - "log", 6364 - "rand", 6365 - ] 6366 - 6367 - [[package]] 6368 - name = "quote" 6369 - version = "1.0.36" 6370 - source = "registry+https://github.com/rust-lang/crates.io-index" 6371 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 6372 - dependencies = [ 6373 - "proc-macro2", 6374 - ] 6375 - 6376 - [[package]] 6377 - name = "quoted_printable" 6378 - version = "0.5.0" 6379 - source = "registry+https://github.com/rust-lang/crates.io-index" 6380 - checksum = "79ec282e887b434b68c18fe5c121d38e72a5cf35119b59e54ec5b992ea9c8eb0" 6381 - 6382 - [[package]] 6383 - name = "radium" 6384 - version = "0.7.0" 6385 - source = "registry+https://github.com/rust-lang/crates.io-index" 6386 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 6387 - 6388 - [[package]] 6389 - name = "rand" 6390 - version = "0.8.5" 6391 - source = "registry+https://github.com/rust-lang/crates.io-index" 6392 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 6393 - dependencies = [ 6394 - "libc", 6395 - "rand_chacha", 6396 - "rand_core", 6397 - ] 6398 - 6399 - [[package]] 6400 - name = "rand_chacha" 6401 - version = "0.3.1" 6402 - source = "registry+https://github.com/rust-lang/crates.io-index" 6403 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 6404 - dependencies = [ 6405 - "ppv-lite86", 6406 - "rand_core", 6407 - ] 6408 - 6409 - [[package]] 6410 - name = "rand_core" 6411 - version = "0.6.4" 6412 - source = "registry+https://github.com/rust-lang/crates.io-index" 6413 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 6414 - dependencies = [ 6415 - "getrandom", 6416 - ] 6417 - 6418 - [[package]] 6419 - name = "raw-cpuid" 6420 - version = "10.7.0" 6421 - source = "registry+https://github.com/rust-lang/crates.io-index" 6422 - checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 6423 - dependencies = [ 6424 - "bitflags 1.3.2", 6425 - ] 6426 - 6427 - [[package]] 6428 - name = "raw-cpuid" 6429 - version = "11.1.0" 6430 - source = "registry+https://github.com/rust-lang/crates.io-index" 6431 - checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" 6432 - dependencies = [ 6433 - "bitflags 2.5.0", 6434 - ] 6435 - 6436 - [[package]] 6437 - name = "rayon" 6438 - version = "1.10.0" 6439 - source = "registry+https://github.com/rust-lang/crates.io-index" 6440 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 6441 - dependencies = [ 6442 - "either", 6443 - "rayon-core", 6444 - ] 6445 - 6446 - [[package]] 6447 - name = "rayon-core" 6448 - version = "1.12.1" 6449 - source = "registry+https://github.com/rust-lang/crates.io-index" 6450 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 6451 - dependencies = [ 6452 - "crossbeam-deque", 6453 - "crossbeam-utils", 6454 - ] 6455 - 6456 - [[package]] 6457 - name = "redox_syscall" 6458 - version = "0.4.1" 6459 - source = "registry+https://github.com/rust-lang/crates.io-index" 6460 - checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 6461 - dependencies = [ 6462 - "bitflags 1.3.2", 6463 - ] 6464 - 6465 - [[package]] 6466 - name = "redox_syscall" 6467 - version = "0.5.1" 6468 - source = "registry+https://github.com/rust-lang/crates.io-index" 6469 - checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 6470 - dependencies = [ 6471 - "bitflags 2.5.0", 6472 - ] 6473 - 6474 - [[package]] 6475 - name = "redox_users" 6476 - version = "0.4.5" 6477 - source = "registry+https://github.com/rust-lang/crates.io-index" 6478 - checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 6479 - dependencies = [ 6480 - "getrandom", 6481 - "libredox", 6482 - "thiserror", 6483 - ] 6484 - 6485 - [[package]] 6486 - name = "regex" 6487 - version = "1.10.5" 6488 - source = "registry+https://github.com/rust-lang/crates.io-index" 6489 - checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 6490 - dependencies = [ 6491 - "aho-corasick", 6492 - "memchr", 6493 - "regex-automata 0.4.7", 6494 - "regex-syntax 0.8.4", 6495 - ] 6496 - 6497 - [[package]] 6498 - name = "regex-automata" 6499 - version = "0.1.10" 6500 - source = "registry+https://github.com/rust-lang/crates.io-index" 6501 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 6502 - dependencies = [ 6503 - "regex-syntax 0.6.29", 6504 - ] 6505 - 6506 - [[package]] 6507 - name = "regex-automata" 6508 - version = "0.4.7" 6509 - source = "registry+https://github.com/rust-lang/crates.io-index" 6510 - checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 6511 - dependencies = [ 6512 - "aho-corasick", 6513 - "memchr", 6514 - "regex-syntax 0.8.4", 6515 - ] 6516 - 6517 - [[package]] 6518 - name = "regex-lite" 6519 - version = "0.1.6" 6520 - source = "registry+https://github.com/rust-lang/crates.io-index" 6521 - checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 6522 - 6523 - [[package]] 6524 - name = "regex-syntax" 6525 - version = "0.6.29" 6526 - source = "registry+https://github.com/rust-lang/crates.io-index" 6527 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 6528 - 6529 - [[package]] 6530 - name = "regex-syntax" 6531 - version = "0.8.4" 6532 - source = "registry+https://github.com/rust-lang/crates.io-index" 6533 - checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 6534 - 6535 - [[package]] 6536 - name = "rend" 6537 - version = "0.4.2" 6538 - source = "registry+https://github.com/rust-lang/crates.io-index" 6539 - checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 6540 - dependencies = [ 6541 - "bytecheck", 6542 - ] 6543 - 6544 - [[package]] 6545 - name = "report_server" 6546 - version = "0.1.0" 6547 - dependencies = [ 6548 - "actix-web", 6549 - "anyhow", 6550 - "chromiumoxide", 6551 - "chrono", 6552 - "config", 6553 - "env_logger 0.10.2", 6554 - "futures", 6555 - "lettre", 6556 - "log", 6557 - "once_cell", 6558 - "serde", 6559 - "tempfile", 6560 - "tokio", 6561 - ] 6562 - 6563 - [[package]] 6564 - name = "reqwest" 6565 - version = "0.11.27" 6566 - source = "registry+https://github.com/rust-lang/crates.io-index" 6567 - checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 6568 - dependencies = [ 6569 - "base64 0.21.7", 6570 - "bytes", 6571 - "encoding_rs", 6572 - "futures-core", 6573 - "futures-util", 6574 - "h2 0.3.26", 6575 - "http 0.2.12", 6576 - "http-body 0.4.6", 6577 - "hyper 0.14.29", 6578 - "hyper-rustls 0.24.2", 6579 - "ipnet", 6580 - "js-sys", 6581 - "log", 6582 - "mime", 6583 - "once_cell", 6584 - "percent-encoding", 6585 - "pin-project-lite", 6586 - "rustls 0.21.12", 6587 - "rustls-native-certs 0.6.3", 6588 - "rustls-pemfile 1.0.4", 6589 - "serde", 6590 - "serde_json", 6591 - "serde_urlencoded", 6592 - "sync_wrapper", 6593 - "system-configuration", 6594 - "tokio", 6595 - "tokio-rustls 0.24.1", 6596 - "tokio-util", 6597 - "tower-service", 6598 - "url", 6599 - "wasm-bindgen", 6600 - "wasm-bindgen-futures", 6601 - "wasm-streams", 6602 - "web-sys", 6603 - "webpki-roots 0.25.4", 6604 - "winreg 0.50.0", 6605 - ] 6606 - 6607 - [[package]] 6608 - name = "reqwest" 6609 - version = "0.12.4" 6610 - source = "registry+https://github.com/rust-lang/crates.io-index" 6611 - checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" 6612 - dependencies = [ 6613 - "base64 0.22.1", 6614 - "bytes", 6615 - "futures-core", 6616 - "futures-util", 6617 - "h2 0.4.5", 6618 - "http 1.1.0", 6619 - "http-body 1.0.0", 6620 - "http-body-util", 6621 - "hyper 1.3.1", 6622 - "hyper-rustls 0.26.0", 6623 - "hyper-util", 6624 - "ipnet", 6625 - "js-sys", 6626 - "log", 6627 - "mime", 6628 - "once_cell", 6629 - "percent-encoding", 6630 - "pin-project-lite", 6631 - "rustls 0.22.4", 6632 - "rustls-native-certs 0.7.0", 6633 - "rustls-pemfile 2.1.2", 6634 - "rustls-pki-types", 6635 - "serde", 6636 - "serde_json", 6637 - "serde_urlencoded", 6638 - "sync_wrapper", 6639 - "tokio", 6640 - "tokio-rustls 0.25.0", 6641 - "tokio-util", 6642 - "tower-service", 6643 - "url", 6644 - "wasm-bindgen", 6645 - "wasm-bindgen-futures", 6646 - "wasm-streams", 6647 - "web-sys", 6648 - "winreg 0.52.0", 6649 - ] 6650 - 6651 - [[package]] 6652 - name = "ring" 6653 - version = "0.17.8" 6654 - source = "registry+https://github.com/rust-lang/crates.io-index" 6655 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 6656 - dependencies = [ 6657 - "cc", 6658 - "cfg-if 1.0.0", 6659 - "getrandom", 6660 - "libc", 6661 - "spin 0.9.8", 6662 - "untrusted", 6663 - "windows-sys 0.52.0", 6664 - ] 6665 - 6666 - [[package]] 6667 - name = "rkyv" 6668 - version = "0.7.44" 6669 - source = "registry+https://github.com/rust-lang/crates.io-index" 6670 - checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0" 6671 - dependencies = [ 6672 - "bitvec", 6673 - "bytecheck", 6674 - "bytes", 6675 - "hashbrown 0.12.3", 6676 - "ptr_meta", 6677 - "rend", 6678 - "rkyv_derive", 6679 - "seahash", 6680 - "tinyvec", 6681 - "uuid", 6682 - ] 6683 - 6684 - [[package]] 6685 - name = "rkyv_derive" 6686 - version = "0.7.44" 6687 - source = "registry+https://github.com/rust-lang/crates.io-index" 6688 - checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65" 6689 - dependencies = [ 6690 - "proc-macro2", 6691 - "quote", 6692 - "syn 1.0.109", 6693 - ] 6694 - 6695 - [[package]] 6696 - name = "rle-decode-fast" 6697 - version = "1.0.3" 6698 - source = "registry+https://github.com/rust-lang/crates.io-index" 6699 - checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 6700 - 6701 - [[package]] 6702 - name = "roxmltree" 6703 - version = "0.20.0" 6704 - source = "registry+https://github.com/rust-lang/crates.io-index" 6705 - checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97" 6706 - 6707 - [[package]] 6708 - name = "rsa" 6709 - version = "0.9.6" 6710 - source = "registry+https://github.com/rust-lang/crates.io-index" 6711 - checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" 6712 - dependencies = [ 6713 - "const-oid", 6714 - "digest", 6715 - "num-bigint-dig", 6716 - "num-integer", 6717 - "num-traits", 6718 - "pkcs1", 6719 - "pkcs8", 6720 - "rand_core", 6721 - "signature", 6722 - "spki", 6723 - "subtle", 6724 - "zeroize", 6725 - ] 6726 - 6727 - [[package]] 6728 - name = "rust-embed" 6729 - version = "8.4.0" 6730 - source = "registry+https://github.com/rust-lang/crates.io-index" 6731 - checksum = "19549741604902eb99a7ed0ee177a0663ee1eda51a29f71401f166e47e77806a" 6732 - dependencies = [ 6733 - "rust-embed-impl", 6734 - "rust-embed-utils", 6735 - "walkdir", 6736 - ] 6737 - 6738 - [[package]] 6739 - name = "rust-embed-for-web" 6740 - version = "11.2.1" 6741 - source = "registry+https://github.com/rust-lang/crates.io-index" 6742 - checksum = "acadd634962e6a536f9c0058aaf712b65ee0f21394614b342e8de3feff79c4cc" 6743 - dependencies = [ 6744 - "rust-embed-for-web-impl", 6745 - "rust-embed-for-web-utils", 6746 - "walkdir", 6747 - ] 6748 - 6749 - [[package]] 6750 - name = "rust-embed-for-web-impl" 6751 - version = "11.2.1" 6752 - source = "registry+https://github.com/rust-lang/crates.io-index" 6753 - checksum = "b4a25a96341f5b99dfb29ba21dfe72d8d02109b40be52aac50022c91917bc178" 6754 - dependencies = [ 6755 - "brotli 6.0.0", 6756 - "flate2", 6757 - "globset", 6758 - "proc-macro2", 6759 - "quote", 6760 - "rust-embed-for-web-utils", 6761 - "shellexpand", 6762 - "syn 2.0.66", 6763 - "walkdir", 6764 - ] 6765 - 6766 - [[package]] 6767 - name = "rust-embed-for-web-utils" 6768 - version = "11.2.1" 6769 - source = "registry+https://github.com/rust-lang/crates.io-index" 6770 - checksum = "6cc18e05c3925164af76d54900ac3eb6e0557acbd52504f4878e231161d442dd" 6771 - dependencies = [ 6772 - "base85rs", 6773 - "chrono", 6774 - "globset", 6775 - "new_mime_guess", 6776 - "sha2", 6777 - "walkdir", 6778 - ] 6779 - 6780 - [[package]] 6781 - name = "rust-embed-impl" 6782 - version = "8.4.0" 6783 - source = "registry+https://github.com/rust-lang/crates.io-index" 6784 - checksum = "cb9f96e283ec64401f30d3df8ee2aaeb2561f34c824381efa24a35f79bf40ee4" 6785 - dependencies = [ 6786 - "proc-macro2", 6787 - "quote", 6788 - "rust-embed-utils", 6789 - "shellexpand", 6790 - "syn 2.0.66", 6791 - "walkdir", 6792 - ] 6793 - 6794 - [[package]] 6795 - name = "rust-embed-utils" 6796 - version = "8.4.0" 6797 - source = "registry+https://github.com/rust-lang/crates.io-index" 6798 - checksum = "38c74a686185620830701348de757fd36bef4aa9680fd23c49fc539ddcc1af32" 6799 - dependencies = [ 6800 - "sha2", 6801 - "walkdir", 6802 - ] 6803 - 6804 - [[package]] 6805 - name = "rust_decimal" 6806 - version = "1.35.0" 6807 - source = "registry+https://github.com/rust-lang/crates.io-index" 6808 - checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a" 6809 - dependencies = [ 6810 - "arrayvec", 6811 - "borsh", 6812 - "bytes", 6813 - "num-traits", 6814 - "rand", 6815 - "rkyv", 6816 - "serde", 6817 - "serde_json", 6818 - ] 6819 - 6820 - [[package]] 6821 - name = "rustc-demangle" 6822 - version = "0.1.24" 6823 - source = "registry+https://github.com/rust-lang/crates.io-index" 6824 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 6825 - 6826 - [[package]] 6827 - name = "rustc_version" 6828 - version = "0.4.0" 6829 - source = "registry+https://github.com/rust-lang/crates.io-index" 6830 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 6831 - dependencies = [ 6832 - "semver", 6833 - ] 6834 - 6835 - [[package]] 6836 - name = "rustix" 6837 - version = "0.38.34" 6838 - source = "registry+https://github.com/rust-lang/crates.io-index" 6839 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 6840 - dependencies = [ 6841 - "bitflags 2.5.0", 6842 - "errno", 6843 - "libc", 6844 - "linux-raw-sys", 6845 - "windows-sys 0.52.0", 6846 - ] 6847 - 6848 - [[package]] 6849 - name = "rustls" 6850 - version = "0.21.12" 6851 - source = "registry+https://github.com/rust-lang/crates.io-index" 6852 - checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 6853 - dependencies = [ 6854 - "log", 6855 - "ring", 6856 - "rustls-webpki 0.101.7", 6857 - "sct", 6858 - ] 6859 - 6860 - [[package]] 6861 - name = "rustls" 6862 - version = "0.22.4" 6863 - source = "registry+https://github.com/rust-lang/crates.io-index" 6864 - checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 6865 - dependencies = [ 6866 - "log", 6867 - "ring", 6868 - "rustls-pki-types", 6869 - "rustls-webpki 0.102.4", 6870 - "subtle", 6871 - "zeroize", 6872 - ] 6873 - 6874 - [[package]] 6875 - name = "rustls" 6876 - version = "0.23.9" 6877 - source = "registry+https://github.com/rust-lang/crates.io-index" 6878 - checksum = "a218f0f6d05669de4eabfb24f31ce802035c952429d037507b4a4a39f0e60c5b" 6879 - dependencies = [ 6880 - "log", 6881 - "once_cell", 6882 - "ring", 6883 - "rustls-pki-types", 6884 - "rustls-webpki 0.102.4", 6885 - "subtle", 6886 - "zeroize", 6887 - ] 6888 - 6889 - [[package]] 6890 - name = "rustls-native-certs" 6891 - version = "0.6.3" 6892 - source = "registry+https://github.com/rust-lang/crates.io-index" 6893 - checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 6894 - dependencies = [ 6895 - "openssl-probe", 6896 - "rustls-pemfile 1.0.4", 6897 - "schannel", 6898 - "security-framework", 6899 - ] 6900 - 6901 - [[package]] 6902 - name = "rustls-native-certs" 6903 - version = "0.7.0" 6904 - source = "registry+https://github.com/rust-lang/crates.io-index" 6905 - checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" 6906 - dependencies = [ 6907 - "openssl-probe", 6908 - "rustls-pemfile 2.1.2", 6909 - "rustls-pki-types", 6910 - "schannel", 6911 - "security-framework", 6912 - ] 6913 - 6914 - [[package]] 6915 - name = "rustls-pemfile" 6916 - version = "1.0.4" 6917 - source = "registry+https://github.com/rust-lang/crates.io-index" 6918 - checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 6919 - dependencies = [ 6920 - "base64 0.21.7", 6921 - ] 6922 - 6923 - [[package]] 6924 - name = "rustls-pemfile" 6925 - version = "2.1.2" 6926 - source = "registry+https://github.com/rust-lang/crates.io-index" 6927 - checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 6928 - dependencies = [ 6929 - "base64 0.22.1", 6930 - "rustls-pki-types", 6931 - ] 6932 - 6933 - [[package]] 6934 - name = "rustls-pki-types" 6935 - version = "1.7.0" 6936 - source = "registry+https://github.com/rust-lang/crates.io-index" 6937 - checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 6938 - 6939 - [[package]] 6940 - name = "rustls-webpki" 6941 - version = "0.101.7" 6942 - source = "registry+https://github.com/rust-lang/crates.io-index" 6943 - checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 6944 - dependencies = [ 6945 - "ring", 6946 - "untrusted", 6947 - ] 6948 - 6949 - [[package]] 6950 - name = "rustls-webpki" 6951 - version = "0.102.4" 6952 - source = "registry+https://github.com/rust-lang/crates.io-index" 6953 - checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" 6954 - dependencies = [ 6955 - "ring", 6956 - "rustls-pki-types", 6957 - "untrusted", 6958 - ] 6959 - 6960 - [[package]] 6961 - name = "rustversion" 6962 - version = "1.0.17" 6963 - source = "registry+https://github.com/rust-lang/crates.io-index" 6964 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 6965 - 6966 - [[package]] 6967 - name = "rustyline" 6968 - version = "14.0.0" 6969 - source = "registry+https://github.com/rust-lang/crates.io-index" 6970 - checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63" 6971 - dependencies = [ 6972 - "bitflags 2.5.0", 6973 - "cfg-if 1.0.0", 6974 - "clipboard-win", 6975 - "libc", 6976 - "log", 6977 - "memchr", 6978 - "nix 0.28.0", 6979 - "unicode-segmentation", 6980 - "unicode-width", 6981 - "utf8parse", 6982 - "windows-sys 0.52.0", 6983 - ] 6984 - 6985 - [[package]] 6986 - name = "ryu" 6987 - version = "1.0.18" 6988 - source = "registry+https://github.com/rust-lang/crates.io-index" 6989 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 6990 - 6991 - [[package]] 6992 - name = "salsa20" 6993 - version = "0.10.2" 6994 - source = "registry+https://github.com/rust-lang/crates.io-index" 6995 - checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" 6996 - dependencies = [ 6997 - "cipher", 6998 - ] 6999 - 7000 - [[package]] 7001 - name = "same-file" 7002 - version = "1.0.6" 7003 - source = "registry+https://github.com/rust-lang/crates.io-index" 7004 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 7005 - dependencies = [ 7006 - "winapi-util", 7007 - ] 7008 - 7009 - [[package]] 7010 - name = "schannel" 7011 - version = "0.1.23" 7012 - source = "registry+https://github.com/rust-lang/crates.io-index" 7013 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 7014 - dependencies = [ 7015 - "windows-sys 0.52.0", 7016 - ] 7017 - 7018 - [[package]] 7019 - name = "scopeguard" 7020 - version = "1.2.0" 7021 - source = "registry+https://github.com/rust-lang/crates.io-index" 7022 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 7023 - 7024 - [[package]] 7025 - name = "sct" 7026 - version = "0.7.1" 7027 - source = "registry+https://github.com/rust-lang/crates.io-index" 7028 - checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 7029 - dependencies = [ 7030 - "ring", 7031 - "untrusted", 7032 - ] 7033 - 7034 - [[package]] 7035 - name = "seahash" 7036 - version = "4.1.0" 7037 - source = "registry+https://github.com/rust-lang/crates.io-index" 7038 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 7039 - 7040 - [[package]] 7041 - name = "security-framework" 7042 - version = "2.11.0" 7043 - source = "registry+https://github.com/rust-lang/crates.io-index" 7044 - checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" 7045 - dependencies = [ 7046 - "bitflags 2.5.0", 7047 - "core-foundation", 7048 - "core-foundation-sys", 7049 - "libc", 7050 - "security-framework-sys", 7051 - ] 7052 - 7053 - [[package]] 7054 - name = "security-framework-sys" 7055 - version = "2.11.0" 7056 - source = "registry+https://github.com/rust-lang/crates.io-index" 7057 - checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 7058 - dependencies = [ 7059 - "core-foundation-sys", 7060 - "libc", 7061 - ] 7062 - 7063 - [[package]] 7064 - name = "segment" 7065 - version = "0.2.3" 7066 - source = "registry+https://github.com/rust-lang/crates.io-index" 7067 - checksum = "12485833e00457a6bbba60397d3f19362751a0caefe27f6755fff1a2be4fd601" 7068 - dependencies = [ 7069 - "async-trait", 7070 - "reqwest 0.11.27", 7071 - "serde", 7072 - "serde_json", 7073 - "thiserror", 7074 - "time", 7075 - ] 7076 - 7077 - [[package]] 7078 - name = "semver" 7079 - version = "1.0.23" 7080 - source = "registry+https://github.com/rust-lang/crates.io-index" 7081 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 7082 - 7083 - [[package]] 7084 - name = "seq-macro" 7085 - version = "0.3.5" 7086 - source = "registry+https://github.com/rust-lang/crates.io-index" 7087 - checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" 7088 - 7089 - [[package]] 7090 - name = "serde" 7091 - version = "1.0.203" 7092 - source = "registry+https://github.com/rust-lang/crates.io-index" 7093 - checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 7094 - dependencies = [ 7095 - "serde_derive", 7096 - ] 7097 - 7098 - [[package]] 7099 - name = "serde_derive" 7100 - version = "1.0.203" 7101 - source = "registry+https://github.com/rust-lang/crates.io-index" 7102 - checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 7103 - dependencies = [ 7104 - "proc-macro2", 7105 - "quote", 7106 - "syn 2.0.66", 7107 - ] 7108 - 7109 - [[package]] 7110 - name = "serde_html_form" 7111 - version = "0.2.6" 7112 - source = "registry+https://github.com/rust-lang/crates.io-index" 7113 - checksum = "8de514ef58196f1fc96dcaef80fe6170a1ce6215df9687a93fe8300e773fefc5" 7114 - dependencies = [ 7115 - "form_urlencoded", 7116 - "indexmap 2.2.6", 7117 - "itoa", 7118 - "ryu", 7119 - "serde", 7120 - ] 7121 - 7122 - [[package]] 7123 - name = "serde_json" 7124 - version = "1.0.117" 7125 - source = "registry+https://github.com/rust-lang/crates.io-index" 7126 - checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 7127 - dependencies = [ 7128 - "itoa", 7129 - "ryu", 7130 - "serde", 7131 - ] 7132 - 7133 - [[package]] 7134 - name = "serde_nanos" 7135 - version = "0.1.4" 7136 - source = "registry+https://github.com/rust-lang/crates.io-index" 7137 - checksum = "a93142f0367a4cc53ae0fead1bcda39e85beccfad3dcd717656cacab94b12985" 7138 - dependencies = [ 7139 - "serde", 7140 - ] 7141 - 7142 - [[package]] 7143 - name = "serde_plain" 7144 - version = "1.0.2" 7145 - source = "registry+https://github.com/rust-lang/crates.io-index" 7146 - checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 7147 - dependencies = [ 7148 - "serde", 7149 - ] 7150 - 7151 - [[package]] 7152 - name = "serde_repr" 7153 - version = "0.1.19" 7154 - source = "registry+https://github.com/rust-lang/crates.io-index" 7155 - checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" 7156 - dependencies = [ 7157 - "proc-macro2", 7158 - "quote", 7159 - "syn 2.0.66", 7160 - ] 7161 - 7162 - [[package]] 7163 - name = "serde_urlencoded" 7164 - version = "0.7.1" 7165 - source = "registry+https://github.com/rust-lang/crates.io-index" 7166 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 7167 - dependencies = [ 7168 - "form_urlencoded", 7169 - "itoa", 7170 - "ryu", 7171 - "serde", 7172 - ] 7173 - 7174 - [[package]] 7175 - name = "serde_yaml" 7176 - version = "0.9.30" 7177 - source = "registry+https://github.com/rust-lang/crates.io-index" 7178 - checksum = "b1bf28c79a99f70ee1f1d83d10c875d2e70618417fda01ad1785e027579d9d38" 7179 - dependencies = [ 7180 - "indexmap 2.2.6", 7181 - "itoa", 7182 - "ryu", 7183 - "serde", 7184 - "unsafe-libyaml", 7185 - ] 7186 - 7187 - [[package]] 7188 - name = "sha-1" 7189 - version = "0.10.1" 7190 - source = "registry+https://github.com/rust-lang/crates.io-index" 7191 - checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 7192 - dependencies = [ 7193 - "cfg-if 1.0.0", 7194 - "cpufeatures", 7195 - "digest", 7196 - ] 7197 - 7198 - [[package]] 7199 - name = "sha1" 7200 - version = "0.10.6" 7201 - source = "registry+https://github.com/rust-lang/crates.io-index" 7202 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 7203 - dependencies = [ 7204 - "cfg-if 1.0.0", 7205 - "cpufeatures", 7206 - "digest", 7207 - ] 7208 - 7209 - [[package]] 7210 - name = "sha2" 7211 - version = "0.10.8" 7212 - source = "registry+https://github.com/rust-lang/crates.io-index" 7213 - checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 7214 - dependencies = [ 7215 - "cfg-if 1.0.0", 7216 - "cpufeatures", 7217 - "digest", 7218 - ] 7219 - 7220 - [[package]] 7221 - name = "sha256" 7222 - version = "1.5.0" 7223 - source = "registry+https://github.com/rust-lang/crates.io-index" 7224 - checksum = "18278f6a914fa3070aa316493f7d2ddfb9ac86ebc06fa3b83bffda487e9065b0" 7225 - dependencies = [ 7226 - "async-trait", 7227 - "bytes", 7228 - "hex", 7229 - "sha2", 7230 - "tokio", 7231 - ] 7232 - 7233 - [[package]] 7234 - name = "sha3" 7235 - version = "0.10.8" 7236 - source = "registry+https://github.com/rust-lang/crates.io-index" 7237 - checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" 7238 - dependencies = [ 7239 - "digest", 7240 - "keccak", 7241 - ] 7242 - 7243 - [[package]] 7244 - name = "sharded-slab" 7245 - version = "0.1.7" 7246 - source = "registry+https://github.com/rust-lang/crates.io-index" 7247 - checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 7248 - dependencies = [ 7249 - "lazy_static", 7250 - ] 7251 - 7252 - [[package]] 7253 - name = "shellexpand" 7254 - version = "3.1.0" 7255 - source = "registry+https://github.com/rust-lang/crates.io-index" 7256 - checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b" 7257 - dependencies = [ 7258 - "dirs", 7259 - ] 7260 - 7261 - [[package]] 7262 - name = "signal-hook-registry" 7263 - version = "1.4.2" 7264 - source = "registry+https://github.com/rust-lang/crates.io-index" 7265 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 7266 - dependencies = [ 7267 - "libc", 7268 - ] 7269 - 7270 - [[package]] 7271 - name = "signatory" 7272 - version = "0.27.1" 7273 - source = "registry+https://github.com/rust-lang/crates.io-index" 7274 - checksum = "c1e303f8205714074f6068773f0e29527e0453937fe837c9717d066635b65f31" 7275 - dependencies = [ 7276 - "pkcs8", 7277 - "rand_core", 7278 - "signature", 7279 - "zeroize", 7280 - ] 7281 - 7282 - [[package]] 7283 - name = "signature" 7284 - version = "2.2.0" 7285 - source = "registry+https://github.com/rust-lang/crates.io-index" 7286 - checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 7287 - dependencies = [ 7288 - "digest", 7289 - "rand_core", 7290 - ] 7291 - 7292 - [[package]] 7293 - name = "simdutf8" 7294 - version = "0.1.4" 7295 - source = "registry+https://github.com/rust-lang/crates.io-index" 7296 - checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" 7297 - 7298 - [[package]] 7299 - name = "simple_asn1" 7300 - version = "0.6.2" 7301 - source = "registry+https://github.com/rust-lang/crates.io-index" 7302 - checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 7303 - dependencies = [ 7304 - "num-bigint", 7305 - "num-traits", 7306 - "thiserror", 7307 - "time", 7308 - ] 7309 - 7310 - [[package]] 7311 - name = "siphasher" 7312 - version = "0.3.11" 7313 - source = "registry+https://github.com/rust-lang/crates.io-index" 7314 - checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 7315 - 7316 - [[package]] 7317 - name = "slab" 7318 - version = "0.4.9" 7319 - source = "registry+https://github.com/rust-lang/crates.io-index" 7320 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 7321 - dependencies = [ 7322 - "autocfg", 7323 - ] 7324 - 7325 - [[package]] 7326 - name = "smallvec" 7327 - version = "1.13.2" 7328 - source = "registry+https://github.com/rust-lang/crates.io-index" 7329 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 7330 - 7331 - [[package]] 7332 - name = "snafu" 7333 - version = "0.6.10" 7334 - source = "registry+https://github.com/rust-lang/crates.io-index" 7335 - checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7" 7336 - dependencies = [ 7337 - "doc-comment", 7338 - "snafu-derive 0.6.10", 7339 - ] 7340 - 7341 - [[package]] 7342 - name = "snafu" 7343 - version = "0.7.5" 7344 - source = "registry+https://github.com/rust-lang/crates.io-index" 7345 - checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6" 7346 - dependencies = [ 7347 - "doc-comment", 7348 - "snafu-derive 0.7.5", 7349 - ] 7350 - 7351 - [[package]] 7352 - name = "snafu" 7353 - version = "0.8.4" 7354 - source = "registry+https://github.com/rust-lang/crates.io-index" 7355 - checksum = "2b835cb902660db3415a672d862905e791e54d306c6e8189168c7f3d9ae1c79d" 7356 - dependencies = [ 7357 - "snafu-derive 0.8.4", 7358 - ] 7359 - 7360 - [[package]] 7361 - name = "snafu-derive" 7362 - version = "0.6.10" 7363 - source = "registry+https://github.com/rust-lang/crates.io-index" 7364 - checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b" 7365 - dependencies = [ 7366 - "proc-macro2", 7367 - "quote", 7368 - "syn 1.0.109", 7369 - ] 7370 - 7371 - [[package]] 7372 - name = "snafu-derive" 7373 - version = "0.7.5" 7374 - source = "registry+https://github.com/rust-lang/crates.io-index" 7375 - checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf" 7376 - dependencies = [ 7377 - "heck 0.4.1", 7378 - "proc-macro2", 7379 - "quote", 7380 - "syn 1.0.109", 7381 - ] 7382 - 7383 - [[package]] 7384 - name = "snafu-derive" 7385 - version = "0.8.4" 7386 - source = "registry+https://github.com/rust-lang/crates.io-index" 7387 - checksum = "38d1e02fca405f6280643174a50c942219f0bbf4dbf7d480f1dd864d6f211ae5" 7388 - dependencies = [ 7389 - "heck 0.5.0", 7390 - "proc-macro2", 7391 - "quote", 7392 - "syn 2.0.66", 7393 - ] 7394 - 7395 - [[package]] 7396 - name = "snap" 7397 - version = "1.1.1" 7398 - source = "registry+https://github.com/rust-lang/crates.io-index" 7399 - checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" 7400 - 7401 - [[package]] 7402 - name = "socket2" 7403 - version = "0.5.7" 7404 - source = "registry+https://github.com/rust-lang/crates.io-index" 7405 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 7406 - dependencies = [ 7407 - "libc", 7408 - "windows-sys 0.52.0", 7409 - ] 7410 - 7411 - [[package]] 7412 - name = "sparsevec" 7413 - version = "0.1.4" 7414 - source = "registry+https://github.com/rust-lang/crates.io-index" 7415 - checksum = "928d1ef5df00aec8c5643c2ac37db4dd282763013c0fcc81efbb8e13db8dd8ec" 7416 - dependencies = [ 7417 - "num-traits", 7418 - "packedvec", 7419 - "serde", 7420 - "vob", 7421 - ] 7422 - 7423 - [[package]] 7424 - name = "spin" 7425 - version = "0.5.2" 7426 - source = "registry+https://github.com/rust-lang/crates.io-index" 7427 - checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 7428 - 7429 - [[package]] 7430 - name = "spin" 7431 - version = "0.9.8" 7432 - source = "registry+https://github.com/rust-lang/crates.io-index" 7433 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 7434 - dependencies = [ 7435 - "lock_api", 7436 - ] 7437 - 7438 - [[package]] 7439 - name = "spki" 7440 - version = "0.7.3" 7441 - source = "registry+https://github.com/rust-lang/crates.io-index" 7442 - checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 7443 - dependencies = [ 7444 - "base64ct", 7445 - "der", 7446 - ] 7447 - 7448 - [[package]] 7449 - name = "sqlformat" 7450 - version = "0.2.4" 7451 - source = "registry+https://github.com/rust-lang/crates.io-index" 7452 - checksum = "f895e3734318cc55f1fe66258926c9b910c124d47520339efecbb6c59cec7c1f" 7453 - dependencies = [ 7454 - "nom", 7455 - "unicode_categories", 7456 - ] 7457 - 7458 - [[package]] 7459 - name = "sqlparser" 7460 - version = "0.49.0" 7461 - source = "registry+https://github.com/rust-lang/crates.io-index" 7462 - checksum = "a4a404d0e14905361b918cb8afdb73605e25c1d5029312bd9785142dcb3aa49e" 7463 - dependencies = [ 7464 - "log", 7465 - "serde", 7466 - "sqlparser_derive", 7467 - ] 7468 - 7469 - [[package]] 7470 - name = "sqlparser_derive" 7471 - version = "0.2.2" 7472 - source = "registry+https://github.com/rust-lang/crates.io-index" 7473 - checksum = "01b2e185515564f15375f593fb966b5718bc624ba77fe49fa4616ad619690554" 7474 - dependencies = [ 7475 - "proc-macro2", 7476 - "quote", 7477 - "syn 2.0.66", 7478 - ] 7479 - 7480 - [[package]] 7481 - name = "sqlx" 7482 - version = "0.7.4" 7483 - source = "registry+https://github.com/rust-lang/crates.io-index" 7484 - checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa" 7485 - dependencies = [ 7486 - "sqlx-core", 7487 - "sqlx-macros", 7488 - "sqlx-mysql", 7489 - "sqlx-postgres", 7490 - "sqlx-sqlite", 7491 - ] 7492 - 7493 - [[package]] 7494 - name = "sqlx-core" 7495 - version = "0.7.4" 7496 - source = "registry+https://github.com/rust-lang/crates.io-index" 7497 - checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6" 7498 - dependencies = [ 7499 - "ahash 0.8.11", 7500 - "atoi", 7501 - "byteorder", 7502 - "bytes", 7503 - "chrono", 7504 - "crc", 7505 - "crossbeam-queue", 7506 - "either", 7507 - "event-listener 2.5.3", 7508 - "futures-channel", 7509 - "futures-core", 7510 - "futures-intrusive", 7511 - "futures-io", 7512 - "futures-util", 7513 - "hashlink 0.8.4", 7514 - "hex", 7515 - "indexmap 2.2.6", 7516 - "log", 7517 - "memchr", 7518 - "once_cell", 7519 - "paste", 7520 - "percent-encoding", 7521 - "rustls 0.21.12", 7522 - "rustls-pemfile 1.0.4", 7523 - "serde", 7524 - "serde_json", 7525 - "sha2", 7526 - "smallvec", 7527 - "sqlformat", 7528 - "thiserror", 7529 - "tokio", 7530 - "tokio-stream", 7531 - "tracing", 7532 - "url", 7533 - "webpki-roots 0.25.4", 7534 - ] 7535 - 7536 - [[package]] 7537 - name = "sqlx-macros" 7538 - version = "0.7.4" 7539 - source = "registry+https://github.com/rust-lang/crates.io-index" 7540 - checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127" 7541 - dependencies = [ 7542 - "proc-macro2", 7543 - "quote", 7544 - "sqlx-core", 7545 - "sqlx-macros-core", 7546 - "syn 1.0.109", 7547 - ] 7548 - 7549 - [[package]] 7550 - name = "sqlx-macros-core" 7551 - version = "0.7.4" 7552 - source = "registry+https://github.com/rust-lang/crates.io-index" 7553 - checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8" 7554 - dependencies = [ 7555 - "dotenvy", 7556 - "either", 7557 - "heck 0.4.1", 7558 - "hex", 7559 - "once_cell", 7560 - "proc-macro2", 7561 - "quote", 7562 - "serde", 7563 - "serde_json", 7564 - "sha2", 7565 - "sqlx-core", 7566 - "sqlx-mysql", 7567 - "sqlx-postgres", 7568 - "sqlx-sqlite", 7569 - "syn 1.0.109", 7570 - "tempfile", 7571 - "tokio", 7572 - "url", 7573 - ] 7574 - 7575 - [[package]] 7576 - name = "sqlx-mysql" 7577 - version = "0.7.4" 7578 - source = "registry+https://github.com/rust-lang/crates.io-index" 7579 - checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418" 7580 - dependencies = [ 7581 - "atoi", 7582 - "base64 0.21.7", 7583 - "bitflags 2.5.0", 7584 - "byteorder", 7585 - "bytes", 7586 - "chrono", 7587 - "crc", 7588 - "digest", 7589 - "dotenvy", 7590 - "either", 7591 - "futures-channel", 7592 - "futures-core", 7593 - "futures-io", 7594 - "futures-util", 7595 - "generic-array", 7596 - "hex", 7597 - "hkdf", 7598 - "hmac", 7599 - "itoa", 7600 - "log", 7601 - "md-5", 7602 - "memchr", 7603 - "once_cell", 7604 - "percent-encoding", 7605 - "rand", 7606 - "rsa", 7607 - "serde", 7608 - "sha1", 7609 - "sha2", 7610 - "smallvec", 7611 - "sqlx-core", 7612 - "stringprep", 7613 - "thiserror", 7614 - "tracing", 7615 - "whoami", 7616 - ] 7617 - 7618 - [[package]] 7619 - name = "sqlx-postgres" 7620 - version = "0.7.4" 7621 - source = "registry+https://github.com/rust-lang/crates.io-index" 7622 - checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e" 7623 - dependencies = [ 7624 - "atoi", 7625 - "base64 0.21.7", 7626 - "bitflags 2.5.0", 7627 - "byteorder", 7628 - "chrono", 7629 - "crc", 7630 - "dotenvy", 7631 - "etcetera", 7632 - "futures-channel", 7633 - "futures-core", 7634 - "futures-io", 7635 - "futures-util", 7636 - "hex", 7637 - "hkdf", 7638 - "hmac", 7639 - "home", 7640 - "itoa", 7641 - "log", 7642 - "md-5", 7643 - "memchr", 7644 - "once_cell", 7645 - "rand", 7646 - "serde", 7647 - "serde_json", 7648 - "sha2", 7649 - "smallvec", 7650 - "sqlx-core", 7651 - "stringprep", 7652 - "thiserror", 7653 - "tracing", 7654 - "whoami", 7655 - ] 7656 - 7657 - [[package]] 7658 - name = "sqlx-sqlite" 7659 - version = "0.7.4" 7660 - source = "registry+https://github.com/rust-lang/crates.io-index" 7661 - checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa" 7662 - dependencies = [ 7663 - "atoi", 7664 - "chrono", 7665 - "flume", 7666 - "futures-channel", 7667 - "futures-core", 7668 - "futures-executor", 7669 - "futures-intrusive", 7670 - "futures-util", 7671 - "libsqlite3-sys", 7672 - "log", 7673 - "percent-encoding", 7674 - "serde", 7675 - "sqlx-core", 7676 - "tracing", 7677 - "url", 7678 - "urlencoding", 7679 - ] 7680 - 7681 - [[package]] 7682 - name = "stable_deref_trait" 7683 - version = "1.2.0" 7684 - source = "registry+https://github.com/rust-lang/crates.io-index" 7685 - checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 7686 - 7687 - [[package]] 7688 - name = "stacker" 7689 - version = "0.1.15" 7690 - source = "registry+https://github.com/rust-lang/crates.io-index" 7691 - checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" 7692 - dependencies = [ 7693 - "cc", 7694 - "cfg-if 1.0.0", 7695 - "libc", 7696 - "psm", 7697 - "winapi 0.3.9", 7698 - ] 7699 - 7700 - [[package]] 7701 - name = "static_assertions" 7702 - version = "1.1.0" 7703 - source = "registry+https://github.com/rust-lang/crates.io-index" 7704 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 7705 - 7706 - [[package]] 7707 - name = "string_cache" 7708 - version = "0.8.7" 7709 - source = "registry+https://github.com/rust-lang/crates.io-index" 7710 - checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" 7711 - dependencies = [ 7712 - "new_debug_unreachable", 7713 - "once_cell", 7714 - "parking_lot", 7715 - "phf_shared 0.10.0", 7716 - "precomputed-hash", 7717 - ] 7718 - 7719 - [[package]] 7720 - name = "stringprep" 7721 - version = "0.1.5" 7722 - source = "registry+https://github.com/rust-lang/crates.io-index" 7723 - checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 7724 - dependencies = [ 7725 - "unicode-bidi", 7726 - "unicode-normalization", 7727 - "unicode-properties", 7728 - ] 7729 - 7730 - [[package]] 7731 - name = "strip-ansi-escapes" 7732 - version = "0.2.0" 7733 - source = "registry+https://github.com/rust-lang/crates.io-index" 7734 - checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa" 7735 - dependencies = [ 7736 - "vte", 7737 - ] 7738 - 7739 - [[package]] 7740 - name = "strsim" 7741 - version = "0.10.0" 7742 - source = "registry+https://github.com/rust-lang/crates.io-index" 7743 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 7744 - 7745 - [[package]] 7746 - name = "strsim" 7747 - version = "0.11.1" 7748 - source = "registry+https://github.com/rust-lang/crates.io-index" 7749 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 7750 - 7751 - [[package]] 7752 - name = "strum" 7753 - version = "0.25.0" 7754 - source = "registry+https://github.com/rust-lang/crates.io-index" 7755 - checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 7756 - dependencies = [ 7757 - "strum_macros 0.25.3", 7758 - ] 7759 - 7760 - [[package]] 7761 - name = "strum" 7762 - version = "0.26.2" 7763 - source = "registry+https://github.com/rust-lang/crates.io-index" 7764 - checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" 7765 - dependencies = [ 7766 - "strum_macros 0.26.4", 7767 - ] 7768 - 7769 - [[package]] 7770 - name = "strum_macros" 7771 - version = "0.25.3" 7772 - source = "registry+https://github.com/rust-lang/crates.io-index" 7773 - checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" 7774 - dependencies = [ 7775 - "heck 0.4.1", 7776 - "proc-macro2", 7777 - "quote", 7778 - "rustversion", 7779 - "syn 2.0.66", 7780 - ] 7781 - 7782 - [[package]] 7783 - name = "strum_macros" 7784 - version = "0.26.4" 7785 - source = "registry+https://github.com/rust-lang/crates.io-index" 7786 - checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 7787 - dependencies = [ 7788 - "heck 0.5.0", 7789 - "proc-macro2", 7790 - "quote", 7791 - "rustversion", 7792 - "syn 2.0.66", 7793 - ] 7794 - 7795 - [[package]] 7796 - name = "subtle" 7797 - version = "2.5.0" 7798 - source = "registry+https://github.com/rust-lang/crates.io-index" 7799 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 7800 - 7801 - [[package]] 7802 - name = "svix-ksuid" 7803 - version = "0.8.0" 7804 - source = "registry+https://github.com/rust-lang/crates.io-index" 7805 - checksum = "66f014385b7fc154f59e9480770c2187b6e61037c2439895788a9a4d421d7859" 7806 - dependencies = [ 7807 - "base-encode", 7808 - "byteorder", 7809 - "getrandom", 7810 - "serde", 7811 - "time", 7812 - ] 7813 - 7814 - [[package]] 7815 - name = "symbolic-common" 7816 - version = "12.9.2" 7817 - source = "registry+https://github.com/rust-lang/crates.io-index" 7818 - checksum = "71297dc3e250f7dbdf8adb99e235da783d690f5819fdeb4cce39d9cfb0aca9f1" 7819 - dependencies = [ 7820 - "debugid", 7821 - "memmap2", 7822 - "stable_deref_trait", 7823 - "uuid", 7824 - ] 7825 - 7826 - [[package]] 7827 - name = "symbolic-demangle" 7828 - version = "12.9.2" 7829 - source = "registry+https://github.com/rust-lang/crates.io-index" 7830 - checksum = "424fa2c9bf2c862891b9cfd354a752751a6730fd838a4691e7f6c2c7957b9daf" 7831 - dependencies = [ 7832 - "cpp_demangle", 7833 - "rustc-demangle", 7834 - "symbolic-common", 7835 - ] 7836 - 7837 - [[package]] 7838 - name = "syn" 7839 - version = "1.0.109" 7840 - source = "registry+https://github.com/rust-lang/crates.io-index" 7841 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 7842 - dependencies = [ 7843 - "proc-macro2", 7844 - "quote", 7845 - "unicode-ident", 7846 - ] 7847 - 7848 - [[package]] 7849 - name = "syn" 7850 - version = "2.0.66" 7851 - source = "registry+https://github.com/rust-lang/crates.io-index" 7852 - checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" 7853 - dependencies = [ 7854 - "proc-macro2", 7855 - "quote", 7856 - "unicode-ident", 7857 - ] 7858 - 7859 - [[package]] 7860 - name = "syn_derive" 7861 - version = "0.1.8" 7862 - source = "registry+https://github.com/rust-lang/crates.io-index" 7863 - checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" 7864 - dependencies = [ 7865 - "proc-macro-error", 7866 - "proc-macro2", 7867 - "quote", 7868 - "syn 2.0.66", 7869 - ] 7870 - 7871 - [[package]] 7872 - name = "sync_wrapper" 7873 - version = "0.1.2" 7874 - source = "registry+https://github.com/rust-lang/crates.io-index" 7875 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 7876 - 7877 - [[package]] 7878 - name = "synstructure" 7879 - version = "0.13.1" 7880 - source = "registry+https://github.com/rust-lang/crates.io-index" 7881 - checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 7882 - dependencies = [ 7883 - "proc-macro2", 7884 - "quote", 7885 - "syn 2.0.66", 7886 - ] 7887 - 7888 - [[package]] 7889 - name = "sysinfo" 7890 - version = "0.29.11" 7891 - source = "registry+https://github.com/rust-lang/crates.io-index" 7892 - checksum = "cd727fc423c2060f6c92d9534cef765c65a6ed3f428a03d7def74a8c4348e666" 7893 - dependencies = [ 7894 - "cfg-if 1.0.0", 7895 - "core-foundation-sys", 7896 - "libc", 7897 - "ntapi", 7898 - "once_cell", 7899 - "rayon", 7900 - "winapi 0.3.9", 7901 - ] 7902 - 7903 - [[package]] 7904 - name = "syslog_loose" 7905 - version = "0.18.0" 7906 - source = "registry+https://github.com/rust-lang/crates.io-index" 7907 - checksum = "97fb75f176928530867b2a659e470f9c9ff71904695bab6556f7ad30f9039efd" 7908 - dependencies = [ 7909 - "chrono", 7910 - "nom", 7911 - ] 7912 - 7913 - [[package]] 7914 - name = "syslog_loose" 7915 - version = "0.21.0" 7916 - source = "registry+https://github.com/rust-lang/crates.io-index" 7917 - checksum = "161028c00842709450114c39db3b29f44c898055ed8833bb9b535aba7facf30e" 7918 - dependencies = [ 7919 - "chrono", 7920 - "nom", 7921 - ] 7922 - 7923 - [[package]] 7924 - name = "system-configuration" 7925 - version = "0.5.1" 7926 - source = "registry+https://github.com/rust-lang/crates.io-index" 7927 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 7928 - dependencies = [ 7929 - "bitflags 1.3.2", 7930 - "core-foundation", 7931 - "system-configuration-sys", 7932 - ] 7933 - 7934 - [[package]] 7935 - name = "system-configuration-sys" 7936 - version = "0.5.0" 7937 - source = "registry+https://github.com/rust-lang/crates.io-index" 7938 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 7939 - dependencies = [ 7940 - "core-foundation-sys", 7941 - "libc", 7942 - ] 7943 - 7944 - [[package]] 7945 - name = "tagptr" 7946 - version = "0.2.0" 7947 - source = "registry+https://github.com/rust-lang/crates.io-index" 7948 - checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 7949 - 7950 - [[package]] 7951 - name = "tap" 7952 - version = "1.0.1" 7953 - source = "registry+https://github.com/rust-lang/crates.io-index" 7954 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 7955 - 7956 - [[package]] 7957 - name = "tempfile" 7958 - version = "3.10.1" 7959 - source = "registry+https://github.com/rust-lang/crates.io-index" 7960 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 7961 - dependencies = [ 7962 - "cfg-if 1.0.0", 7963 - "fastrand 2.1.0", 7964 - "rustix", 7965 - "windows-sys 0.52.0", 7966 - ] 7967 - 7968 - [[package]] 7969 - name = "term" 7970 - version = "0.7.0" 7971 - source = "registry+https://github.com/rust-lang/crates.io-index" 7972 - checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 7973 - dependencies = [ 7974 - "dirs-next", 7975 - "rustversion", 7976 - "winapi 0.3.9", 7977 - ] 7978 - 7979 - [[package]] 7980 - name = "termcolor" 7981 - version = "1.4.1" 7982 - source = "registry+https://github.com/rust-lang/crates.io-index" 7983 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 7984 - dependencies = [ 7985 - "winapi-util", 7986 - ] 7987 - 7988 - [[package]] 7989 - name = "textwrap" 7990 - version = "0.16.1" 7991 - source = "registry+https://github.com/rust-lang/crates.io-index" 7992 - checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 7993 - 7994 - [[package]] 7995 - name = "thiserror" 7996 - version = "1.0.61" 7997 - source = "registry+https://github.com/rust-lang/crates.io-index" 7998 - checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 7999 - dependencies = [ 8000 - "thiserror-impl", 8001 - ] 8002 - 8003 - [[package]] 8004 - name = "thiserror-impl" 8005 - version = "1.0.61" 8006 - source = "registry+https://github.com/rust-lang/crates.io-index" 8007 - checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 8008 - dependencies = [ 8009 - "proc-macro2", 8010 - "quote", 8011 - "syn 2.0.66", 8012 - ] 8013 - 8014 - [[package]] 8015 - name = "thread_local" 8016 - version = "1.1.8" 8017 - source = "registry+https://github.com/rust-lang/crates.io-index" 8018 - checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 8019 - dependencies = [ 8020 - "cfg-if 1.0.0", 8021 - "once_cell", 8022 - ] 8023 - 8024 - [[package]] 8025 - name = "thrift" 8026 - version = "0.17.0" 8027 - source = "registry+https://github.com/rust-lang/crates.io-index" 8028 - checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" 8029 - dependencies = [ 8030 - "byteorder", 8031 - "integer-encoding", 8032 - "ordered-float 2.10.1", 8033 - ] 8034 - 8035 - [[package]] 8036 - name = "tikv-jemalloc-sys" 8037 - version = "0.5.4+5.3.0-patched" 8038 - source = "registry+https://github.com/rust-lang/crates.io-index" 8039 - checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" 8040 - dependencies = [ 8041 - "cc", 8042 - "libc", 8043 - ] 8044 - 8045 - [[package]] 8046 - name = "tikv-jemallocator" 8047 - version = "0.5.4" 8048 - source = "registry+https://github.com/rust-lang/crates.io-index" 8049 - checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca" 8050 - dependencies = [ 8051 - "libc", 8052 - "tikv-jemalloc-sys", 8053 - ] 8054 - 8055 - [[package]] 8056 - name = "time" 8057 - version = "0.3.36" 8058 - source = "registry+https://github.com/rust-lang/crates.io-index" 8059 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 8060 - dependencies = [ 8061 - "deranged", 8062 - "itoa", 8063 - "num-conv", 8064 - "powerfmt", 8065 - "serde", 8066 - "time-core", 8067 - "time-macros", 8068 - ] 8069 - 8070 - [[package]] 8071 - name = "time-core" 8072 - version = "0.1.2" 8073 - source = "registry+https://github.com/rust-lang/crates.io-index" 8074 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 8075 - 8076 - [[package]] 8077 - name = "time-macros" 8078 - version = "0.2.18" 8079 - source = "registry+https://github.com/rust-lang/crates.io-index" 8080 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 8081 - dependencies = [ 8082 - "num-conv", 8083 - "time-core", 8084 - ] 8085 - 8086 - [[package]] 8087 - name = "tiny-keccak" 8088 - version = "2.0.2" 8089 - source = "registry+https://github.com/rust-lang/crates.io-index" 8090 - checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 8091 - dependencies = [ 8092 - "crunchy", 8093 - ] 8094 - 8095 - [[package]] 8096 - name = "tinystr" 8097 - version = "0.7.6" 8098 - source = "registry+https://github.com/rust-lang/crates.io-index" 8099 - checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 8100 - dependencies = [ 8101 - "displaydoc", 8102 - "zerovec", 8103 - ] 8104 - 8105 - [[package]] 8106 - name = "tinytemplate" 8107 - version = "1.2.1" 8108 - source = "registry+https://github.com/rust-lang/crates.io-index" 8109 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 8110 - dependencies = [ 8111 - "serde", 8112 - "serde_json", 8113 - ] 8114 - 8115 - [[package]] 8116 - name = "tinyvec" 8117 - version = "1.6.0" 8118 - source = "registry+https://github.com/rust-lang/crates.io-index" 8119 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 8120 - dependencies = [ 8121 - "tinyvec_macros", 8122 - ] 8123 - 8124 - [[package]] 8125 - name = "tinyvec_macros" 8126 - version = "0.1.1" 8127 - source = "registry+https://github.com/rust-lang/crates.io-index" 8128 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 8129 - 8130 - [[package]] 8131 - name = "tokio" 8132 - version = "1.38.0" 8133 - source = "registry+https://github.com/rust-lang/crates.io-index" 8134 - checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 8135 - dependencies = [ 8136 - "backtrace", 8137 - "bytes", 8138 - "libc", 8139 - "mio", 8140 - "num_cpus", 8141 - "parking_lot", 8142 - "pin-project-lite", 8143 - "signal-hook-registry", 8144 - "socket2", 8145 - "tokio-macros", 8146 - "tracing", 8147 - "windows-sys 0.48.0", 8148 - ] 8149 - 8150 - [[package]] 8151 - name = "tokio-io-timeout" 8152 - version = "1.2.0" 8153 - source = "registry+https://github.com/rust-lang/crates.io-index" 8154 - checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 8155 - dependencies = [ 8156 - "pin-project-lite", 8157 - "tokio", 8158 - ] 8159 - 8160 - [[package]] 8161 - name = "tokio-macros" 8162 - version = "2.3.0" 8163 - source = "registry+https://github.com/rust-lang/crates.io-index" 8164 - checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 8165 - dependencies = [ 8166 - "proc-macro2", 8167 - "quote", 8168 - "syn 2.0.66", 8169 - ] 8170 - 8171 - [[package]] 8172 - name = "tokio-rustls" 8173 - version = "0.24.1" 8174 - source = "registry+https://github.com/rust-lang/crates.io-index" 8175 - checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 8176 - dependencies = [ 8177 - "rustls 0.21.12", 8178 - "tokio", 8179 - ] 8180 - 8181 - [[package]] 8182 - name = "tokio-rustls" 8183 - version = "0.25.0" 8184 - source = "registry+https://github.com/rust-lang/crates.io-index" 8185 - checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 8186 - dependencies = [ 8187 - "rustls 0.22.4", 8188 - "rustls-pki-types", 8189 - "tokio", 8190 - ] 8191 - 8192 - [[package]] 8193 - name = "tokio-rustls" 8194 - version = "0.26.0" 8195 - source = "registry+https://github.com/rust-lang/crates.io-index" 8196 - checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 8197 - dependencies = [ 8198 - "rustls 0.23.9", 8199 - "rustls-pki-types", 8200 - "tokio", 8201 - ] 8202 - 8203 - [[package]] 8204 - name = "tokio-stream" 8205 - version = "0.1.15" 8206 - source = "registry+https://github.com/rust-lang/crates.io-index" 8207 - checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 8208 - dependencies = [ 8209 - "futures-core", 8210 - "pin-project-lite", 8211 - "tokio", 8212 - ] 8213 - 8214 - [[package]] 8215 - name = "tokio-tungstenite" 8216 - version = "0.23.1" 8217 - source = "registry+https://github.com/rust-lang/crates.io-index" 8218 - checksum = "c6989540ced10490aaf14e6bad2e3d33728a2813310a0c71d1574304c49631cd" 8219 - dependencies = [ 8220 - "futures-util", 8221 - "log", 8222 - "tokio", 8223 - "tungstenite 0.23.0", 8224 - ] 8225 - 8226 - [[package]] 8227 - name = "tokio-util" 8228 - version = "0.7.11" 8229 - source = "registry+https://github.com/rust-lang/crates.io-index" 8230 - checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 8231 - dependencies = [ 8232 - "bytes", 8233 - "futures-core", 8234 - "futures-sink", 8235 - "pin-project-lite", 8236 - "tokio", 8237 - ] 8238 - 8239 - [[package]] 8240 - name = "toml_datetime" 8241 - version = "0.6.6" 8242 - source = "registry+https://github.com/rust-lang/crates.io-index" 8243 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 8244 - 8245 - [[package]] 8246 - name = "toml_edit" 8247 - version = "0.19.15" 8248 - source = "registry+https://github.com/rust-lang/crates.io-index" 8249 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 8250 - dependencies = [ 8251 - "indexmap 2.2.6", 8252 - "toml_datetime", 8253 - "winnow", 8254 - ] 8255 - 8256 - [[package]] 8257 - name = "toml_edit" 8258 - version = "0.21.1" 8259 - source = "registry+https://github.com/rust-lang/crates.io-index" 8260 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 8261 - dependencies = [ 8262 - "indexmap 2.2.6", 8263 - "toml_datetime", 8264 - "winnow", 8265 - ] 8266 - 8267 - [[package]] 8268 - name = "tonic" 8269 - version = "0.10.2" 8270 - source = "registry+https://github.com/rust-lang/crates.io-index" 8271 - checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e" 8272 - dependencies = [ 8273 - "async-stream", 8274 - "async-trait", 8275 - "axum", 8276 - "base64 0.21.7", 8277 - "bytes", 8278 - "h2 0.3.26", 8279 - "http 0.2.12", 8280 - "http-body 0.4.6", 8281 - "hyper 0.14.29", 8282 - "hyper-timeout", 8283 - "percent-encoding", 8284 - "pin-project", 8285 - "prost 0.12.6", 8286 - "rustls 0.21.12", 8287 - "rustls-pemfile 1.0.4", 8288 - "tokio", 8289 - "tokio-rustls 0.24.1", 8290 - "tokio-stream", 8291 - "tower", 8292 - "tower-layer", 8293 - "tower-service", 8294 - "tracing", 8295 - ] 8296 - 8297 - [[package]] 8298 - name = "tonic" 8299 - version = "0.11.0" 8300 - source = "registry+https://github.com/rust-lang/crates.io-index" 8301 - checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13" 8302 - dependencies = [ 8303 - "async-stream", 8304 - "async-trait", 8305 - "axum", 8306 - "base64 0.21.7", 8307 - "bytes", 8308 - "flate2", 8309 - "h2 0.3.26", 8310 - "http 0.2.12", 8311 - "http-body 0.4.6", 8312 - "hyper 0.14.29", 8313 - "hyper-timeout", 8314 - "percent-encoding", 8315 - "pin-project", 8316 - "prost 0.12.6", 8317 - "tokio", 8318 - "tokio-stream", 8319 - "tower", 8320 - "tower-layer", 8321 - "tower-service", 8322 - "tracing", 8323 - ] 8324 - 8325 - [[package]] 8326 - name = "tonic-build" 8327 - version = "0.10.2" 8328 - source = "registry+https://github.com/rust-lang/crates.io-index" 8329 - checksum = "9d021fc044c18582b9a2408cd0dd05b1596e3ecdb5c4df822bb0183545683889" 8330 - dependencies = [ 8331 - "prettyplease", 8332 - "proc-macro2", 8333 - "prost-build", 8334 - "quote", 8335 - "syn 2.0.66", 8336 - ] 8337 - 8338 - [[package]] 8339 - name = "tonic-build" 8340 - version = "0.11.0" 8341 - source = "registry+https://github.com/rust-lang/crates.io-index" 8342 - checksum = "be4ef6dd70a610078cb4e338a0f79d06bc759ff1b22d2120c2ff02ae264ba9c2" 8343 - dependencies = [ 8344 - "prettyplease", 8345 - "proc-macro2", 8346 - "prost-build", 8347 - "quote", 8348 - "syn 2.0.66", 8349 - ] 8350 - 8351 - [[package]] 8352 - name = "tower" 8353 - version = "0.4.13" 8354 - source = "registry+https://github.com/rust-lang/crates.io-index" 8355 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 8356 - dependencies = [ 8357 - "futures-core", 8358 - "futures-util", 8359 - "indexmap 1.9.3", 8360 - "pin-project", 8361 - "pin-project-lite", 8362 - "rand", 8363 - "slab", 8364 - "tokio", 8365 - "tokio-util", 8366 - "tower-layer", 8367 - "tower-service", 8368 - "tracing", 8369 - ] 8370 - 8371 - [[package]] 8372 - name = "tower-layer" 8373 - version = "0.3.2" 8374 - source = "registry+https://github.com/rust-lang/crates.io-index" 8375 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 8376 - 8377 - [[package]] 8378 - name = "tower-service" 8379 - version = "0.3.2" 8380 - source = "registry+https://github.com/rust-lang/crates.io-index" 8381 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 8382 - 8383 - [[package]] 8384 - name = "tracing" 8385 - version = "0.1.40" 8386 - source = "registry+https://github.com/rust-lang/crates.io-index" 8387 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 8388 - dependencies = [ 8389 - "log", 8390 - "pin-project-lite", 8391 - "tracing-attributes", 8392 - "tracing-core", 8393 - ] 8394 - 8395 - [[package]] 8396 - name = "tracing-appender" 8397 - version = "0.2.3" 8398 - source = "registry+https://github.com/rust-lang/crates.io-index" 8399 - checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" 8400 - dependencies = [ 8401 - "crossbeam-channel", 8402 - "thiserror", 8403 - "time", 8404 - "tracing-subscriber", 8405 - ] 8406 - 8407 - [[package]] 8408 - name = "tracing-attributes" 8409 - version = "0.1.27" 8410 - source = "registry+https://github.com/rust-lang/crates.io-index" 8411 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 8412 - dependencies = [ 8413 - "proc-macro2", 8414 - "quote", 8415 - "syn 2.0.66", 8416 - ] 8417 - 8418 - [[package]] 8419 - name = "tracing-core" 8420 - version = "0.1.32" 8421 - source = "registry+https://github.com/rust-lang/crates.io-index" 8422 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 8423 - dependencies = [ 8424 - "once_cell", 8425 - "valuable", 8426 - ] 8427 - 8428 - [[package]] 8429 - name = "tracing-log" 8430 - version = "0.2.0" 8431 - source = "registry+https://github.com/rust-lang/crates.io-index" 8432 - checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 8433 - dependencies = [ 8434 - "log", 8435 - "once_cell", 8436 - "tracing-core", 8437 - ] 8438 - 8439 - [[package]] 8440 - name = "tracing-opentelemetry" 8441 - version = "0.23.0" 8442 - source = "registry+https://github.com/rust-lang/crates.io-index" 8443 - checksum = "a9be14ba1bbe4ab79e9229f7f89fab8d120b865859f10527f31c033e599d2284" 8444 - dependencies = [ 8445 - "js-sys", 8446 - "once_cell", 8447 - "opentelemetry", 8448 - "opentelemetry_sdk", 8449 - "smallvec", 8450 - "tracing", 8451 - "tracing-core", 8452 - "tracing-log", 8453 - "tracing-subscriber", 8454 - "web-time", 8455 - ] 8456 - 8457 - [[package]] 8458 - name = "tracing-serde" 8459 - version = "0.1.3" 8460 - source = "registry+https://github.com/rust-lang/crates.io-index" 8461 - checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" 8462 - dependencies = [ 8463 - "serde", 8464 - "tracing-core", 8465 - ] 8466 - 8467 - [[package]] 8468 - name = "tracing-subscriber" 8469 - version = "0.3.18" 8470 - source = "registry+https://github.com/rust-lang/crates.io-index" 8471 - checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 8472 - dependencies = [ 8473 - "matchers", 8474 - "nu-ansi-term", 8475 - "once_cell", 8476 - "regex", 8477 - "serde", 8478 - "serde_json", 8479 - "sharded-slab", 8480 - "smallvec", 8481 - "thread_local", 8482 - "tracing", 8483 - "tracing-core", 8484 - "tracing-log", 8485 - "tracing-serde", 8486 - ] 8487 - 8488 - [[package]] 8489 - name = "triomphe" 8490 - version = "0.1.11" 8491 - source = "registry+https://github.com/rust-lang/crates.io-index" 8492 - checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3" 8493 - 8494 - [[package]] 8495 - name = "try-lock" 8496 - version = "0.2.5" 8497 - source = "registry+https://github.com/rust-lang/crates.io-index" 8498 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 8499 - 8500 - [[package]] 8501 - name = "try_from" 8502 - version = "0.3.2" 8503 - source = "registry+https://github.com/rust-lang/crates.io-index" 8504 - checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b" 8505 - dependencies = [ 8506 - "cfg-if 0.1.10", 8507 - ] 8508 - 8509 - [[package]] 8510 - name = "tryhard" 8511 - version = "0.5.1" 8512 - source = "registry+https://github.com/rust-lang/crates.io-index" 8513 - checksum = "9c9f0a709784e86923586cff0d872dba54cd2d2e116b3bc57587d15737cfce9d" 8514 - dependencies = [ 8515 - "futures", 8516 - "pin-project-lite", 8517 - "tokio", 8518 - ] 8519 - 8520 - [[package]] 8521 - name = "tungstenite" 8522 - version = "0.20.1" 8523 - source = "registry+https://github.com/rust-lang/crates.io-index" 8524 - checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 8525 - dependencies = [ 8526 - "byteorder", 8527 - "bytes", 8528 - "data-encoding", 8529 - "http 0.2.12", 8530 - "httparse", 8531 - "log", 8532 - "rand", 8533 - "sha1", 8534 - "thiserror", 8535 - "url", 8536 - "utf-8", 8537 - ] 8538 - 8539 - [[package]] 8540 - name = "tungstenite" 8541 - version = "0.23.0" 8542 - source = "registry+https://github.com/rust-lang/crates.io-index" 8543 - checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8" 8544 - dependencies = [ 8545 - "byteorder", 8546 - "bytes", 8547 - "data-encoding", 8548 - "http 1.1.0", 8549 - "httparse", 8550 - "log", 8551 - "rand", 8552 - "sha1", 8553 - "thiserror", 8554 - "utf-8", 8555 - ] 8556 - 8557 - [[package]] 8558 - name = "twox-hash" 8559 - version = "1.6.3" 8560 - source = "registry+https://github.com/rust-lang/crates.io-index" 8561 - checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 8562 - dependencies = [ 8563 - "cfg-if 1.0.0", 8564 - "static_assertions", 8565 - ] 8566 - 8567 - [[package]] 8568 - name = "typenum" 8569 - version = "1.17.0" 8570 - source = "registry+https://github.com/rust-lang/crates.io-index" 8571 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 8572 - 8573 - [[package]] 8574 - name = "uaparser" 8575 - version = "0.6.4" 8576 - source = "registry+https://github.com/rust-lang/crates.io-index" 8577 - checksum = "a4c9e1c3f893758f154004195fc2d2c52fbda462df725220ceaef830ac29affa" 8578 - dependencies = [ 8579 - "derive_more", 8580 - "lazy_static", 8581 - "regex", 8582 - "serde", 8583 - "serde_derive", 8584 - "serde_yaml", 8585 - ] 8586 - 8587 - [[package]] 8588 - name = "ucd-trie" 8589 - version = "0.1.6" 8590 - source = "registry+https://github.com/rust-lang/crates.io-index" 8591 - checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 8592 - 8593 - [[package]] 8594 - name = "unicase" 8595 - version = "2.7.0" 8596 - source = "registry+https://github.com/rust-lang/crates.io-index" 8597 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 8598 - dependencies = [ 8599 - "version_check", 8600 - ] 8601 - 8602 - [[package]] 8603 - name = "unicode-bidi" 8604 - version = "0.3.15" 8605 - source = "registry+https://github.com/rust-lang/crates.io-index" 8606 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 8607 - 8608 - [[package]] 8609 - name = "unicode-ident" 8610 - version = "1.0.12" 8611 - source = "registry+https://github.com/rust-lang/crates.io-index" 8612 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 8613 - 8614 - [[package]] 8615 - name = "unicode-normalization" 8616 - version = "0.1.23" 8617 - source = "registry+https://github.com/rust-lang/crates.io-index" 8618 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 8619 - dependencies = [ 8620 - "tinyvec", 8621 - ] 8622 - 8623 - [[package]] 8624 - name = "unicode-properties" 8625 - version = "0.1.1" 8626 - source = "registry+https://github.com/rust-lang/crates.io-index" 8627 - checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291" 8628 - 8629 - [[package]] 8630 - name = "unicode-segmentation" 8631 - version = "1.11.0" 8632 - source = "registry+https://github.com/rust-lang/crates.io-index" 8633 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 8634 - 8635 - [[package]] 8636 - name = "unicode-width" 8637 - version = "0.1.13" 8638 - source = "registry+https://github.com/rust-lang/crates.io-index" 8639 - checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" 8640 - 8641 - [[package]] 8642 - name = "unicode-xid" 8643 - version = "0.2.4" 8644 - source = "registry+https://github.com/rust-lang/crates.io-index" 8645 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 8646 - 8647 - [[package]] 8648 - name = "unicode_categories" 8649 - version = "0.1.1" 8650 - source = "registry+https://github.com/rust-lang/crates.io-index" 8651 - checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 8652 - 8653 - [[package]] 8654 - name = "universal-hash" 8655 - version = "0.5.1" 8656 - source = "registry+https://github.com/rust-lang/crates.io-index" 8657 - checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 8658 - dependencies = [ 8659 - "crypto-common", 8660 - "subtle", 8661 - ] 8662 - 8663 - [[package]] 8664 - name = "unsafe-libyaml" 8665 - version = "0.2.11" 8666 - source = "registry+https://github.com/rust-lang/crates.io-index" 8667 - checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 8668 - 8669 - [[package]] 8670 - name = "untrusted" 8671 - version = "0.9.0" 8672 - source = "registry+https://github.com/rust-lang/crates.io-index" 8673 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 8674 - 8675 - [[package]] 8676 - name = "url" 8677 - version = "2.5.1" 8678 - source = "registry+https://github.com/rust-lang/crates.io-index" 8679 - checksum = "f7c25da092f0a868cdf09e8674cd3b7ef3a7d92a24253e663a2fb85e2496de56" 8680 - dependencies = [ 8681 - "form_urlencoded", 8682 - "idna 1.0.0", 8683 - "percent-encoding", 8684 - "serde", 8685 - ] 8686 - 8687 - [[package]] 8688 - name = "urlencoding" 8689 - version = "2.1.3" 8690 - source = "registry+https://github.com/rust-lang/crates.io-index" 8691 - checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 8692 - 8693 - [[package]] 8694 - name = "utf-8" 8695 - version = "0.7.6" 8696 - source = "registry+https://github.com/rust-lang/crates.io-index" 8697 - checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 8698 - 8699 - [[package]] 8700 - name = "utf16_iter" 8701 - version = "1.0.5" 8702 - source = "registry+https://github.com/rust-lang/crates.io-index" 8703 - checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 8704 - 8705 - [[package]] 8706 - name = "utf8-width" 8707 - version = "0.1.7" 8708 - source = "registry+https://github.com/rust-lang/crates.io-index" 8709 - checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 8710 - 8711 - [[package]] 8712 - name = "utf8_iter" 8713 - version = "1.0.4" 8714 - source = "registry+https://github.com/rust-lang/crates.io-index" 8715 - checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 8716 - 8717 - [[package]] 8718 - name = "utf8parse" 8719 - version = "0.2.2" 8720 - source = "registry+https://github.com/rust-lang/crates.io-index" 8721 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 8722 - 8723 - [[package]] 8724 - name = "utoipa" 8725 - version = "4.2.3" 8726 - source = "registry+https://github.com/rust-lang/crates.io-index" 8727 - checksum = "c5afb1a60e207dca502682537fefcfd9921e71d0b83e9576060f09abc6efab23" 8728 - dependencies = [ 8729 - "indexmap 2.2.6", 8730 - "serde", 8731 - "serde_json", 8732 - "utoipa-gen", 8733 - ] 8734 - 8735 - [[package]] 8736 - name = "utoipa-gen" 8737 - version = "4.3.0" 8738 - source = "registry+https://github.com/rust-lang/crates.io-index" 8739 - checksum = "7bf0e16c02bc4bf5322ab65f10ab1149bdbcaa782cba66dc7057370a3f8190be" 8740 - dependencies = [ 8741 - "proc-macro-error", 8742 - "proc-macro2", 8743 - "quote", 8744 - "regex", 8745 - "syn 2.0.66", 8746 - ] 8747 - 8748 - [[package]] 8749 - name = "utoipa-swagger-ui" 8750 - version = "4.0.0" 8751 - source = "registry+https://github.com/rust-lang/crates.io-index" 8752 - checksum = "154517adf0d0b6e22e8e1f385628f14fcaa3db43531dc74303d3edef89d6dfe5" 8753 - dependencies = [ 8754 - "actix-web", 8755 - "mime_guess", 8756 - "regex", 8757 - "rust-embed", 8758 - "serde", 8759 - "serde_json", 8760 - "utoipa", 8761 - "zip", 8762 - ] 8763 - 8764 - [[package]] 8765 - name = "uuid" 8766 - version = "1.8.0" 8767 - source = "registry+https://github.com/rust-lang/crates.io-index" 8768 - checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 8769 - dependencies = [ 8770 - "atomic", 8771 - "getrandom", 8772 - "wasm-bindgen", 8773 - ] 8774 - 8775 - [[package]] 8776 - name = "valuable" 8777 - version = "0.1.0" 8778 - source = "registry+https://github.com/rust-lang/crates.io-index" 8779 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 8780 - 8781 - [[package]] 8782 - name = "vcpkg" 8783 - version = "0.2.15" 8784 - source = "registry+https://github.com/rust-lang/crates.io-index" 8785 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 8786 - 8787 - [[package]] 8788 - name = "vergen" 8789 - version = "7.5.1" 8790 - source = "registry+https://github.com/rust-lang/crates.io-index" 8791 - checksum = "f21b881cd6636ece9735721cf03c1fe1e774fe258683d084bb2812ab67435749" 8792 - dependencies = [ 8793 - "anyhow", 8794 - "cfg-if 1.0.0", 8795 - "enum-iterator", 8796 - "getset", 8797 - "rustversion", 8798 - "thiserror", 8799 - "time", 8800 - ] 8801 - 8802 - [[package]] 8803 - name = "version-compare" 8804 - version = "0.2.0" 8805 - source = "registry+https://github.com/rust-lang/crates.io-index" 8806 - checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 8807 - 8808 - [[package]] 8809 - name = "version_check" 8810 - version = "0.9.4" 8811 - source = "registry+https://github.com/rust-lang/crates.io-index" 8812 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 8813 - 8814 - [[package]] 8815 - name = "vob" 8816 - version = "3.0.3" 8817 - source = "registry+https://github.com/rust-lang/crates.io-index" 8818 - checksum = "c058f4c41e71a043c67744cb76dcc1ae63ece328c1732a72489ccccc2dec23e6" 8819 - dependencies = [ 8820 - "num-traits", 8821 - "rustc_version", 8822 - "serde", 8823 - ] 8824 - 8825 - [[package]] 8826 - name = "vrl" 8827 - version = "0.17.0" 8828 - source = "registry+https://github.com/rust-lang/crates.io-index" 8829 - checksum = "84451e6a979d54175932cfe49f36f31ab7a483f3feb3cfa65ee584b91ef2f858" 8830 - dependencies = [ 8831 - "aes", 8832 - "ansi_term", 8833 - "arbitrary", 8834 - "base16", 8835 - "base62", 8836 - "base64 0.22.1", 8837 - "bytes", 8838 - "cbc", 8839 - "cfb-mode", 8840 - "cfg-if 1.0.0", 8841 - "chacha20poly1305", 8842 - "charset", 8843 - "chrono", 8844 - "chrono-tz", 8845 - "cidr-utils", 8846 - "clap 4.5.7", 8847 - "codespan-reporting", 8848 - "community-id", 8849 - "crypto_secretbox", 8850 - "csv", 8851 - "ctr", 8852 - "data-encoding", 8853 - "digest", 8854 - "dns-lookup", 8855 - "domain", 8856 - "dyn-clone", 8857 - "exitcode", 8858 - "flate2", 8859 - "grok", 8860 - "hex", 8861 - "hmac", 8862 - "hostname 0.4.0", 8863 - "iana-time-zone", 8864 - "idna 0.5.0", 8865 - "indexmap 2.2.6", 8866 - "indoc", 8867 - "itertools 0.13.0", 8868 - "lalrpop", 8869 - "lalrpop-util", 8870 - "md-5", 8871 - "nom", 8872 - "ofb", 8873 - "once_cell", 8874 - "onig", 8875 - "ordered-float 4.2.0", 8876 - "paste", 8877 - "peeking_take_while", 8878 - "percent-encoding", 8879 - "pest", 8880 - "pest_derive", 8881 - "prettydiff", 8882 - "prettytable-rs", 8883 - "prost 0.12.6", 8884 - "prost-reflect", 8885 - "psl", 8886 - "psl-types", 8887 - "publicsuffix", 8888 - "quickcheck", 8889 - "quoted_printable", 8890 - "rand", 8891 - "regex", 8892 - "roxmltree", 8893 - "rust_decimal", 8894 - "rustyline", 8895 - "seahash", 8896 - "serde", 8897 - "serde_json", 8898 - "sha-1", 8899 - "sha2", 8900 - "sha3", 8901 - "snafu 0.8.4", 8902 - "snap", 8903 - "strip-ansi-escapes", 8904 - "syslog_loose 0.21.0", 8905 - "termcolor", 8906 - "thiserror", 8907 - "tokio", 8908 - "tracing", 8909 - "uaparser", 8910 - "url", 8911 - "utf8-width", 8912 - "uuid", 8913 - "webbrowser", 8914 - "woothee", 8915 - "zstd", 8916 - ] 8917 - 8918 - [[package]] 8919 - name = "vte" 8920 - version = "0.11.1" 8921 - source = "registry+https://github.com/rust-lang/crates.io-index" 8922 - checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" 8923 - dependencies = [ 8924 - "utf8parse", 8925 - "vte_generate_state_changes", 8926 - ] 8927 - 8928 - [[package]] 8929 - name = "vte_generate_state_changes" 8930 - version = "0.1.2" 8931 - source = "registry+https://github.com/rust-lang/crates.io-index" 8932 - checksum = "2e369bee1b05d510a7b4ed645f5faa90619e05437111783ea5848f28d97d3c2e" 8933 - dependencies = [ 8934 - "proc-macro2", 8935 - "quote", 8936 - ] 8937 - 8938 - [[package]] 8939 - name = "waker-fn" 8940 - version = "1.2.0" 8941 - source = "registry+https://github.com/rust-lang/crates.io-index" 8942 - checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" 8943 - 8944 - [[package]] 8945 - name = "wal" 8946 - version = "0.1.0" 8947 - dependencies = [ 8948 - "byteorder", 8949 - "bytes", 8950 - "crc32fast", 8951 - "criterion", 8952 - "parking_lot", 8953 - "snafu 0.7.5", 8954 - "snap", 8955 - "tempfile", 8956 - ] 8957 - 8958 - [[package]] 8959 - name = "walkdir" 8960 - version = "2.5.0" 8961 - source = "registry+https://github.com/rust-lang/crates.io-index" 8962 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 8963 - dependencies = [ 8964 - "same-file", 8965 - "winapi-util", 8966 - ] 8967 - 8968 - [[package]] 8969 - name = "want" 8970 - version = "0.3.1" 8971 - source = "registry+https://github.com/rust-lang/crates.io-index" 8972 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 8973 - dependencies = [ 8974 - "try-lock", 8975 - ] 8976 - 8977 - [[package]] 8978 - name = "wasi" 8979 - version = "0.10.2+wasi-snapshot-preview1" 8980 - source = "registry+https://github.com/rust-lang/crates.io-index" 8981 - checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 8982 - 8983 - [[package]] 8984 - name = "wasi" 8985 - version = "0.11.0+wasi-snapshot-preview1" 8986 - source = "registry+https://github.com/rust-lang/crates.io-index" 8987 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 8988 - 8989 - [[package]] 8990 - name = "wasite" 8991 - version = "0.1.0" 8992 - source = "registry+https://github.com/rust-lang/crates.io-index" 8993 - checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 8994 - 8995 - [[package]] 8996 - name = "wasm-bindgen" 8997 - version = "0.2.92" 8998 - source = "registry+https://github.com/rust-lang/crates.io-index" 8999 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 9000 - dependencies = [ 9001 - "cfg-if 1.0.0", 9002 - "wasm-bindgen-macro", 9003 - ] 9004 - 9005 - [[package]] 9006 - name = "wasm-bindgen-backend" 9007 - version = "0.2.92" 9008 - source = "registry+https://github.com/rust-lang/crates.io-index" 9009 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 9010 - dependencies = [ 9011 - "bumpalo", 9012 - "log", 9013 - "once_cell", 9014 - "proc-macro2", 9015 - "quote", 9016 - "syn 2.0.66", 9017 - "wasm-bindgen-shared", 9018 - ] 9019 - 9020 - [[package]] 9021 - name = "wasm-bindgen-futures" 9022 - version = "0.4.42" 9023 - source = "registry+https://github.com/rust-lang/crates.io-index" 9024 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 9025 - dependencies = [ 9026 - "cfg-if 1.0.0", 9027 - "js-sys", 9028 - "wasm-bindgen", 9029 - "web-sys", 9030 - ] 9031 - 9032 - [[package]] 9033 - name = "wasm-bindgen-macro" 9034 - version = "0.2.92" 9035 - source = "registry+https://github.com/rust-lang/crates.io-index" 9036 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 9037 - dependencies = [ 9038 - "quote", 9039 - "wasm-bindgen-macro-support", 9040 - ] 9041 - 9042 - [[package]] 9043 - name = "wasm-bindgen-macro-support" 9044 - version = "0.2.92" 9045 - source = "registry+https://github.com/rust-lang/crates.io-index" 9046 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 9047 - dependencies = [ 9048 - "proc-macro2", 9049 - "quote", 9050 - "syn 2.0.66", 9051 - "wasm-bindgen-backend", 9052 - "wasm-bindgen-shared", 9053 - ] 9054 - 9055 - [[package]] 9056 - name = "wasm-bindgen-shared" 9057 - version = "0.2.92" 9058 - source = "registry+https://github.com/rust-lang/crates.io-index" 9059 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 9060 - 9061 - [[package]] 9062 - name = "wasm-streams" 9063 - version = "0.4.0" 9064 - source = "registry+https://github.com/rust-lang/crates.io-index" 9065 - checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 9066 - dependencies = [ 9067 - "futures-util", 9068 - "js-sys", 9069 - "wasm-bindgen", 9070 - "wasm-bindgen-futures", 9071 - "web-sys", 9072 - ] 9073 - 9074 - [[package]] 9075 - name = "web-sys" 9076 - version = "0.3.69" 9077 - source = "registry+https://github.com/rust-lang/crates.io-index" 9078 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 9079 - dependencies = [ 9080 - "js-sys", 9081 - "wasm-bindgen", 9082 - ] 9083 - 9084 - [[package]] 9085 - name = "web-time" 9086 - version = "1.1.0" 9087 - source = "registry+https://github.com/rust-lang/crates.io-index" 9088 - checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 9089 - dependencies = [ 9090 - "js-sys", 9091 - "wasm-bindgen", 9092 - ] 9093 - 9094 - [[package]] 9095 - name = "webbrowser" 9096 - version = "1.0.1" 9097 - source = "registry+https://github.com/rust-lang/crates.io-index" 9098 - checksum = "425ba64c1e13b1c6e8c5d2541c8fac10022ca584f33da781db01b5756aef1f4e" 9099 - dependencies = [ 9100 - "block2", 9101 - "core-foundation", 9102 - "home", 9103 - "jni", 9104 - "log", 9105 - "ndk-context", 9106 - "objc2", 9107 - "objc2-foundation", 9108 - "url", 9109 - "web-sys", 9110 - ] 9111 - 9112 - [[package]] 9113 - name = "webpki-roots" 9114 - version = "0.25.4" 9115 - source = "registry+https://github.com/rust-lang/crates.io-index" 9116 - checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" 9117 - 9118 - [[package]] 9119 - name = "webpki-roots" 9120 - version = "0.26.2" 9121 - source = "registry+https://github.com/rust-lang/crates.io-index" 9122 - checksum = "3c452ad30530b54a4d8e71952716a212b08efd0f3562baa66c29a618b07da7c3" 9123 - dependencies = [ 9124 - "rustls-pki-types", 9125 - ] 9126 - 9127 - [[package]] 9128 - name = "which" 9129 - version = "4.4.2" 9130 - source = "registry+https://github.com/rust-lang/crates.io-index" 9131 - checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 9132 - dependencies = [ 9133 - "either", 9134 - "home", 9135 - "once_cell", 9136 - "rustix", 9137 - ] 9138 - 9139 - [[package]] 9140 - name = "whoami" 9141 - version = "1.5.1" 9142 - source = "registry+https://github.com/rust-lang/crates.io-index" 9143 - checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" 9144 - dependencies = [ 9145 - "redox_syscall 0.4.1", 9146 - "wasite", 9147 - ] 9148 - 9149 - [[package]] 9150 - name = "winapi" 9151 - version = "0.2.8" 9152 - source = "registry+https://github.com/rust-lang/crates.io-index" 9153 - checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 9154 - 9155 - [[package]] 9156 - name = "winapi" 9157 - version = "0.3.9" 9158 - source = "registry+https://github.com/rust-lang/crates.io-index" 9159 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 9160 - dependencies = [ 9161 - "winapi-i686-pc-windows-gnu", 9162 - "winapi-x86_64-pc-windows-gnu", 9163 - ] 9164 - 9165 - [[package]] 9166 - name = "winapi-i686-pc-windows-gnu" 9167 - version = "0.4.0" 9168 - source = "registry+https://github.com/rust-lang/crates.io-index" 9169 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 9170 - 9171 - [[package]] 9172 - name = "winapi-util" 9173 - version = "0.1.8" 9174 - source = "registry+https://github.com/rust-lang/crates.io-index" 9175 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 9176 - dependencies = [ 9177 - "windows-sys 0.52.0", 9178 - ] 9179 - 9180 - [[package]] 9181 - name = "winapi-x86_64-pc-windows-gnu" 9182 - version = "0.4.0" 9183 - source = "registry+https://github.com/rust-lang/crates.io-index" 9184 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 9185 - 9186 - [[package]] 9187 - name = "windows" 9188 - version = "0.52.0" 9189 - source = "registry+https://github.com/rust-lang/crates.io-index" 9190 - checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 9191 - dependencies = [ 9192 - "windows-core", 9193 - "windows-targets 0.52.5", 9194 - ] 9195 - 9196 - [[package]] 9197 - name = "windows-core" 9198 - version = "0.52.0" 9199 - source = "registry+https://github.com/rust-lang/crates.io-index" 9200 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 9201 - dependencies = [ 9202 - "windows-targets 0.52.5", 9203 - ] 9204 - 9205 - [[package]] 9206 - name = "windows-sys" 9207 - version = "0.45.0" 9208 - source = "registry+https://github.com/rust-lang/crates.io-index" 9209 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 9210 - dependencies = [ 9211 - "windows-targets 0.42.2", 9212 - ] 9213 - 9214 - [[package]] 9215 - name = "windows-sys" 9216 - version = "0.48.0" 9217 - source = "registry+https://github.com/rust-lang/crates.io-index" 9218 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 9219 - dependencies = [ 9220 - "windows-targets 0.48.5", 9221 - ] 9222 - 9223 - [[package]] 9224 - name = "windows-sys" 9225 - version = "0.52.0" 9226 - source = "registry+https://github.com/rust-lang/crates.io-index" 9227 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 9228 - dependencies = [ 9229 - "windows-targets 0.52.5", 9230 - ] 9231 - 9232 - [[package]] 9233 - name = "windows-targets" 9234 - version = "0.42.2" 9235 - source = "registry+https://github.com/rust-lang/crates.io-index" 9236 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 9237 - dependencies = [ 9238 - "windows_aarch64_gnullvm 0.42.2", 9239 - "windows_aarch64_msvc 0.42.2", 9240 - "windows_i686_gnu 0.42.2", 9241 - "windows_i686_msvc 0.42.2", 9242 - "windows_x86_64_gnu 0.42.2", 9243 - "windows_x86_64_gnullvm 0.42.2", 9244 - "windows_x86_64_msvc 0.42.2", 9245 - ] 9246 - 9247 - [[package]] 9248 - name = "windows-targets" 9249 - version = "0.48.5" 9250 - source = "registry+https://github.com/rust-lang/crates.io-index" 9251 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 9252 - dependencies = [ 9253 - "windows_aarch64_gnullvm 0.48.5", 9254 - "windows_aarch64_msvc 0.48.5", 9255 - "windows_i686_gnu 0.48.5", 9256 - "windows_i686_msvc 0.48.5", 9257 - "windows_x86_64_gnu 0.48.5", 9258 - "windows_x86_64_gnullvm 0.48.5", 9259 - "windows_x86_64_msvc 0.48.5", 9260 - ] 9261 - 9262 - [[package]] 9263 - name = "windows-targets" 9264 - version = "0.52.5" 9265 - source = "registry+https://github.com/rust-lang/crates.io-index" 9266 - checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 9267 - dependencies = [ 9268 - "windows_aarch64_gnullvm 0.52.5", 9269 - "windows_aarch64_msvc 0.52.5", 9270 - "windows_i686_gnu 0.52.5", 9271 - "windows_i686_gnullvm", 9272 - "windows_i686_msvc 0.52.5", 9273 - "windows_x86_64_gnu 0.52.5", 9274 - "windows_x86_64_gnullvm 0.52.5", 9275 - "windows_x86_64_msvc 0.52.5", 9276 - ] 9277 - 9278 - [[package]] 9279 - name = "windows_aarch64_gnullvm" 9280 - version = "0.42.2" 9281 - source = "registry+https://github.com/rust-lang/crates.io-index" 9282 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 9283 - 9284 - [[package]] 9285 - name = "windows_aarch64_gnullvm" 9286 - version = "0.48.5" 9287 - source = "registry+https://github.com/rust-lang/crates.io-index" 9288 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 9289 - 9290 - [[package]] 9291 - name = "windows_aarch64_gnullvm" 9292 - version = "0.52.5" 9293 - source = "registry+https://github.com/rust-lang/crates.io-index" 9294 - checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 9295 - 9296 - [[package]] 9297 - name = "windows_aarch64_msvc" 9298 - version = "0.42.2" 9299 - source = "registry+https://github.com/rust-lang/crates.io-index" 9300 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 9301 - 9302 - [[package]] 9303 - name = "windows_aarch64_msvc" 9304 - version = "0.48.5" 9305 - source = "registry+https://github.com/rust-lang/crates.io-index" 9306 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 9307 - 9308 - [[package]] 9309 - name = "windows_aarch64_msvc" 9310 - version = "0.52.5" 9311 - source = "registry+https://github.com/rust-lang/crates.io-index" 9312 - checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 9313 - 9314 - [[package]] 9315 - name = "windows_i686_gnu" 9316 - version = "0.42.2" 9317 - source = "registry+https://github.com/rust-lang/crates.io-index" 9318 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 9319 - 9320 - [[package]] 9321 - name = "windows_i686_gnu" 9322 - version = "0.48.5" 9323 - source = "registry+https://github.com/rust-lang/crates.io-index" 9324 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 9325 - 9326 - [[package]] 9327 - name = "windows_i686_gnu" 9328 - version = "0.52.5" 9329 - source = "registry+https://github.com/rust-lang/crates.io-index" 9330 - checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 9331 - 9332 - [[package]] 9333 - name = "windows_i686_gnullvm" 9334 - version = "0.52.5" 9335 - source = "registry+https://github.com/rust-lang/crates.io-index" 9336 - checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 9337 - 9338 - [[package]] 9339 - name = "windows_i686_msvc" 9340 - version = "0.42.2" 9341 - source = "registry+https://github.com/rust-lang/crates.io-index" 9342 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 9343 - 9344 - [[package]] 9345 - name = "windows_i686_msvc" 9346 - version = "0.48.5" 9347 - source = "registry+https://github.com/rust-lang/crates.io-index" 9348 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 9349 - 9350 - [[package]] 9351 - name = "windows_i686_msvc" 9352 - version = "0.52.5" 9353 - source = "registry+https://github.com/rust-lang/crates.io-index" 9354 - checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 9355 - 9356 - [[package]] 9357 - name = "windows_x86_64_gnu" 9358 - version = "0.42.2" 9359 - source = "registry+https://github.com/rust-lang/crates.io-index" 9360 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 9361 - 9362 - [[package]] 9363 - name = "windows_x86_64_gnu" 9364 - version = "0.48.5" 9365 - source = "registry+https://github.com/rust-lang/crates.io-index" 9366 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 9367 - 9368 - [[package]] 9369 - name = "windows_x86_64_gnu" 9370 - version = "0.52.5" 9371 - source = "registry+https://github.com/rust-lang/crates.io-index" 9372 - checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 9373 - 9374 - [[package]] 9375 - name = "windows_x86_64_gnullvm" 9376 - version = "0.42.2" 9377 - source = "registry+https://github.com/rust-lang/crates.io-index" 9378 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 9379 - 9380 - [[package]] 9381 - name = "windows_x86_64_gnullvm" 9382 - version = "0.48.5" 9383 - source = "registry+https://github.com/rust-lang/crates.io-index" 9384 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 9385 - 9386 - [[package]] 9387 - name = "windows_x86_64_gnullvm" 9388 - version = "0.52.5" 9389 - source = "registry+https://github.com/rust-lang/crates.io-index" 9390 - checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 9391 - 9392 - [[package]] 9393 - name = "windows_x86_64_msvc" 9394 - version = "0.42.2" 9395 - source = "registry+https://github.com/rust-lang/crates.io-index" 9396 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 9397 - 9398 - [[package]] 9399 - name = "windows_x86_64_msvc" 9400 - version = "0.48.5" 9401 - source = "registry+https://github.com/rust-lang/crates.io-index" 9402 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 9403 - 9404 - [[package]] 9405 - name = "windows_x86_64_msvc" 9406 - version = "0.52.5" 9407 - source = "registry+https://github.com/rust-lang/crates.io-index" 9408 - checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 9409 - 9410 - [[package]] 9411 - name = "winnow" 9412 - version = "0.5.40" 9413 - source = "registry+https://github.com/rust-lang/crates.io-index" 9414 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 9415 - dependencies = [ 9416 - "memchr", 9417 - ] 9418 - 9419 - [[package]] 9420 - name = "winreg" 9421 - version = "0.50.0" 9422 - source = "registry+https://github.com/rust-lang/crates.io-index" 9423 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 9424 - dependencies = [ 9425 - "cfg-if 1.0.0", 9426 - "windows-sys 0.48.0", 9427 - ] 9428 - 9429 - [[package]] 9430 - name = "winreg" 9431 - version = "0.51.0" 9432 - source = "registry+https://github.com/rust-lang/crates.io-index" 9433 - checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc" 9434 - dependencies = [ 9435 - "cfg-if 1.0.0", 9436 - "windows-sys 0.48.0", 9437 - ] 9438 - 9439 - [[package]] 9440 - name = "winreg" 9441 - version = "0.52.0" 9442 - source = "registry+https://github.com/rust-lang/crates.io-index" 9443 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 9444 - dependencies = [ 9445 - "cfg-if 1.0.0", 9446 - "windows-sys 0.48.0", 9447 - ] 9448 - 9449 - [[package]] 9450 - name = "woothee" 9451 - version = "0.13.0" 9452 - source = "registry+https://github.com/rust-lang/crates.io-index" 9453 - checksum = "896174c6a4779d4d7d4523dd27aef7d46609eda2497e370f6c998325c6bf6971" 9454 - dependencies = [ 9455 - "lazy_static", 9456 - "regex", 9457 - ] 9458 - 9459 - [[package]] 9460 - name = "write16" 9461 - version = "1.0.0" 9462 - source = "registry+https://github.com/rust-lang/crates.io-index" 9463 - checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 9464 - 9465 - [[package]] 9466 - name = "writeable" 9467 - version = "0.5.5" 9468 - source = "registry+https://github.com/rust-lang/crates.io-index" 9469 - checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 9470 - 9471 - [[package]] 9472 - name = "wyz" 9473 - version = "0.5.1" 9474 - source = "registry+https://github.com/rust-lang/crates.io-index" 9475 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 9476 - dependencies = [ 9477 - "tap", 9478 - ] 9479 - 9480 - [[package]] 9481 - name = "xz2" 9482 - version = "0.1.7" 9483 - source = "registry+https://github.com/rust-lang/crates.io-index" 9484 - checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" 9485 - dependencies = [ 9486 - "lzma-sys", 9487 - ] 9488 - 9489 - [[package]] 9490 - name = "yoke" 9491 - version = "0.7.4" 9492 - source = "registry+https://github.com/rust-lang/crates.io-index" 9493 - checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" 9494 - dependencies = [ 9495 - "serde", 9496 - "stable_deref_trait", 9497 - "yoke-derive", 9498 - "zerofrom", 9499 - ] 9500 - 9501 - [[package]] 9502 - name = "yoke-derive" 9503 - version = "0.7.4" 9504 - source = "registry+https://github.com/rust-lang/crates.io-index" 9505 - checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" 9506 - dependencies = [ 9507 - "proc-macro2", 9508 - "quote", 9509 - "syn 2.0.66", 9510 - "synstructure", 9511 - ] 9512 - 9513 - [[package]] 9514 - name = "zerocopy" 9515 - version = "0.7.34" 9516 - source = "registry+https://github.com/rust-lang/crates.io-index" 9517 - checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087" 9518 - dependencies = [ 9519 - "zerocopy-derive", 9520 - ] 9521 - 9522 - [[package]] 9523 - name = "zerocopy-derive" 9524 - version = "0.7.34" 9525 - source = "registry+https://github.com/rust-lang/crates.io-index" 9526 - checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b" 9527 - dependencies = [ 9528 - "proc-macro2", 9529 - "quote", 9530 - "syn 2.0.66", 9531 - ] 9532 - 9533 - [[package]] 9534 - name = "zerofrom" 9535 - version = "0.1.4" 9536 - source = "registry+https://github.com/rust-lang/crates.io-index" 9537 - checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" 9538 - dependencies = [ 9539 - "zerofrom-derive", 9540 - ] 9541 - 9542 - [[package]] 9543 - name = "zerofrom-derive" 9544 - version = "0.1.4" 9545 - source = "registry+https://github.com/rust-lang/crates.io-index" 9546 - checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" 9547 - dependencies = [ 9548 - "proc-macro2", 9549 - "quote", 9550 - "syn 2.0.66", 9551 - "synstructure", 9552 - ] 9553 - 9554 - [[package]] 9555 - name = "zeroize" 9556 - version = "1.8.1" 9557 - source = "registry+https://github.com/rust-lang/crates.io-index" 9558 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 9559 - 9560 - [[package]] 9561 - name = "zerovec" 9562 - version = "0.10.4" 9563 - source = "registry+https://github.com/rust-lang/crates.io-index" 9564 - checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 9565 - dependencies = [ 9566 - "yoke", 9567 - "zerofrom", 9568 - "zerovec-derive", 9569 - ] 9570 - 9571 - [[package]] 9572 - name = "zerovec-derive" 9573 - version = "0.10.3" 9574 - source = "registry+https://github.com/rust-lang/crates.io-index" 9575 - checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 9576 - dependencies = [ 9577 - "proc-macro2", 9578 - "quote", 9579 - "syn 2.0.66", 9580 - ] 9581 - 9582 - [[package]] 9583 - name = "zip" 9584 - version = "0.6.6" 9585 - source = "registry+https://github.com/rust-lang/crates.io-index" 9586 - checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 9587 - dependencies = [ 9588 - "byteorder", 9589 - "crc32fast", 9590 - "crossbeam-utils", 9591 - "flate2", 9592 - ] 9593 - 9594 - [[package]] 9595 - name = "zstd" 9596 - version = "0.13.0" 9597 - source = "registry+https://github.com/rust-lang/crates.io-index" 9598 - checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110" 9599 - dependencies = [ 9600 - "zstd-safe", 9601 - ] 9602 - 9603 - [[package]] 9604 - name = "zstd-safe" 9605 - version = "7.0.0" 9606 - source = "registry+https://github.com/rust-lang/crates.io-index" 9607 - checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e" 9608 - dependencies = [ 9609 - "zstd-sys", 9610 - ] 9611 - 9612 - [[package]] 9613 - name = "zstd-sys" 9614 - version = "2.0.9+zstd.1.5.5" 9615 - source = "registry+https://github.com/rust-lang/crates.io-index" 9616 - checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" 9617 - dependencies = [ 9618 - "cc", 9619 - "pkg-config", 9620 - ]
pkgs/servers/monitoring/openobserve/build.rs.patch pkgs/by-name/op/openobserve/build.rs.patch
-150
pkgs/servers/monitoring/openobserve/default.nix
··· 1 - { 2 - lib, 3 - rustPlatform, 4 - fetchFromGitHub, 5 - pkg-config, 6 - protobuf, 7 - bzip2, 8 - oniguruma, 9 - sqlite, 10 - xz, 11 - zlib, 12 - zstd, 13 - stdenv, 14 - apple_sdk, 15 - buildNpmPackage, 16 - }: 17 - 18 - let 19 - version = "0.11.0"; 20 - src = fetchFromGitHub { 21 - owner = "openobserve"; 22 - repo = "openobserve"; 23 - rev = "v${version}"; 24 - hash = "sha256-VRkAOUtF/eOxE7/Xjxi/WEfeSseGEJ9IROCFbgeFUkI="; 25 - }; 26 - web = buildNpmPackage { 27 - inherit src version; 28 - pname = "openobserve-ui"; 29 - 30 - sourceRoot = "${src.name}/web"; 31 - 32 - npmDepsHash = "sha256-2beTB6BHHshQkgbqVc195j2/0hBEn/fFz8+0ViSG5Gc="; 33 - 34 - preBuild = '' 35 - # Patch vite config to not open the browser to visualize plugin composition 36 - substituteInPlace vite.config.ts \ 37 - --replace "open: true" "open: false"; 38 - ''; 39 - 40 - env = { 41 - NODE_OPTIONS = "--max-old-space-size=8192"; 42 - # cypress tries to download binaries otherwise 43 - CYPRESS_INSTALL_BINARY = 0; 44 - }; 45 - 46 - installPhase = '' 47 - runHook preInstall 48 - mkdir -p $out/share 49 - mv dist $out/share/openobserve-ui 50 - runHook postInstall 51 - ''; 52 - }; 53 - in 54 - rustPlatform.buildRustPackage { 55 - pname = "openobserve"; 56 - inherit version src; 57 - 58 - patches = [ 59 - # prevent using git to determine version info during build time 60 - ./build.rs.patch 61 - ]; 62 - 63 - preBuild = '' 64 - cp -r ${web}/share/openobserve-ui web/dist 65 - ''; 66 - cargoLock = { 67 - lockFile = ./Cargo.lock; 68 - outputHashes = { 69 - "chromiumoxide-0.5.7" = "sha256-GHrm5u8FtXRUjSRGMU4PNU6AJZ5W2KcgfZY1c/CBVYA="; 70 - "enrichment-0.1.0" = "sha256-Ui4rsvmemOF00E4yBRFRS2gw9qliDrNEVQu5fvIpahA="; 71 - }; 72 - }; 73 - 74 - nativeBuildInputs = [ 75 - pkg-config 76 - protobuf 77 - ]; 78 - 79 - buildInputs = 80 - [ 81 - bzip2 82 - oniguruma 83 - sqlite 84 - xz 85 - zlib 86 - zstd 87 - ] 88 - ++ lib.optionals stdenv.hostPlatform.isDarwin ( 89 - with apple_sdk.frameworks; 90 - [ 91 - CoreFoundation 92 - CoreServices 93 - IOKit 94 - Security 95 - SystemConfiguration 96 - ] 97 - ); 98 - 99 - env = { 100 - RUSTONIG_SYSTEM_LIBONIG = true; 101 - ZSTD_SYS_USE_PKG_CONFIG = true; 102 - 103 - RUSTC_BOOTSTRAP = 1; # uses experimental features 104 - 105 - # the patched build.rs file sets these variables 106 - GIT_VERSION = src.rev; 107 - GIT_COMMIT_HASH = "builtByNix"; 108 - GIT_BUILD_DATE = "1970-01-01T00:00:00Z"; 109 - }; 110 - 111 - # requires network access or filesystem mutations 112 - checkFlags = [ 113 - "--skip handler::http::auth::tests::test_validate" 114 - "--skip handler::http::router::tests::test_get_proxy_routes" 115 - "--skip handler::http::router::ui::tests::test_index_not_ok" 116 - "--skip handler::http::router::ui::tests::test_index_ok" 117 - "--skip handler::http::request::search::saved_view::tests::test_create_view_post" 118 - "--skip infra::cache::file_list::tests::test_get_file_from_cache" 119 - "--skip infra::cache::tmpfs::tests::test_delete_prefix" 120 - "--skip infra::cluster::tests::test_get_node_ip" 121 - "--skip infra::db::tests::test_delete" 122 - "--skip service::alerts::test::test_alerts" 123 - "--skip service::compact::merge::tests::test_compact" 124 - "--skip service::db::compact::file_list::tests::test_files" 125 - "--skip service::db::compact::file_list::tests::test_file_list_offset" 126 - "--skip service::db::compact::file_list::tests::test_file_list_process_offset" 127 - "--skip service::db::compact::files::tests::test_compact_files" 128 - "--skip service::db::user::tests::test_user" 129 - "--skip service::ingestion::grpc::tests::test_get_val" 130 - "--skip service::metadata::trace_list_index::tests::test_write" 131 - "--skip service::organization::tests::test_organization" 132 - "--skip service::search::sql::tests::test_sql_full" 133 - "--skip service::triggers::tests::test_triggers" 134 - "--skip service::users::tests::test_post_user" 135 - "--skip service::users::tests::test_user" 136 - "--skip common::infra::cache::file_data::disk::tests::test_get_file_from_cache" 137 - "--skip common::infra::cluster::tests::test_consistent_hashing" 138 - "--skip common::infra::db::tests::test_get" 139 - "--skip common::utils::auth::tests::test_is_root_user2" 140 - "--skip tests::e2e_test" 141 - ]; 142 - 143 - meta = with lib; { 144 - description = "Cloud-native observability platform built specifically for logs, metrics, traces, analytics & realtime user-monitoring"; 145 - homepage = "https://github.com/openobserve/openobserve"; 146 - license = licenses.asl20; 147 - maintainers = with maintainers; [ happysalada ]; 148 - mainProgram = "openobserve"; 149 - }; 150 - }
+3 -3
pkgs/tools/archivers/p7zip/default.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "p7zip"; 10 - version = "17.05"; 10 + version = "17.06"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "p7zip-project"; ··· 15 15 rev = "v${finalAttrs.version}"; 16 16 sha256 = 17 17 { 18 - free = "sha256-5r7M9BVcAryZNTkqJ/BfHnSSWov1PwoZhUnLBwEbJoA="; 19 - unfree = "sha256-z3qXgv/TkNRbb85Ew1OcJNxoyssfzHShc0b0/4NZOb0="; 18 + free = "sha256-NHlacZFal4xMYyFMshibeAw86cS1RXXyXweXKFHQAT8="; 19 + unfree = "sha256-kSJHgnuUxO9DJwSOE1hffp9PfU39V+VE87I3CpeRGiY="; 20 20 } 21 21 .${if enableUnfree then "unfree" else "free"}; 22 22 # remove the unRAR related code from the src drv
+26 -4
pkgs/tools/graphics/asymptote/default.nix
··· 18 18 boehmgc, 19 19 libGLU, 20 20 libGL, 21 + libglvnd, 21 22 ncurses, 22 23 readline, 23 24 gsl, ··· 25 26 python3, 26 27 qtbase, 27 28 qtsvg, 28 - boost, 29 + boost186, 29 30 zlib, 30 31 perl, 31 32 curl, ··· 35 36 }: 36 37 37 38 stdenv.mkDerivation (finalAttrs: { 38 - version = "2.92"; 39 + version = "2.95"; 39 40 pname = "asymptote"; 40 41 41 42 outputs = [ ··· 48 49 49 50 src = fetchurl { 50 51 url = "mirror://sourceforge/asymptote/${finalAttrs.version}/asymptote-${finalAttrs.version}.src.tgz"; 51 - hash = "sha256-nZtcb6fg+848HlT+sl4tUdKMT+d5jyTHbNyugpGo6mY="; 52 + hash = "sha256-FWBP0Cy23bxbgHUp0ub8YXyCWhhN0Ne3E5DFZ66seOc="; 52 53 }; 53 54 55 + # https://github.com/vectorgraphics/asymptote/issues/513 56 + postConfigure = '' 57 + substituteInPlace Makefile \ 58 + --replace-fail 'glew.o -lGLX' 'glew.o' 59 + ''; 60 + 54 61 # override with TeX Live containers to avoid building sty, docs from source 55 62 texContainer = null; 56 63 texdocContainer = null; ··· 64 71 texinfo 65 72 wrapQtAppsHook 66 73 cmake 74 + ghostscriptX 75 + perl 67 76 pkg-config 77 + (python3.withPackages ( 78 + ps: with ps; [ 79 + click 80 + cson 81 + numpy 82 + pyqt5 83 + ] 84 + )) 68 85 ] 69 86 ++ lib.optional (finalAttrs.texContainer == null || finalAttrs.texdocContainer == null) ( 70 87 texliveSmall.withPackages ( ··· 94 111 curl 95 112 qtbase 96 113 qtsvg 97 - boost 114 + # relies on removed asio::io_service 115 + # https://github.com/kuafuwang/LspCpp/issues/52 116 + boost186 98 117 (python3.withPackages ( 99 118 ps: with ps; [ 100 119 cson ··· 112 131 libglut 113 132 libGLU 114 133 libGL 134 + libglvnd 115 135 ] 116 136 ++ lib.optionals stdenv.hostPlatform.isDarwin ( 117 137 with darwin.apple_sdk.frameworks; ··· 155 175 156 176 postInstall = '' 157 177 rm "$out"/bin/xasy 178 + chmod +x "$out"/share/asymptote/GUI/xasy.py 158 179 makeQtWrapper "$out"/share/asymptote/GUI/xasy.py "$out"/bin/xasy --prefix PATH : "$out"/bin 159 180 160 181 if [[ -z $texdocContainer ]] ; then ··· 199 220 200 221 meta = with lib; { 201 222 description = "Tool for programming graphics intended to replace Metapost"; 223 + homepage = "https://asymptote.sourceforge.io/"; 202 224 license = licenses.gpl3Plus; 203 225 maintainers = [ maintainers.raskin ]; 204 226 platforms = platforms.linux ++ platforms.darwin;
+3 -3
pkgs/tools/security/cnspec/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cnspec"; 9 - version = "11.35.0"; 9 + version = "11.36.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mondoohq"; 13 13 repo = "cnspec"; 14 14 tag = "v${version}"; 15 - hash = "sha256-Of/59QwHIbKYnUUJ66mWVWu1wuKyzo/4DzttYCBcW4Y="; 15 + hash = "sha256-oi5ftC6xuh6DEIn5qYZxCbKis656fU4kRVbjWOjNCLA="; 16 16 }; 17 17 18 18 proxyVendor = true; 19 19 20 - vendorHash = "sha256-tQGqxYuSP81l9i2JKC4//GeUtNRZtCbxv7m6wWsK78E="; 20 + vendorHash = "sha256-XLDbhNN7Y1E/yBQeFs8RmUP3WgI9G+s/tfts8WJsdvA="; 21 21 22 22 subPackages = [ "apps/cnspec" ]; 23 23
-4
pkgs/top-level/all-packages.nix
··· 4476 4476 4477 4477 onetun = callPackage ../tools/networking/onetun { }; 4478 4478 4479 - openobserve = darwin.apple_sdk_11_0.callPackage ../servers/monitoring/openobserve { 4480 - apple_sdk = darwin.apple_sdk_11_0; 4481 - }; 4482 - 4483 4479 ofono-phonesim = libsForQt5.callPackage ../development/tools/ofono-phonesim { }; 4484 4480 4485 4481 ola = callPackage ../applications/misc/ola {
+2
pkgs/top-level/linux-kernels.nix
··· 617 617 618 618 msi-ec = callPackage ../os-specific/linux/msi-ec { }; 619 619 620 + tsme-test = callPackage ../os-specific/linux/tsme-test { }; 621 + 620 622 } // lib.optionalAttrs config.allowAliases { 621 623 ati_drivers_x11 = throw "ati drivers are no longer supported by any kernel >=4.1"; # added 2021-05-18; 622 624 hid-nintendo = throw "hid-nintendo was added in mainline kernel version 5.16"; # Added 2023-07-30
+2
pkgs/top-level/python-packages.nix
··· 7623 7623 7624 7624 llm = callPackage ../development/python-modules/llm { }; 7625 7625 7626 + llm-cmd = callPackage ../development/python-modules/llm-cmd { }; 7627 + 7626 7628 llm-gguf = callPackage ../development/python-modules/llm-gguf { }; 7627 7629 7628 7630 llm-ollama = callPackage ../development/python-modules/llm-ollama { };