diff --git a/nixos/doc/manual/release-notes/rl-2511.section.md b/nixos/doc/manual/release-notes/rl-2511.section.md index 142679661d68..cc16360be7ea 100644 --- a/nixos/doc/manual/release-notes/rl-2511.section.md +++ b/nixos/doc/manual/release-notes/rl-2511.section.md @@ -475,6 +475,8 @@ and [release notes for v18](https://goteleport.com/docs/changelog/#1800-070325). - `services.restic.backups` now includes a `command` option for passing a command to the [--stdin-from-command](https://github.com/restic/restic/pull/4410) flag. +- `services.grafana` does no longer send usage statistics by default. + - `services.postsrsd` now automatically integrates with the local Postfix instance, when enabled. This behavior can disabled using the [services.postsrsd.configurePostfix](#opt-services.postsrsd.configurePostfix) option. - `services.pfix-srsd` now automatically integrates with the local Postfix instance, when enabled. This behavior can disabled using the [services.pfix-srsd.configurePostfix](#opt-services.pfix-srsd.configurePostfix) option. diff --git a/nixos/modules/config/stevenblack.nix b/nixos/modules/config/stevenblack.nix index 95f6c9e73eb3..c09a913bcdbe 100644 --- a/nixos/modules/config/stevenblack.nix +++ b/nixos/modules/config/stevenblack.nix @@ -16,6 +16,18 @@ let ; cfg = config.networking.stevenblack; + + filterHostsFile = + hostsFile: + if cfg.whitelist == [ ] then + hostsFile + else + let + pattern = lib.escape [ "." "|" ] (lib.concatStringsSep "|" cfg.whitelist); + in + pkgs.runCommand "filtered-hosts" { } '' + sed '/${pattern}/d' ${hostsFile} > $out + ''; in { options.networking.stevenblack = { @@ -35,10 +47,20 @@ in default = [ ]; description = "Additional blocklist extensions."; }; + + whitelist = mkOption { + # https://datatracker.ietf.org/doc/html/rfc1035 + type = types.listOf (types.strMatching "^[a-zA-Z0-9_-]+([.][a-zA-Z0-9_-]+)+$"); + default = [ ]; + description = "Domains to exclude from blocking."; + example = [ "s.click.aliexpress.com" ]; + }; }; config = mkIf cfg.enable { - networking.hostFiles = map (x: "${getOutput x cfg.package}/hosts") ([ "ads" ] ++ cfg.block); + networking.hostFiles = map (x: filterHostsFile "${getOutput x cfg.package}/hosts") ( + [ "ads" ] ++ cfg.block + ); }; meta.maintainers = with maintainers; [ diff --git a/nixos/modules/services/hardware/nvidia-container-toolkit/default.nix b/nixos/modules/services/hardware/nvidia-container-toolkit/default.nix index cdfa8f6b5123..55099dc4bffb 100644 --- a/nixos/modules/services/hardware/nvidia-container-toolkit/default.nix +++ b/nixos/modules/services/hardware/nvidia-container-toolkit/default.nix @@ -289,6 +289,7 @@ systemd.services.nvidia-container-toolkit-cdi-generator = { description = "Container Device Interface (CDI) for Nvidia generator"; + after = [ "systemd-udev-settle.service" ]; requiredBy = lib.mkMerge [ (lib.mkIf config.virtualisation.docker.enable [ "docker.service" ]) (lib.mkIf config.virtualisation.podman.enable [ "podman.service" ]) @@ -297,44 +298,6 @@ serviceConfig = { RuntimeDirectory = "cdi"; RemainAfterExit = true; - ExecStartPre = pkgs.writeShellScript "wait-for-nvidia-devices" '' - set -eu - - gpus_dir="/proc/driver/nvidia/gpus" - max_wait_seconds=60 - - if [ ! -d "$gpus_dir" ]; then - echo "wait-for-nvidia-devices: $gpus_dir does not exist; nothing to wait for." - exit 0 - fi - - gpu_count=$(find "$gpus_dir" -mindepth 1 -maxdepth 1 -type d 2>/dev/null | wc -l | tr -d ' ') - - if [ "$gpu_count" -eq 0 ]; then - echo "wait-for-nvidia-devices: no GPU entries found in $gpus_dir; nothing to wait for." - exit 0 - fi - - echo "wait-for-nvidia-devices: expecting $gpu_count /dev/nvidiaN device node(s)." - - elapsed=0 - while true; do - dev_count=$(find /dev -mindepth 1 -maxdepth 1 -type c -regex '.*/nvidia[0-9]+' 2>/dev/null | wc -l | tr -d ' ') - - if [ "$dev_count" -eq "$gpu_count" ]; then - echo "wait-for-nvidia-devices: found $dev_count matching device node(s)." - exit 0 - fi - - if [ "$elapsed" -ge "$max_wait_seconds" ]; then - echo "wait-for-nvidia-devices: timed out after $max_wait_seconds seconds; expected $gpu_count node(s) but found $dev_count." >&2 - exit 1 - fi - - sleep 1 - elapsed=$((elapsed + 1)) - done - ''; ExecStart = let script = pkgs.callPackage ./cdi-generate.nix { diff --git a/nixos/modules/services/monitoring/grafana-image-renderer.nix b/nixos/modules/services/monitoring/grafana-image-renderer.nix index 57c4f377f440..759006ec52b8 100644 --- a/nixos/modules/services/monitoring/grafana-image-renderer.nix +++ b/nixos/modules/services/monitoring/grafana-image-renderer.nix @@ -2,97 +2,178 @@ lib, pkgs, config, + utils, ... }: let cfg = config.services.grafana-image-renderer; - format = pkgs.formats.json { }; + format = { + type = + with lib.types; + attrsOf ( + attrsOf (oneOf [ + str + int + bool + (listOf (oneOf [ + str + int + ])) + ]) + ); - configFile = format.generate "grafana-image-renderer-config.json" cfg.settings; + generate = lib.flip lib.pipe [ + # Remove legacy option prefixes that only exist for backwards-compat + (lib.flip builtins.removeAttrs [ + "service" + "rendering" + "assertions" + "warnings" + ]) + + # Normalize CLI args from a nested attr-set to `section.option = value` + (lib.concatMapAttrs (block: lib.mapAttrs' (option: lib.nameValuePair "${block}.${option}"))) + + # Turn attr-set into a list of arguments, denormalize list options. + (lib.mapAttrsToList ( + option: value: + if lib.isBool value then + lib.optional value "--${option}" + else if lib.isList value then + map (v: [ + "--${option}" + v + ]) value + else + [ + "--${option}" + (toString value) + ] + )) + lib.flatten + + # Turn into a string + utils.escapeSystemdExecArgs + ]; + }; in { + imports = [ + (lib.mkChangedOptionModule + [ + "services" + "grafana-image-renderer" + "chromium" + ] + [ + "services" + "grafana-image-renderer" + "settings" + "browser" + "path" + ] + (config: lib.getExe config.services.grafana-image-renderer.chromium) + ) + (lib.mkRemovedOptionModule + [ + "services" + "grafana-image-renderer" + "verbose" + ] + '' + Use `services.grafana-image-renderer.settings.log.level = "debug"` instead. + '' + ) + ]; + options.services.grafana-image-renderer = { enable = lib.mkEnableOption "grafana-image-renderer"; - chromium = lib.mkOption { - type = lib.types.package; - description = '' - The chromium to use for image rendering. - ''; - }; - - verbose = lib.mkEnableOption "verbosity for the service"; - provisionGrafana = lib.mkEnableOption "Grafana configuration for grafana-image-renderer"; settings = lib.mkOption { type = lib.types.submodule { freeformType = format.type; + imports = [ + ../../misc/assertions.nix + (lib.mkRenamedOptionModule + [ + "rendering" + "width" + ] + [ + "browser" + "min-width" + ] + ) + (lib.mkRenamedOptionModule + [ + "rendering" + "height" + ] + [ + "browser" + "min-height" + ] + ) + (lib.mkRenamedOptionModule + [ + "rendering" + "args" + ] + [ + + "browser" + "flag" + ] + ) + (lib.mkChangedOptionModule + [ + "service" + "port" + ] + [ + "server" + "addr" + ] + (config: "0.0.0.0:${toString config.service.port}") + ) + (lib.mkRemovedOptionModule + [ + "rendering" + "mode" + ] + '' + This option is obsolete. + '' + ) + (lib.mkRenamedOptionModule + [ + "service" + "logging" + ] + [ + "log" + ] + ) + ]; options = { - service = { - port = lib.mkOption { - type = lib.types.port; - default = 8081; - description = '' - The TCP port to use for the rendering server. - ''; - }; - logging.level = lib.mkOption { - type = lib.types.enum [ - "error" - "warning" - "info" - "debug" - ]; - default = "info"; - description = '' - The log-level of the {file}`grafana-image-renderer.service`-unit. - ''; - }; + server.addr = lib.mkOption { + type = lib.types.str; + default = "localhost:8081"; + description = '' + Listen address of the service. + ''; }; - rendering = { - width = lib.mkOption { - default = 1000; - type = lib.types.ints.positive; - description = '' - Width of the PNG used to display the alerting graph. - ''; - }; - height = lib.mkOption { - default = 500; - type = lib.types.ints.positive; - description = '' - Height of the PNG used to display the alerting graph. - ''; - }; - mode = lib.mkOption { - default = "default"; - type = lib.types.enum [ - "default" - "reusable" - "clustered" - ]; - description = '' - Rendering mode of `grafana-image-renderer`: - - - `default:` Creates on browser-instance - per rendering request. - - `reusable:` One browser instance - will be started and reused for each rendering request. - - `clustered:` allows to precisely - configure how many browser-instances are supposed to be used. The values - for that mode can be declared in `rendering.clustering`. - ''; - }; - args = lib.mkOption { - type = lib.types.listOf lib.types.str; - default = [ "--no-sandbox" ]; - description = '' - List of CLI flags passed to `chromium`. - ''; - }; + browser.path = lib.mkOption { + type = lib.types.path; + default = lib.getExe pkgs.chromium; + defaultText = lib.literalExpression "lib.getExe pkgs.chromium"; + description = '' + Path to the executable of the chromium to use. + ''; }; }; }; @@ -101,9 +182,6 @@ in description = '' Configuration attributes for `grafana-image-renderer`. - - See - for supported values. ''; }; }; @@ -120,39 +198,53 @@ in ]; services.grafana.settings.rendering = lib.mkIf cfg.provisionGrafana { - server_url = "http://localhost:${toString cfg.settings.service.port}/render"; + server_url = "http://${toString cfg.settings.server.addr}/render"; callback_url = "http://${config.services.grafana.settings.server.http_addr}:${toString config.services.grafana.settings.server.http_port}"; }; - services.grafana-image-renderer.chromium = lib.mkDefault pkgs.chromium; - services.grafana-image-renderer.settings = { - rendering = lib.mapAttrs (lib.const lib.mkDefault) { - chromeBin = "${cfg.chromium}/bin/chromium"; - verboseLogging = cfg.verbose; - timezone = config.time.timeZone; - }; - - service = { - logging.level = lib.mkIf cfg.verbose (lib.mkDefault "debug"); - metrics.enabled = lib.mkDefault false; - }; + browser.timezone = lib.mkIf (config.time.timeZone != null) (lib.mkDefault config.time.timeZone); }; systemd.services.grafana-image-renderer = { wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; + wants = [ "network-online.target" ]; + after = [ "network-online.target" ]; description = "Grafana backend plugin that handles rendering of panels & dashboards to PNGs using headless browser (Chromium/Chrome)"; - environment = { - PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = "true"; - }; - serviceConfig = { DynamicUser = true; PrivateTmp = true; - ExecStart = "${pkgs.grafana-image-renderer}/bin/grafana-image-renderer server --config=${configFile}"; + ExecStart = "${lib.getExe pkgs.grafana-image-renderer} server ${format.generate cfg.settings}"; Restart = "always"; + AmbientCapabilities = ""; + CapabilityBoundingSet = ""; + LockPersonality = true; + MountAPIVFS = true; + NoNewPrivileges = true; + PrivateDevices = true; + PrivateMounts = true; + PrivateUsers = true; + ProtectClock = true; + ProtectControlGroups = "strict"; + ProtectHome = true; + ProtectHostname = true; + ProtectKernelLogs = true; + ProtectKernelModules = true; + ProtectKernelTunables = true; + ProtectProc = "invisible"; + ProtectSystem = "full"; + RemoveIPC = true; + RestrictAddressFamilies = [ + "AF_UNIX" + "AF_INET" + "AF_INET6" + ]; + RestrictNamespaces = true; + RestrictRealtime = true; + RestrictSUIDSGID = true; + SystemCallArchitectures = "native"; + UMask = 27; }; }; }; diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index 46da20bec8ad..edcfc592d0d1 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -1267,7 +1267,7 @@ in No IP addresses are being tracked, only simple counters to track running instances, versions, dashboard and error counts. Counters are sent every 24 hours. ''; - default = true; + default = false; type = types.bool; }; diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index f8c356cbe0ea..c866f1b7c062 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -120,7 +120,8 @@ let ++ (lib.optional ( cfg.config.objectstore.s3.sseCKeyFile != null ) "s3_sse_c_key:${cfg.config.objectstore.s3.sseCKeyFile}") - ++ (lib.optional (cfg.secretFile != null) "secret_file:${cfg.secretFile}"); + ++ (lib.optional (cfg.secretFile != null) "secret_file:${cfg.secretFile}") + ++ (lib.mapAttrsToList (credential: file: "${credential}:${file}") cfg.secrets); requiresRuntimeSystemdCredentials = (lib.length runtimeSystemdCredentials) != 0; @@ -296,6 +297,9 @@ let ) "'dbtableprefix' => '${toString c.dbtableprefix}',"} ${lib.optionalString (c.dbpassFile != null) "'dbpassword' => nix_read_secret('dbpass'),"} 'dbtype' => '${c.dbtype}', + ${lib.concatStringsSep "\n" ( + lib.mapAttrsToList (name: credential: "'${name}' => nix_read_secret('${name}'),") cfg.secrets + )} ${objectstoreConfig} ]; @@ -390,6 +394,24 @@ in ''; example = "/mnt/nextcloud-file"; }; + secrets = lib.mkOption { + type = lib.types.attrsOf ( + lib.types.pathWith { + inStore = false; + absolute = true; + } + ); + default = { }; + description = '' + Secret files to read into entries in `config.php`. + This uses `nix_read_secret` and LoadCredential to read the contents of the file into the entry in `config.php`. + ''; + example = lib.literalExpression '' + { + oidc_login_client_secret = "/run/secrets/nextcloud_oidc_secret"; + } + ''; + }; extraApps = lib.mkOption { type = lib.types.attrsOf lib.types.package; default = { }; @@ -957,6 +979,144 @@ in Only has an effect in Nextcloud 23 and later. ''; }; + enabledPreviewProviders = lib.mkOption { + type = lib.types.listOf lib.types.str; + default = [ + "OC\\Preview\\PNG" + "OC\\Preview\\JPEG" + "OC\\Preview\\GIF" + "OC\\Preview\\BMP" + "OC\\Preview\\XBitmap" + "OC\\Preview\\Krita" + "OC\\Preview\\WebP" + "OC\\Preview\\MarkDown" + "OC\\Preview\\TXT" + "OC\\Preview\\OpenDocument" + ]; + description = '' + The preview providers that should be explicitly enabled. + ''; + }; + mail_domain = lib.mkOption { + type = lib.types.nullOr lib.types.str; + default = null; + description = '' + The return address that you want to appear on emails sent by the Nextcloud server, for example `nc-admin@example.com`, substituting your own domain, of course. + ''; + }; + mail_from_address = lib.mkOption { + type = lib.types.nullOr lib.types.str; + default = null; + description = '' + FROM address that overrides the built-in `sharing-noreply` and `lostpassword-noreply` FROM addresses. + Defaults to different FROM addresses depending on the feature. + ''; + }; + mail_smtpdebug = lib.mkOption { + type = lib.types.bool; + default = false; + description = '' + Enable SMTP class debugging. + `loglevel` will likely need to be adjusted too. + [See docs](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/email_configuration.html#enabling-debug-mode). + ''; + }; + mail_smtpmode = lib.mkOption { + type = lib.types.enum [ + "sendmail" + "smtp" + "qmail" + "null" # Yes, this is really a string null and not null. + ]; + default = "smtp"; + description = '' + Which mode to use for sending mail. + If you are using local or remote SMTP, set this to `smtp`. + For the `sendmail` option, you need an installed and working email system on the server, with your local `sendmail` installation. + For `qmail`, the binary is /var/qmail/bin/sendmail, and it must be installed on your Unix system. + Use the string null to send no mails (disable mail delivery). This can be useful if mails should be sent via APIs and rendering messages is not necessary. + ''; + }; + mail_smtphost = lib.mkOption { + type = lib.types.str; + default = "127.0.0.1"; + description = '' + This depends on `mail_smtpmode`. Specify the IP address of your mail server host. This may contain multiple hosts separated by a semicolon. If you need to specify the port number, append it to the IP address separated by a colon, like this: `127.0.0.1:24`. + ''; + }; + mail_smtpport = lib.mkOption { + type = lib.types.port; + default = 25; + description = '' + This depends on `mail_smtpmode`. Specify the port for sending mail. + ''; + }; + mail_smtptimeout = lib.mkOption { + type = lib.types.int; + default = 10; + description = '' + This depends on `mail_smtpmode`. This sets the SMTP server timeout, in seconds. You may need to increase this if you are running an anti-malware or spam scanner. + ''; + }; + mail_smtpsecure = lib.mkOption { + type = lib.types.enum [ + "" + "ssl" + ]; + default = ""; + description = '' + This depends on `mail_smtpmode`. Specify `ssl` when you are using SSL/TLS. Any other value will be ignored. + If the server advertises STARTTLS capabilities, they might be used, but they cannot be enforced by this config option. + ''; + }; + mail_smtpauth = lib.mkOption { + type = lib.types.bool; + default = false; + description = '' + This depends on `mail_smtpmode`. Change this to `true` if your mail server requires authentication. + ''; + }; + mail_smtpname = lib.mkOption { + type = lib.types.str; + default = ""; + description = '' + This depends on `mail_smtpauth`. Specify the username for authenticating to the SMTP server. + ''; + }; + # mail_smtppassword is skipped as it must be set through services.nextcloud.secrets + mail_template_class = lib.mkOption { + type = lib.types.str; + default = "\\OC\\Mail\\EMailTemplate"; + description = '' + Replaces the default mail template layout. This can be utilized if the options to modify the mail texts with the theming app are not enough. + The class must extend `\OC\Mail\EMailTemplate` + ''; + }; + mail_send_plaintext_only = lib.mkOption { + type = lib.types.bool; + default = false; + description = '' + Email will be sent by default with an HTML and a plain text body. This option allows sending only plain text emails. + ''; + }; + mail_smtpstreamoptions = lib.mkOption { + type = lib.types.listOf lib.types.str; + default = [ ]; + description = '' + This depends on `mail_smtpmode`. Array of additional streams options that will be passed to underlying Swift mailer implementation. + ''; + }; + mail_sendmailmode = lib.mkOption { + type = lib.types.enum [ + "smtp" + "pipe" + ]; + default = "smtp"; + description = '' + For `smtp`, the sendmail binary is started with the parameter `-bs`: Use the SMTP protocol on standard input and output. + For `pipe`, the binary is started with the parameters `-t`: Read message from STDIN and extract recipients. + ''; + }; }; }; default = { }; @@ -1026,6 +1186,8 @@ in The value can be customized for `nextcloud-cron.service` using this option. ''; }; + + imaginary.enable = lib.mkEnableOption "Imaginary"; }; config = lib.mkIf cfg.enable ( @@ -1145,6 +1307,13 @@ in If `services.nextcloud.config.adminpassFile` is null, `services.nextcloud.config.adminuser` must be null as well in order to disable initial admin user creation. ''; } + { + assertion = !(cfg.settings ? mail_smtppassword); + message = '' + The option `services.nextcloud.settings.mail_smtppassword` must not be used, as it puts the password into the world-readable nix store. + Use `services.nextcloud.secrets.mail_smtppassword` instead and set it to a file containing the password. + ''; + } ]; } @@ -1462,6 +1631,20 @@ in port = 0; }; }) + # https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#previews + (lib.mkIf cfg.imaginary.enable { + preview_imaginary_url = "http://${config.services.imaginary.address}:${toString config.services.imaginary.port}"; + + # Imaginary replaces a few of the built-in providers, so the default value has to be adjusted. + enabledPreviewProviders = lib.mkDefault [ + "OC\\Preview\\Imaginary" + "OC\\Preview\\ImaginaryPDF" + "OC\\Preview\\Krita" + "OC\\Preview\\MarkDown" + "OC\\Preview\\TXT" + "OC\\Preview\\OpenDocument" + ]; + }) ]; }; @@ -1594,6 +1777,13 @@ in ''} ''; }; + + services.imaginary = lib.mkIf cfg.imaginary.enable { + enable = true; + # add -return-size flag recommend by Nextcloud + # https://github.com/h2non/imaginary/pull/382 + settings.return-size = true; + }; } ] ); diff --git a/nixos/tests/nextcloud/basic.nix b/nixos/tests/nextcloud/basic.nix index 276465716617..6062e198269c 100644 --- a/nixos/tests/nextcloud/basic.nix +++ b/nixos/tests/nextcloud/basic.nix @@ -63,8 +63,11 @@ runTest ( }; phpExtraExtensions = all: [ all.bz2 ]; nginx.enableFastcgiRequestBuffering = true; + secrets.mysecret = "/etc/nextcloud/mysecretfile"; }; + environment.etc."nextcloud/mysecretfile".text = "foobar"; + specialisation.withoutMagick.configuration = { services.nextcloud.enableImagemagick = false; }; @@ -116,6 +119,9 @@ runTest ( client_hash = client.succeed("nix-hash testfile.bin").strip() nextcloud_hash = nextcloud.succeed("nix-hash /var/lib/nextcloud-data/data/root/files/testfile.bin").strip() t.assertEqual(client_hash, nextcloud_hash) + + with subtest("secrets"): + assert "foobar" == nextcloud.succeed("nextcloud-occ config:system:get mysecret").strip() ''; } ) diff --git a/nixos/tests/nextcloud/default.nix b/nixos/tests/nextcloud/default.nix index f452a4bf1218..72f7a28070b5 100644 --- a/nixos/tests/nextcloud/default.nix +++ b/nixos/tests/nextcloud/default.nix @@ -75,8 +75,7 @@ let inherit (config) test-helpers; in mkBefore '' - nextcloud.start() - client.start() + start_all() nextcloud.wait_for_unit("multi-user.target") ${test-helpers.init} @@ -136,6 +135,7 @@ let ./with-mysql-and-memcached.nix ./with-postgresql-and-redis.nix ./with-objectstore.nix + ./with-mail.nix ] ++ (pkgs.lib.optional (version >= 32) ./without-admin-user.nix) ); diff --git a/nixos/tests/nextcloud/with-mail.nix b/nixos/tests/nextcloud/with-mail.nix new file mode 100644 index 000000000000..24f1ef283056 --- /dev/null +++ b/nixos/tests/nextcloud/with-mail.nix @@ -0,0 +1,100 @@ +{ + name, + pkgs, + testBase, + system, + ... +}: +with import ../../lib/testing-python.nix { inherit system pkgs; }; +runTest ( + { config, lib, ... }: + let + certs = import ../common/acme/server/snakeoil-certs.nix; + domain = certs.domain; + in + { + inherit name; + + meta.maintainers = lib.teams.nextcloud.members; + + imports = [ testBase ]; + + nodes = { + nextcloud = + { + config, + pkgs, + nodes, + ... + }: + { + security.pki.certificateFiles = [ certs.ca.cert ]; + + networking.extraHosts = '' + ${nodes.stalwart.networking.primaryIPAddress} ${domain} + ''; + + environment.etc."nextcloud/mail_smtppassword".text = "foobar"; + + services.nextcloud = { + config.dbtype = "sqlite"; + + settings = { + mail_from_address = "alice"; + mail_domain = domain; + mail_smtpmode = "smtp"; + mail_smtphost = domain; + mail_smtpport = 587; + mail_smtpauth = true; + mail_smtpname = "alice"; + mail_send_plaintext_only = true; + }; + + secrets.mail_smtppassword = "/etc/nextcloud/mail_smtppassword"; + }; + }; + + stalwart = + { pkgs, ... }: + { + imports = [ ../stalwart/stalwart-mail-config.nix ]; + + networking.firewall.allowedTCPPorts = [ 587 ]; + + environment.systemPackages = [ + (pkgs.writers.writePython3Bin "test-imap-read" { } '' + from imaplib import IMAP4 + + with IMAP4('localhost') as imap: + imap.starttls() + status, [caps] = imap.login('bob', 'foobar') + assert status == 'OK' + imap.select() + status, [ref] = imap.search(None, 'ALL') + assert status == 'OK' + [msgId] = ref.split() + status, msg = imap.fetch(msgId, 'BODY[TEXT]') + assert status == 'OK' + assert (msg[0][1].strip() + == (b'Well done, ${config.adminuser}!\r\n\r\n' + b'If you received this email, the email configuration ' + b's=\r\neems to be correct.\r\n\r\n\r\n--=20\r\n' + b'Nextcloud - a safe home for all your data=\r\n\r\n' + b'This is an automatically sent email, please do not reply.')) + '') + ]; + }; + }; + + test-helpers.init = '' + stalwart.wait_for_unit("multi-user.target") + stalwart.wait_until_succeeds("nc -vzw 2 localhost 587") + + nextcloud.succeed("nc -vzw 2 ${domain} 587") + nextcloud.succeed("curl -sS --fail-with-body -u ${config.adminuser}:${config.adminpass} -H 'OCS-APIRequest: true' -X PUT http://nextcloud/ocs/v2.php/cloud/users/${config.adminuser} -H 'Content-Type: application/json' --data-raw '{\"key\":\"email\",\"value\":\"bob@${domain}\"}'") + nextcloud.succeed("curl -sS --fail-with-body -u ${config.adminuser}:${config.adminpass} -H 'OCS-APIRequest: true' -X POST http://nextcloud/settings/admin/mailtest") + + stalwart.succeed("test-imap-read") + ''; + } +) diff --git a/nixos/tests/nextcloud/with-objectstore.nix b/nixos/tests/nextcloud/with-objectstore.nix index c652df46b1c4..44777d6d8ac0 100644 --- a/nixos/tests/nextcloud/with-objectstore.nix +++ b/nixos/tests/nextcloud/with-objectstore.nix @@ -111,7 +111,6 @@ runTest ( }; test-helpers.init = '' - minio.start() minio.wait_for_open_port(9000) minio.wait_for_unit("nginx.service") minio.wait_for_open_port(443) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 3277398a67af..5bbcd9c4f20f 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -4337,6 +4337,8 @@ let meta.license = lib.licenses.lgpl3Only; }; + sourcegraph.amp = callPackage ./sourcegraph.amp { }; + sourcery.sourcery = callPackage ./sourcery.sourcery { }; spywhere.guides = buildVscodeMarketplaceExtension { diff --git a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix index 18e74ecc1621..c537b0b49307 100644 --- a/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix +++ b/pkgs/applications/editors/vscode/extensions/saoudrizwan.claude-dev/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-dev"; publisher = "saoudrizwan"; - version = "3.37.1"; - hash = "sha256-wS893/I6uc6aUy2chPYCTdG7PzLl5tqx8dhMDasmtYA="; + version = "3.38.1"; + hash = "sha256-j3hRW7l+PEq7DJbXENO5Plbg3SePZm1lX60Y4B5RvYs="; }; meta = { diff --git a/pkgs/applications/editors/vscode/extensions/sourcegraph.amp/default.nix b/pkgs/applications/editors/vscode/extensions/sourcegraph.amp/default.nix new file mode 100644 index 000000000000..b8d22ee338a6 --- /dev/null +++ b/pkgs/applications/editors/vscode/extensions/sourcegraph.amp/default.nix @@ -0,0 +1,21 @@ +{ + lib, + vscode-utils, +}: + +vscode-utils.buildVscodeMarketplaceExtension { + mktplcRef = { + publisher = "sourcegraph"; + name = "amp"; + version = "0.0.1763727068"; + hash = "sha256-rbL0i6JS/I59NiOlkt6v3GVea4vLyzN7BMFYkbDpWho="; + }; + + meta = { + description = "Amp is a frontier coding agent for your editor and terminal, built by Sourcegraph."; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=sourcegraph.amp"; + homepage = "https://ampcode.com/"; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.katexochen ]; + }; +} diff --git a/pkgs/applications/networking/browsers/chromium/info.json b/pkgs/applications/networking/browsers/chromium/info.json index 41a21e4a61c5..f748e92928b3 100644 --- a/pkgs/applications/networking/browsers/chromium/info.json +++ b/pkgs/applications/networking/browsers/chromium/info.json @@ -813,7 +813,7 @@ } }, "ungoogled-chromium": { - "version": "142.0.7444.162", + "version": "142.0.7444.175", "deps": { "depot_tools": { "rev": "675a3a9ccd7cf9367bb4caa58c30f08b56d45ef5", @@ -825,16 +825,16 @@ "hash": "sha256-sm5GWbkm3ua7EkCWTuY4TG6EXKe3asXTrH1APnNARJQ=" }, "ungoogled-patches": { - "rev": "142.0.7444.162-1", - "hash": "sha256-/XWaUmNyr5SWgPB8MqgbNbbMneIYECW6nXrgloeW90A=" + "rev": "142.0.7444.175-1", + "hash": "sha256-QN7G9LdflMa2Rg9bPFrmT1mgOfM+2ZlBc4GDamkf8J0=" }, "npmHash": "sha256-i1eQ4YlrWSgY522OlFtGDDPmxE2zd1hDM03AzR8RafE=" }, "DEPS": { "src": { "url": "https://chromium.googlesource.com/chromium/src.git", - "rev": "c076baf266c3ed5efb225de664cfa7b183668ad6", - "hash": "sha256-HdVZl4Zvspgm/9wy+WtDc1UiSM1VrszfwpITQchYoSc=", + "rev": "302067f14a4ea3f42001580e6101fa25ed343445", + "hash": "sha256-2x1IpfD0BXDaPKwdBO4+t8Dw7dYLM7oQDlrXY57tFIw=", "recompress": true }, "src/third_party/clang-format/script": { @@ -1619,8 +1619,8 @@ }, "src/v8": { "url": "https://chromium.googlesource.com/v8/v8.git", - "rev": "9210361d0a26fa4afefad8c5e60c85e59c5e2c8e", - "hash": "sha256-otYRT8scmJ9boG2PKXRacL0C5FFwOVctKK/Dh7WG0tU=" + "rev": "baea8d627b70725fb777ebc1074f8ec4110ef6cb", + "hash": "sha256-jECAfgeAgdkhbI/8BgT9TakR9Ylha2zPznjZzibPQbE=" } } } diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 6485986cad18..1f9a7045e74a 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1192,13 +1192,13 @@ "vendorHash": "sha256-MIO0VHofPtKPtynbvjvEukMNr5NXHgk7BqwIhbc9+u0=" }, "selectel_selectel": { - "hash": "sha256-qGqoljx5G7fmqrnhfVll+hX1afR3+3blcY1Hob5ujYY=", + "hash": "sha256-x1vYsdBNYdBhgMSE/x3jCzsiqNXDF3oVnskGOsTBit4=", "homepage": "https://registry.terraform.io/providers/selectel/selectel", "owner": "selectel", "repo": "terraform-provider-selectel", - "rev": "v7.1.0", + "rev": "v7.2.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-K70gvX9XcMoDCNQk9k7dtBBQxYSiS3TkqGBxMK3pOK0=" + "vendorHash": "sha256-YX2+JGqS9q9Scl3wjfmqEfT4/alD9Gt8B5OjoYIldCQ=" }, "siderolabs_talos": { "hash": "sha256-PPD4blyXt4/IalzwEn4+lvuD1Qx7VuUD/CUJILDRI5k=", diff --git a/pkgs/by-name/al/alsa-utils/package.nix b/pkgs/by-name/al/alsa-utils/package.nix index d9d0c959583e..b137ca9c9aee 100644 --- a/pkgs/by-name/al/alsa-utils/package.nix +++ b/pkgs/by-name/al/alsa-utils/package.nix @@ -12,6 +12,7 @@ libsamplerate, pciutils, procps, + tree, which, fftw, pipewire, @@ -64,8 +65,9 @@ stdenv.mkDerivation (finalAttrs: { which pciutils procps + tree ] - }" + }" --prefix PATH : $out/bin for program in $out/bin/*; do wrapProgram "$program" --set-default ALSA_PLUGIN_DIR "${plugin-dir}" done diff --git a/pkgs/by-name/al/althttpd/package.nix b/pkgs/by-name/al/althttpd/package.nix index 2dd7f0439dcb..ecabafa8cfcb 100644 --- a/pkgs/by-name/al/althttpd/package.nix +++ b/pkgs/by-name/al/althttpd/package.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { pname = "althttpd"; - version = "unstable-2023-08-12"; + version = "0-unstable-2023-08-12"; src = fetchfossil { url = "https://sqlite.org/althttpd/"; diff --git a/pkgs/by-name/ap/apachetomcatscanner/package.nix b/pkgs/by-name/ap/apachetomcatscanner/package.nix index 63d5f87109f9..655690e31c66 100644 --- a/pkgs/by-name/ap/apachetomcatscanner/package.nix +++ b/pkgs/by-name/ap/apachetomcatscanner/package.nix @@ -6,14 +6,14 @@ python3.pkgs.buildPythonApplication rec { pname = "apachetomcatscanner"; - version = "3.8.0"; + version = "3.8.2"; pyproject = true; src = fetchFromGitHub { owner = "p0dalirius"; repo = "ApacheTomcatScanner"; tag = version; - hash = "sha256-gMyJClEE/i8AKHcSyvvMPwCooLwl/hvcRZgZqF59RUY="; + hash = "sha256-9gaue/XfxtU+5URYfg+uYaNcx8G3Eu9DgVEpj/lk8TY="; }; # Posted a PR for discussion upstream that can be followed: diff --git a/pkgs/by-name/bl/blender/fix-hip-path.patch b/pkgs/by-name/bl/blender/fix-hip-path.patch new file mode 100644 index 000000000000..8d28dc3441fa --- /dev/null +++ b/pkgs/by-name/bl/blender/fix-hip-path.patch @@ -0,0 +1,25 @@ +commit 0c7159ed66e28b4da4275cd79e01b2d0669808a3 (HEAD -> fix-hip-path-syntax-error, amarshall/fix-hip-path-syntax-error) +Author: Andrew Marshall +Date: Thu Nov 20 20:24:20 2025 -0500 + + Fix: Incorrect HIP load path on Linux + + Missing comma meant the following line was concatenated with this one, + causing the path to be + "/opt/rocm/hip/lib/libamdhip64.so.6libamdhip64.so.7". + + Broken in 14bd7a531feddb81a0e522b7db76288639f1ad05. + +diff --git a/extern/hipew/src/hipew.c b/extern/hipew/src/hipew.c +index 3ce13ef7c32..e72ccde69ef 100644 +--- a/extern/hipew/src/hipew.c ++++ b/extern/hipew/src/hipew.c +@@ -244,7 +244,7 @@ static int hipewHipInit(void) { + const char* hip_paths[] = { "libamdhip64.so", + "libamdhip64.so.6", + "/opt/rocm/lib/libamdhip64.so.6", +- "/opt/rocm/hip/lib/libamdhip64.so.6" ++ "/opt/rocm/hip/lib/libamdhip64.so.6", + "libamdhip64.so.7", + "/opt/rocm/lib/libamdhip64.so.7", + "/opt/rocm/hip/lib/libamdhip64.so.7", diff --git a/pkgs/by-name/bl/blender/package.nix b/pkgs/by-name/bl/blender/package.nix index c5ca3d1f982f..f9453a6d40e2 100644 --- a/pkgs/by-name/bl/blender/package.nix +++ b/pkgs/by-name/bl/blender/package.nix @@ -69,6 +69,7 @@ pugixml, python3Packages, # must use instead of python3.pkgs, see https://github.com/NixOS/nixpkgs/issues/211340 rocmPackages, # comes with a significantly larger closure size + rubberband, runCommand, shaderc, spaceNavSupport ? stdenv.hostPlatform.isLinux, @@ -116,14 +117,18 @@ in stdenv'.mkDerivation (finalAttrs: { pname = "blender"; - version = "4.5.4"; + version = "5.0.0"; src = fetchzip { name = "source"; url = "https://download.blender.org/source/blender-${finalAttrs.version}.tar.xz"; - hash = "sha256-/cYMCWgojkO1mqzJ4BZwbwXPuBmg66T+gzpEuLiOskY="; + hash = "sha256-UUHsylDmMWRcr1gGiXuYnno7D6uMjLqTYd9ak4FnZis="; }; + patches = [ + ./fix-hip-path.patch # https://projects.blender.org/blender/blender/pulls/150321 + ]; + postPatch = (lib.optionalString stdenv.hostPlatform.isDarwin '' : > build_files/cmake/platform/platform_apple_xcode.cmake @@ -263,6 +268,7 @@ stdenv'.mkDerivation (finalAttrs: { pugixml python3 python3Packages.materialx + rubberband zlib zstd ] diff --git a/pkgs/by-name/co/codex/package.nix b/pkgs/by-name/co/codex/package.nix index 9a3206d31c11..196fa19c6f69 100644 --- a/pkgs/by-name/co/codex/package.nix +++ b/pkgs/by-name/co/codex/package.nix @@ -14,18 +14,18 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "codex"; - version = "0.60.1"; + version = "0.61.0"; src = fetchFromGitHub { owner = "openai"; repo = "codex"; tag = "rust-v${finalAttrs.version}"; - hash = "sha256-VWvSMS7A8xi6n3RLvWphy8caqolYAaB51E9fyVb1ZNI="; + hash = "sha256-1DmnrRgwWNTkjG9DODUfLbz4ZYydhTapnv4yv9qOEmU="; }; sourceRoot = "${finalAttrs.src.name}/codex-rs"; - cargoHash = "sha256-F9YU77p7T7sfThP6R3HVOFN1pl05/myUMV6zVRcriHY="; + cargoHash = "sha256-9zZZG00TzovQBwhidWt2p84dkj8jU35+lSmNIPmDOZY="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/di/direwolf-unstable/package.nix b/pkgs/by-name/di/direwolf-unstable/package.nix index 416314a1512c..03a9887f25b6 100644 --- a/pkgs/by-name/di/direwolf-unstable/package.nix +++ b/pkgs/by-name/di/direwolf-unstable/package.nix @@ -12,13 +12,13 @@ inherit hamlibSupport gpsdSupport extraScripts; }).overrideAttrs (oldAttrs: { - version = "1.8-unstable-2025-11-07"; + version = "1.8.1-unstable-2025-11-16"; src = fetchFromGitHub { owner = "wb2osz"; repo = "direwolf"; - rev = "3658a878920803bbb69a4567579dcc4d6cb80a92"; - hash = "sha256-EcQrNN0nRxEfhJc3AbYkxlRaBKpoHQRrZbExYBankMk="; + rev = "694c95485b21c1c22bc4682703771dec4d7a374b"; + hash = "sha256-O2ycOQx4EVwdYGC9LTBlxheMFZp0ddHquSUwVsB5fco="; }; # drop upstreamed cmake-4 patch diff --git a/pkgs/by-name/en/enzyme/package.nix b/pkgs/by-name/en/enzyme/package.nix index 273b9283d5cb..1888d2e71d57 100644 --- a/pkgs/by-name/en/enzyme/package.nix +++ b/pkgs/by-name/en/enzyme/package.nix @@ -7,13 +7,13 @@ }: llvmPackages.stdenv.mkDerivation rec { pname = "enzyme"; - version = "0.0.215"; + version = "0.0.217"; src = fetchFromGitHub { owner = "EnzymeAD"; repo = "Enzyme"; rev = "v${version}"; - hash = "sha256-XK3d47Q/6+sJ2RL+on483z9PvZrdaKxIT9/GUQuLPl8="; + hash = "sha256-CKNwTuR0sP8U1TrFqZipZcymObMtpw4qrOkGqQn3GX0="; }; postPatch = '' diff --git a/pkgs/by-name/ex/exifprobe/package.nix b/pkgs/by-name/ex/exifprobe/package.nix index 9e4ba63a1175..ed4e2737f102 100644 --- a/pkgs/by-name/ex/exifprobe/package.nix +++ b/pkgs/by-name/ex/exifprobe/package.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { pname = "exifprobe"; - version = "unstable-2018-06-19"; + version = "2.0.1-unstable-2018-06-19"; src = fetchFromGitHub { owner = "hfiguiere"; diff --git a/pkgs/by-name/fm/fmtoy/2001-Build-against-system-installed-libvgm.patch b/pkgs/by-name/fm/fmtoy/2001-Build-against-system-installed-libvgm.patch new file mode 100644 index 000000000000..d580c855f300 --- /dev/null +++ b/pkgs/by-name/fm/fmtoy/2001-Build-against-system-installed-libvgm.patch @@ -0,0 +1,186 @@ +From bcaa94b1c6ccdbedcf7dfa15db98542af12aa46d Mon Sep 17 00:00:00 2001 +From: OPNA2608 +Date: Fri, 14 Nov 2025 21:54:21 +0100 +Subject: [PATCH] Build against system-installed libvgm + +--- + Makefile | 16 ++++++---------- + fmtoy_ym2151.c | 4 ++-- + fmtoy_ym2203.c | 4 ++-- + fmtoy_ym2608.c | 4 ++-- + fmtoy_ym2610.c | 4 ++-- + fmtoy_ym2610b.c | 4 ++-- + fmtoy_ym2612.c | 4 ++-- + fmtoy_ym3812.c | 4 ++-- + fmtoy_ymf262.c | 4 ++-- + 9 files changed, 22 insertions(+), 26 deletions(-) + +diff --git a/Makefile b/Makefile +index 32f6421..3aa2af9 100644 +--- a/Makefile ++++ b/Makefile +@@ -2,7 +2,7 @@ CC?=gcc + AR?=ar + CFLAGS?=-ggdb -Wall + ifndef EMSCRIPTEN +- CFLAGS+=$(shell pkg-config alsa jack --cflags) ++ CFLAGS+=$(shell pkg-config alsa jack vgm-emu --cflags) + endif + + EMLDFLAGS?= \ +@@ -38,19 +38,19 @@ endif + libfmtoy.a: fmtoy.o fmtoy_ym2151.o fmtoy_ym2203.o fmtoy_ym2608.o fmtoy_ym2610.o fmtoy_ym2610b.o fmtoy_ym2612.o fmtoy_ym3812.o fmtoy_ymf262.o + $(AR) cr $@ $^ + +-fmtoy_jack: fmtoy_jack.o cmdline.o tools.o libfmtoy.a libfmvoice/libfmvoice.a midilib/libmidi.a libvgm/build/bin/libvgm-emu.a +- $(CC) $^ -o $@ $(LIBS) $(shell pkg-config alsa jack --libs) ++fmtoy_jack: fmtoy_jack.o cmdline.o tools.o libfmtoy.a libfmvoice/libfmvoice.a midilib/libmidi.a ++ $(CC) $^ -o $@ $(LIBS) $(shell pkg-config alsa jack vgm-emu --libs) + +-fmtowWasm.wasm fmtoyWasm.js: glue.o libfmtoy.a libfmvoice/libfmvoice.a libvgm/$(LIBVGM_BUILD_DIR)/bin/libvgm-emu.a ++fmtowWasm.wasm fmtoyWasm.js: glue.o libfmtoy.a libfmvoice/libfmvoice.a + $(CC) $^ -s WASM=1 -s EXPORT_ES6=1 -s MODULARIZE=1 $(EMLDFLAGS) -o $@ + sed -i '1s/^/\/* eslint-disable *\/ /' $@ + +-fmtoyWorkletWasm.js: glue.o libfmtoy.a libfmvoice/libfmvoice.a libvgm/$(LIBVGM_BUILD_DIR)/bin/libvgm-emu.a ++fmtoyWorkletWasm.js: glue.o libfmtoy.a libfmvoice/libfmvoice.a + $(CC) $^ -s WASM=1 EXPORT_ES6=1 -s MODULARIZE=1 -s SINGLE_FILE=1 $(EMLDFLAGS) -o $@ + sed -i '1s/^/\/* eslint-disable *\/ /' $@ + sed -i "s/typeof window == 'object' || typeof importScripts == 'function'/1/g" $@ + +-fmtoyAsm.js: glue.o libfmtoy.a libfmvoice/libfmvoice.a libvgm/$(LIBVGM_BUILD_DIR)/bin/libvgm-emu.a ++fmtoyAsm.js: glue.o libfmtoy.a libfmvoice/libfmvoice.a + $(CC) $^ -s WASM=0 -s EXPORT_ES6=1 -s MODULARIZE=1 $(EMLDFLAGS) -o $@ + sed -i '1s/^/\/* eslint-disable *\/ /' $@ + +@@ -65,9 +65,6 @@ midilib/libmidi.a: + cd midilib && make libmidi.a + libfmvoice/libfmvoice.a: + cd libfmvoice && make libfmvoice.a +-libvgm/$(LIBVGM_BUILD_DIR)/bin/libvgm-emu.a: +- cd libvgm && cmake -B$(LIBVGM_BUILD_DIR) -DBUILD_LIBAUDIO=OFF -DBUILD_LIBPLAYER=OFF -DBUILD_PLAYER=OFF -DBUILD_VGM2WAV=OFF -DUTIL_LOADERS=OFF +- cd libvgm/$(LIBVGM_BUILD_DIR) && make vgm-emu + + %.o: %.c + $(CC) -MMD -c $< -o $@ $(CFLAGS) +@@ -78,4 +75,3 @@ clean: + rm -f *.o *.d *.a chips/*.o chips/*.d *.js *.wasm fmtoy_jack + cd libfmvoice && make clean + cd midilib && make clean +- cd libvgm && rm -rf build +diff --git a/fmtoy_ym2151.c b/fmtoy_ym2151.c +index 1e3678e..9332076 100644 +--- a/fmtoy_ym2151.c ++++ b/fmtoy_ym2151.c +@@ -1,7 +1,7 @@ + #include "fmtoy.h" + #include "fmtoy_ym2151.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + #include "tools.h" + + static int fmtoy_ym2151_init(struct fmtoy *fmtoy, int clock, int sample_rate, struct fmtoy_channel *channel) { +diff --git a/fmtoy_ym2203.c b/fmtoy_ym2203.c +index 19275ae..a7285fb 100644 +--- a/fmtoy_ym2203.c ++++ b/fmtoy_ym2203.c +@@ -1,7 +1,7 @@ + #include "fmtoy.h" + #include "fmtoy_ym2203.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + + static int fmtoy_ym2203_init(struct fmtoy *fmtoy, int clock, int sample_rate, struct fmtoy_channel *channel) { + channel->chip->clock = clock; +diff --git a/fmtoy_ym2608.c b/fmtoy_ym2608.c +index d149ce1..2449c5d 100644 +--- a/fmtoy_ym2608.c ++++ b/fmtoy_ym2608.c +@@ -1,7 +1,7 @@ + #include "fmtoy.h" + #include "fmtoy_ym2608.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + + static int fmtoy_ym2608_init(struct fmtoy *fmtoy, int clock, int sample_rate, struct fmtoy_channel *channel) { + channel->chip->clock = clock; +diff --git a/fmtoy_ym2610.c b/fmtoy_ym2610.c +index fcca9f4..c69c987 100644 +--- a/fmtoy_ym2610.c ++++ b/fmtoy_ym2610.c +@@ -1,7 +1,7 @@ + #include "fmtoy.h" + #include "fmtoy_ym2610.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + + static int fmtoy_ym2610_init(struct fmtoy *fmtoy, int clock, int sample_rate, struct fmtoy_channel *channel) { + channel->chip->clock = clock; +diff --git a/fmtoy_ym2610b.c b/fmtoy_ym2610b.c +index cd434c4..a4adfa4 100644 +--- a/fmtoy_ym2610b.c ++++ b/fmtoy_ym2610b.c +@@ -1,7 +1,7 @@ + #include "fmtoy.h" + #include "fmtoy_ym2610b.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + + static int fmtoy_ym2610b_init(struct fmtoy *fmtoy, int clock, int sample_rate, struct fmtoy_channel *channel) { + channel->chip->clock = clock; +diff --git a/fmtoy_ym2612.c b/fmtoy_ym2612.c +index 9a012db..e3de3d7 100644 +--- a/fmtoy_ym2612.c ++++ b/fmtoy_ym2612.c +@@ -1,7 +1,7 @@ + #include "fmtoy.h" + #include "fmtoy_ym2612.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + + static int fmtoy_ym2612_init(struct fmtoy *fmtoy, int clock, int sample_rate, struct fmtoy_channel *channel) { + channel->chip->clock = clock; +diff --git a/fmtoy_ym3812.c b/fmtoy_ym3812.c +index 391f81a..5d6bae1 100644 +--- a/fmtoy_ym3812.c ++++ b/fmtoy_ym3812.c +@@ -2,8 +2,8 @@ + + #include "fmtoy.h" + #include "fmtoy_ym3812.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + + static void fmwrite(DEVFUNC_WRITE_A8D8 writefn, void *dataPtr, uint8_t reg, uint8_t data) { + writefn(dataPtr, 0, reg); +diff --git a/fmtoy_ymf262.c b/fmtoy_ymf262.c +index 2bd1a1a..e281c2b 100644 +--- a/fmtoy_ymf262.c ++++ b/fmtoy_ymf262.c +@@ -1,7 +1,7 @@ + #include "fmtoy.h" + #include "fmtoy_ymf262.h" +-#include "libvgm/emu/SoundEmu.h" +-#include "libvgm/emu/SoundDevs.h" ++#include ++#include + + static void fmwrite(DEVFUNC_WRITE_A8D8 writefn, void *dataPtr, uint8_t reg, uint8_t data) { + writefn(dataPtr, 0, reg); +-- +2.51.0 + diff --git a/pkgs/by-name/fm/fmtoy/package.nix b/pkgs/by-name/fm/fmtoy/package.nix index 31a64eca4a0a..efa46f4d534f 100644 --- a/pkgs/by-name/fm/fmtoy/package.nix +++ b/pkgs/by-name/fm/fmtoy/package.nix @@ -6,6 +6,7 @@ alsa-lib, cmake, libjack2, + libvgm, pkg-config, zlib, }: @@ -22,10 +23,21 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-OiPKtFPlTxdMNSTLJXcXZkqjzUiGQKXSF2udHePBpho="; }; - postPatch = '' - substituteInPlace Makefile \ - --replace-fail 'pkg-config' "$PKG_CONFIG" - ''; + patches = [ + # Build against our libvgm + ./2001-Build-against-system-installed-libvgm.patch + ]; + + postPatch = + # We don't want to use this libvgm, make sure it can't be referenced by accident + '' + rm -r libvgm + '' + # Fix cross by using pkg-config for hostPlatform packages + + '' + substituteInPlace Makefile \ + --replace-fail 'pkg-config' "$PKG_CONFIG" + ''; strictDeps = true; @@ -37,6 +49,25 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ alsa-lib libjack2 + (libvgm.override { + # Only enable free cores that we actually use + enableEmulation = true; + withAllEmulators = false; + emulators = [ + "YM2151_ALL" + "YM2203_ALL" + "YM2608_ALL" + "YM2610_ALL" + "YM2612_ALL" + "YM3812_ALL" + "YMF262_ALL" + ]; + + # Don't need these + enableAudio = false; + enableLibplayer = false; + enableTools = false; + }) zlib ]; diff --git a/pkgs/by-name/fo/forgejo/lts.nix b/pkgs/by-name/fo/forgejo/lts.nix index 74fd06a8370b..fed399a9e8f6 100644 --- a/pkgs/by-name/fo/forgejo/lts.nix +++ b/pkgs/by-name/fo/forgejo/lts.nix @@ -1,8 +1,8 @@ import ./generic.nix { - version = "11.0.7"; - hash = "sha256-svNysySAE50rgTXTyPiZDv0lQfYGgdgoc5+9GXxv3Bw="; - npmDepsHash = "sha256-1lY08jBTx3DRhoaup02076EL9n85y57WCsS/cNcM4aw="; - vendorHash = "sha256-Jh8u+iCBhYdKcLj4IzcKtJBnzvclvUeYbR/hjMN+cPs="; + version = "11.0.8"; + hash = "sha256-KwVk4kRvrPQWsDWxX5L9pKjC+VwywLKKd2oYH+vlg74="; + npmDepsHash = "sha256-Qs1aZxgjlsjdxfBpa4pOrwEfDfb/96L49uJd29Ysn/I="; + vendorHash = "sha256-TVp4WxrGBlKVaPIbsj4EP/3pt5iseXLY7xIVum71ZXU="; lts = true; nixUpdateExtraArgs = [ "--override-filename" diff --git a/pkgs/by-name/fo/forgejo/package.nix b/pkgs/by-name/fo/forgejo/package.nix index 5e22cdf065b2..1caa89c2d2e7 100644 --- a/pkgs/by-name/fo/forgejo/package.nix +++ b/pkgs/by-name/fo/forgejo/package.nix @@ -1,8 +1,8 @@ import ./generic.nix { - version = "13.0.2"; - hash = "sha256-5am/WiRo+ma2ArhnKxQ6cpFl2q7R4g4UwtdnSY/+RIM="; + version = "13.0.3"; + hash = "sha256-ViqwTEVZkccNx5Pt+lrWvAqzD5RRTzwfBhUTfWyDhtE="; npmDepsHash = "sha256-7WjcMsKPtKUWJfDrJc65ZXq2tjK8+8DnqwINj+0XyiQ="; - vendorHash = "sha256-PHItbU27d9ouykUlhr9owylMpF+3wz2vc8c0UTR1RVU="; + vendorHash = "sha256-gHdggzCJlYvs8JXs4CJ/AyqYMPCC2o4uRwDiem3rNFM="; lts = false; nixUpdateExtraArgs = [ "--override-filename" diff --git a/pkgs/by-name/gi/gitlab-runner/package.nix b/pkgs/by-name/gi/gitlab-runner/package.nix index 4ebd67ead05d..beec1d63b257 100644 --- a/pkgs/by-name/gi/gitlab-runner/package.nix +++ b/pkgs/by-name/gi/gitlab-runner/package.nix @@ -4,6 +4,7 @@ bash, buildGoModule, fetchFromGitLab, + fetchpatch, nix-update-script, versionCheckHook, }: @@ -27,6 +28,12 @@ buildGoModule (finalAttrs: { patches = [ ./fix-shell-path.patch ./remove-bash-test.patch + # fix regression. remove with next release. + (fetchpatch { + name = "fix-shell-executor-not-working-with-variables-that-use-file-variables.patch"; + url = "https://gitlab.com/gitlab-org/gitlab-runner/-/commit/6318fe8e38ca9774eb0f52fa2c68555cdad3ab44.patch"; + hash = "sha256-GTdBo+7kHHpNs6JywjOII4NBcHjFYEZ3xhdGTcGKov4="; + }) ]; prePatch = '' diff --git a/pkgs/by-name/gr/grafana-image-renderer/package.json b/pkgs/by-name/gr/grafana-image-renderer/package.json deleted file mode 100644 index 857923067e87..000000000000 --- a/pkgs/by-name/gr/grafana-image-renderer/package.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "name": "renderer", - "version": "1.0.0", - "author": "Grafana Labs", - "license": "Apache-2.0", - "repository": { - "type": "git", - "url": "https://github.com/grafana/grafana-image-renderer.git" - }, - "scripts": { - "eslint": "eslint .", - "typecheck": "tsc --noEmit", - "prettier:check": "prettier --list-different \"**/*.ts\"", - "prettier:write": "prettier --list-different \"**/*.ts\" --write", - "precommit": "npm run eslint & npm run typecheck", - "watch": "tsc-watch --onSuccess \"node build/app.js server --config=dev.json\"", - "watch:debug": "tsc-watch --onSuccess \"cross-env DEBUG=puppeteer-cluster:* node build/app.js server --config=dev.json\"", - "build": "tsc", - "start": "node build/app.js server --config=dev.json", - "create-gcom-plugin-json": "ts-node scripts/createGcomPluginJson.ts ./scripts/tmp", - "push-to-gcom": "sh ./scripts/push-to-gcom.sh", - "test-update": "cross-env UPDATE_GOLDEN=true jest", - "test": "sh ./scripts/run_tests.sh", - "test-ci": "jest", - "test-diff": "cross-env SAVE_DIFF=true jest" - }, - "dependencies": { - "@grpc/grpc-js": "^1.8.22", - "@grpc/proto-loader": "^0.7.2", - "@hapi/boom": "^10.0.0", - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/auto-instrumentations-node": "^0.49.0", - "@opentelemetry/exporter-trace-otlp-http": "^0.52.1", - "@opentelemetry/resources": "^1.25.1", - "@opentelemetry/sdk-node": "^0.52.1", - "@opentelemetry/semantic-conventions": "^1.25.1", - "@puppeteer/browsers": "^2.3.1", - "chokidar": "^3.5.2", - "dompurify": "^3.2.4", - "express": "^4.21.1", - "express-prom-bundle": "^6.5.0", - "ioredis": "^5.6.1", - "jimp": "^0.22.12", - "jsdom": "20.0.0", - "lodash": "^4.17.21", - "minimist": "^1.2.6", - "morgan": "^1.9.0", - "multer": "^2.0.2", - "on-finished": "^2.3.0", - "poolpeteer": "^0.24.0", - "prom-client": "^14.1.0", - "puppeteer": "^22.8.2", - "puppeteer-cluster": "^0.24.0", - "rate-limiter-flexible": "^7.0.0", - "tar-fs": "^3.0.9", - "unique-filename": "^2.0.1", - "winston": "^3.8.2" - }, - "devDependencies": { - "@eslint/js": "^9.31.0", - "@grafana/eslint-config": "^8.1.0", - "@grafana/sign-plugin": "^3.1.3", - "@stylistic/eslint-plugin-ts": "^4.4.1", - "@types/content-disposition": "^0.5.9", - "@types/express": "^4.17.14", - "@types/jest": "^29.5.12", - "@types/jsdom": "20.0.0", - "@types/lodash": "^4.17.20", - "@types/minimist": "^1.2.5", - "@types/morgan": "^1.9.10", - "@types/multer": "^1.4.7", - "@types/node": "^20.17.27", - "@types/pixelmatch": "^5.2.6", - "@types/supertest": "^2.0.15", - "@typescript-eslint/eslint-plugin": "^8.37.0", - "@typescript-eslint/parser": "^8.37.0", - "@yao-pkg/pkg": "^6.3.0", - "axios": "1.8.2", - "cross-env": "7.0.3", - "eslint": "^9.31.0", - "eslint-config-prettier": "^10.1.5", - "eslint-plugin-jsdoc": "^51.4.1", - "eslint-plugin-react": "^7.37.5", - "eslint-plugin-react-hooks": "^5.2.0", - "fast-png": "^6.2.0", - "jest": "^29.7.0", - "jsonwebtoken": "^9.0.2", - "lint-staged": "13.0.3", - "prettier": "2.7.1", - "supertest": "^7.0.0", - "ts-jest": "^29.1.1", - "ts-node": "10.9.1", - "tsc-watch": "5.0.3", - "typescript": "^5.8.3", - "typescript-eslint": "^8.37.0" - }, - "lint-staged": { - "*.ts": [ - "prettier --write" - ] - }, - "pkg": { - "assets": "proto/*" - }, - "bin": "build/app.js", - "engines": { - "node": ">= 22" - } -} diff --git a/pkgs/by-name/gr/grafana-image-renderer/package.nix b/pkgs/by-name/gr/grafana-image-renderer/package.nix index 89ee72cd2a5b..e7ca2beb0840 100644 --- a/pkgs/by-name/gr/grafana-image-renderer/package.nix +++ b/pkgs/by-name/gr/grafana-image-renderer/package.nix @@ -1,68 +1,23 @@ { lib, - mkYarnPackage, + buildGoModule, fetchFromGitHub, - fetchYarnDeps, - nodejs, - runtimeShell, }: -# Notes for the upgrade: -# * Download the tarball of the new version to use. -# * Replace new `package.json` here. -# * Update `version`+`hash` and rebuild. - -mkYarnPackage rec { +buildGoModule (finalAttrs: { pname = "grafana-image-renderer"; - version = "4.0.14"; + version = "5.0.10"; src = fetchFromGitHub { owner = "grafana"; repo = "grafana-image-renderer"; - rev = "v${version}"; - hash = "sha256-CoQTOzQ7h31B3U0yvJYsgC3uaSyjNNLpD+8uMN+naiQ="; + tag = "v${finalAttrs.version}"; + hash = "sha256-oWJlb1mV1sNgN7EQ8L4msfnKps5oV60JgwZYpAJQaq4="; }; - offlineCache = fetchYarnDeps { - yarnLock = src + "/yarn.lock"; - hash = "sha256-xZrIoQlPeyGTbFRUQ0M8Tc6YpzsC5IACW0bbZ+HnsOQ="; - }; + vendorHash = "sha256-wA1XeLO2bYwq7HZOQ5UNcdqqJdEWRUxFoAQucXAj48k="; - packageJSON = ./package.json; - - buildPhase = '' - runHook preBuild - - pushd deps/renderer - yarn run build - popd - - runHook postBuild - ''; - - dontInstall = true; - - distPhase = '' - runHook preDist - - shopt -s extglob - - pushd deps/renderer - install_path="$out/libexec/grafana-image-renderer" - mkdir -p $install_path - cp -R ../../node_modules $install_path - cp -R ./!(node_modules) $install_path - popd - - mkdir -p $out/bin - cat >$out/bin/grafana-image-renderer < @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { owner = "intel"; repo = "intel-graphics-compiler"; tag = "v${version}"; - hash = "sha256-OCou4yhx9rY1JznrzGMLhsjj/3CvqQXfXWFAPDxA8Ds="; + hash = "sha256-4Tp9kY+Sbirf4kN/C5Q1ClcoUI/fhfUJpqL+/eO8a/o="; }) (fetchFromGitHub { name = "llvm-project"; @@ -56,8 +56,8 @@ stdenv.mkDerivation rec { name = "llvm-spirv"; owner = "KhronosGroup"; repo = "SPIRV-LLVM-Translator"; - tag = "v16.0.17"; - hash = "sha256-ta5QbVady9/cwBbAwF1r4ft/ESMnLgcmGMrFhv1PCH0="; + tag = "v16.0.18"; + hash = "sha256-JwFwjHUv1tBC7KDWAhkse557R6QCaVjOekhndQlVetM="; }) ]; @@ -95,7 +95,7 @@ stdenv.mkDerivation rec { # match default LLVM version with our provided version to apply correct patches substituteInPlace igc/external/llvm/llvm_preferred_version.cmake \ - --replace-fail "15.0.7" "${llvmVersion}" + --replace-fail "16.0.6" "${llvmVersion}" ''; nativeBuildInputs = [ diff --git a/pkgs/by-name/je/jellyfin-web/package.nix b/pkgs/by-name/je/jellyfin-web/package.nix index 180f8504ab23..c0dcafedf66b 100644 --- a/pkgs/by-name/je/jellyfin-web/package.nix +++ b/pkgs/by-name/je/jellyfin-web/package.nix @@ -13,7 +13,7 @@ }: buildNpmPackage rec { pname = "jellyfin-web"; - version = "10.11.2"; + version = "10.11.3"; src = assert version == jellyfin.version; @@ -21,7 +21,7 @@ buildNpmPackage rec { owner = "jellyfin"; repo = "jellyfin-web"; rev = "v${version}"; - hash = "sha256-xgZ2fh2dMpcvXXUWcZSvcARm4Qy8qgi8T5nFyk+sOgs="; + hash = "sha256-rsAxV3ABO1HYnVsvsIMMoWizPuFL0GyfKNUGYkqFxBc="; }; nodejs = nodejs_20; # does not build with 22 @@ -31,7 +31,7 @@ buildNpmPackage rec { --replace-fail "git describe --always --dirty" "echo ${src.rev}" \ ''; - npmDepsHash = "sha256-Uikude8cNBA79KNPf6D0McwR/AoaaWJVMw2Q08AiK3U="; + npmDepsHash = "sha256-OLFjeCgq2c4d22L6yt7ihPuZiwsR1txZpjniuf/0L0I="; preBuild = '' # using sass-embedded fails at executing node_modules/sass-embedded-linux-x64/dart-sass/src/dart diff --git a/pkgs/by-name/je/jellyfin/package.nix b/pkgs/by-name/je/jellyfin/package.nix index b5e51ed0eef0..b72fbe56e5c9 100644 --- a/pkgs/by-name/je/jellyfin/package.nix +++ b/pkgs/by-name/je/jellyfin/package.nix @@ -13,13 +13,13 @@ buildDotnetModule rec { pname = "jellyfin"; - version = "10.11.2"; # ensure that jellyfin-web has matching version + version = "10.11.3"; # ensure that jellyfin-web has matching version src = fetchFromGitHub { owner = "jellyfin"; repo = "jellyfin"; rev = "v${version}"; - hash = "sha256-cq45OP7xNfQ09ZfrKxnmHo68Y7SkfSVArH6PlhewPaM="; + hash = "sha256-xNQe0hjY1BjC1D+hYTj1Gv2jCpwhWJv9dlvY6K9jkSk="; }; propagatedBuildInputs = [ sqlite ]; diff --git a/pkgs/by-name/mm/mmixware/package.nix b/pkgs/by-name/mm/mmixware/package.nix index 3349f3fbc02a..93f7168c0f20 100644 --- a/pkgs/by-name/mm/mmixware/package.nix +++ b/pkgs/by-name/mm/mmixware/package.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { pname = "mmixware"; - version = "unstable-2021-06-18"; + version = "1.0-unstable-2021-06-18"; src = fetchFromGitLab { domain = "gitlab.lrz.de"; diff --git a/pkgs/by-name/mq/mqtt-exporter/package.nix b/pkgs/by-name/mq/mqtt-exporter/package.nix index 167a2bb17720..b9d3ba617d4d 100644 --- a/pkgs/by-name/mq/mqtt-exporter/package.nix +++ b/pkgs/by-name/mq/mqtt-exporter/package.nix @@ -6,14 +6,14 @@ python3.pkgs.buildPythonApplication rec { pname = "mqtt-exporter"; - version = "1.8.1-1"; + version = "1.9.0"; pyproject = true; src = fetchFromGitHub { owner = "kpetremann"; repo = "mqtt-exporter"; tag = "v${version}"; - hash = "sha256-FBB8KvSLrcJ9pdfVq18ykovwApNZoOcU0xTfvAWTxpc="; + hash = "sha256-z2y43sRlwgy3Bwhu8rvlTkf6HOT+v8kjo5FT3lo5CEA="; }; build-system = with python3.pkgs; [ setuptools ]; diff --git a/pkgs/by-name/ob/oberon-risc-emu/package.nix b/pkgs/by-name/ob/oberon-risc-emu/package.nix index 92da529579a2..b947746eaf03 100644 --- a/pkgs/by-name/ob/oberon-risc-emu/package.nix +++ b/pkgs/by-name/ob/oberon-risc-emu/package.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { pname = "oberon-risc-emu"; - version = "unstable-2020-08-18"; + version = "2016.1-unstable-2020-08-18"; src = fetchFromGitHub { owner = "pdewacht"; diff --git a/pkgs/by-name/pl/planify/package.nix b/pkgs/by-name/pl/planify/package.nix index 5a89ecce1279..2b1694ef74f4 100644 --- a/pkgs/by-name/pl/planify/package.nix +++ b/pkgs/by-name/pl/planify/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { pname = "planify"; - version = "4.15.2"; + version = "4.16.0"; src = fetchFromGitHub { owner = "alainm23"; repo = "planify"; tag = "v${version}"; - hash = "sha256-i6yAObfSMZyHHK/1YUFppU9gcFJj7WL48Eqe6IQAh4M="; + hash = "sha256-uNcTP//9YpdwHbZ49jKlrvK8wxCJK3oSrOMjoGAcDjk="; }; nativeBuildInputs = [ diff --git a/pkgs/servers/pleroma/Revert-Config-Restrict-permissions-of-OTP-config.patch b/pkgs/by-name/pl/pleroma/Revert-Config-Restrict-permissions-of-OTP-config.patch similarity index 100% rename from pkgs/servers/pleroma/Revert-Config-Restrict-permissions-of-OTP-config.patch rename to pkgs/by-name/pl/pleroma/Revert-Config-Restrict-permissions-of-OTP-config.patch diff --git a/pkgs/servers/pleroma/mix.nix b/pkgs/by-name/pl/pleroma/mix.nix similarity index 100% rename from pkgs/servers/pleroma/mix.nix rename to pkgs/by-name/pl/pleroma/mix.nix diff --git a/pkgs/servers/pleroma/default.nix b/pkgs/by-name/pl/pleroma/package.nix similarity index 97% rename from pkgs/servers/pleroma/default.nix rename to pkgs/by-name/pl/pleroma/package.nix index f6aa5e00338f..cc163d36ed22 100644 --- a/pkgs/servers/pleroma/default.nix +++ b/pkgs/by-name/pl/pleroma/package.nix @@ -1,6 +1,7 @@ { + beam, + elixir_1_17, lib, - beamPackages, fetchFromGitHub, fetchFromGitLab, fetchHex, @@ -14,6 +15,9 @@ fetchpatch, }: +let + beamPackages = beam.packages.erlang_26.extend (self: super: { elixir = elixir_1_17; }); +in beamPackages.mixRelease rec { pname = "pleroma"; version = "2.9.1"; diff --git a/pkgs/by-name/pn/pnpm-shell-completion/package.nix b/pkgs/by-name/pn/pnpm-shell-completion/package.nix index 477eb795c6d7..627fa46e4a62 100644 --- a/pkgs/by-name/pn/pnpm-shell-completion/package.nix +++ b/pkgs/by-name/pn/pnpm-shell-completion/package.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage rec { pname = "pnpm-shell-completion"; - version = "0.5.4"; + version = "0.5.5"; src = fetchFromGitHub { owner = "g-plane"; repo = "pnpm-shell-completion"; rev = "v${version}"; - hash = "sha256-bc2ZVHQF+lSAmhy/fvdiVfg9uzPPcXYrtiNChjkjHtA="; + hash = "sha256-lwtRSl0/oqgvFUtCkgExAVTiUt+7PwAD/8ufl+1MIMY="; }; - cargoHash = "sha256-JL9bWVHmdSktOEF70WMOmZKdZwO/gNDp0GPDMYteR1E="; + cargoHash = "sha256-/G+wiGlQ1UqH2uWmz55klsu1t6zBrwlv1XH3X+CAPQg="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/po/postfix-tlspol/package.nix b/pkgs/by-name/po/postfix-tlspol/package.nix index 1aacf8b93fb5..1e7e201d094c 100644 --- a/pkgs/by-name/po/postfix-tlspol/package.nix +++ b/pkgs/by-name/po/postfix-tlspol/package.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "postfix-tlspol"; - version = "1.8.21"; + version = "1.8.22"; src = fetchFromGitHub { owner = "Zuplu"; repo = "postfix-tlspol"; tag = "v${version}"; - hash = "sha256-EBgP2gwq3pei2TBNuinyY2PgLKaV6PBmk3aCkecGvk4="; + hash = "sha256-mE6vcXAmlJZSV4q4van4/PeiAadw50OXC6NujrLH4p4="; }; vendorHash = null; diff --git a/pkgs/by-name/py/pyfa/package.nix b/pkgs/by-name/py/pyfa/package.nix index c505bdb229b2..c9a94a2425ba 100644 --- a/pkgs/by-name/py/pyfa/package.nix +++ b/pkgs/by-name/py/pyfa/package.nix @@ -5,6 +5,7 @@ gsettings-desktop-schemas, adwaita-icon-theme, wrapGAppsHook3, + gobject-introspection, gdk-pixbuf, makeDesktopItem, copyDesktopItems, @@ -51,6 +52,7 @@ python3Packages.buildPythonApplication rec { numpy python-jose requests-cache + pygobject3 ]; buildInputs = [ @@ -62,6 +64,7 @@ python3Packages.buildPythonApplication rec { dontWrapGApps = true; nativeBuildInputs = [ python3Packages.pyinstaller + gobject-introspection wrapGAppsHook3 copyDesktopItems ]; diff --git a/pkgs/by-name/qu/qui/package.nix b/pkgs/by-name/qu/qui/package.nix new file mode 100644 index 000000000000..bb25114d8c90 --- /dev/null +++ b/pkgs/by-name/qu/qui/package.nix @@ -0,0 +1,87 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + stdenvNoCC, + nix-update-script, + nodejs, + pnpm_9, + typescript, + versionCheckHook, +}: +buildGoModule (finalAttrs: { + pname = "qui"; + version = "1.7.0"; + src = fetchFromGitHub { + owner = "autobrr"; + repo = "qui"; + tag = "v${finalAttrs.version}"; + hash = "sha256-CbPdngskDCAAhmsj5DPdnviZSWM0bO13Pbe7wRwaNaw="; + }; + + qui-web = stdenvNoCC.mkDerivation (finalAttrs': { + pname = "${finalAttrs.pname}-web"; + inherit (finalAttrs) src version; + + nativeBuildInputs = [ + nodejs + pnpm_9.configHook + typescript + ]; + + sourceRoot = "${finalAttrs.src.name}/web"; + + pnpmDeps = pnpm_9.fetchDeps { + inherit (finalAttrs') + pname + version + src + sourceRoot + ; + fetcherVersion = 2; + hash = "sha256-WKoWts+/TGcGy/rFEJN3Qn/vq+gj+Mq+VcTYowEyvus="; + }; + + postBuild = '' + pnpm run build + ''; + + installPhase = '' + cp -r dist $out + ''; + }); + + vendorHash = "sha256-rmUEFX8UzxEN7XaJ8Zj+kj3z1pwLkq3FTYzbPWnifW0="; + + preBuild = '' + cp -r ${finalAttrs.qui-web}/* web/dist + ''; + + ldflags = [ + "-X github.com/autobrr/qui/internal/buildinfo.Version=${finalAttrs.version}" + "-X main.PolarOrgID=" + ]; + + nativeInstallCheckInputs = [ + versionCheckHook + ]; + versionCheckProgramArg = "version"; + doInstallCheck = true; + + passthru.updateScript = nix-update-script { + extraArgs = [ + "--subpackage" + "qui-web" + ]; + }; + + meta = { + description = "Modern alternative webUI for qBittorrent, with multi-instance support"; + license = lib.licenses.gpl2Plus; + homepage = "https://github.com/autobrr/qui"; + changelog = "https://github.com/autobrr/qui/releases/tag/v${finalAttrs.version}"; + maintainers = with lib.maintainers; [ pta2002 ]; + mainProgram = "qui"; + platforms = lib.platforms.unix; + }; +}) diff --git a/pkgs/by-name/re/reposilite/package.nix b/pkgs/by-name/re/reposilite/package.nix index b3bc0827d60c..c9386d4f8343 100644 --- a/pkgs/by-name/re/reposilite/package.nix +++ b/pkgs/by-name/re/reposilite/package.nix @@ -18,11 +18,11 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "Reposilite"; - version = "3.5.25"; + version = "3.5.26"; src = fetchurl { url = "https://maven.reposilite.com/releases/com/reposilite/reposilite/${finalAttrs.version}/reposilite-${finalAttrs.version}-all.jar"; - hash = "sha256-g1a+9TGRqRK4qcJW2ZACsiew5f27T4qkm/A+c7sVxHI="; + hash = "sha256-JSvp4Ka/98AkeExrSA2WCNoqMQAmpCllIRNyHzhkzqM="; }; dontUnpack = true; diff --git a/pkgs/by-name/re/reposilite/plugins.json b/pkgs/by-name/re/reposilite/plugins.json index ac86004919ca..2f3286980ee3 100644 --- a/pkgs/by-name/re/reposilite/plugins.json +++ b/pkgs/by-name/re/reposilite/plugins.json @@ -1,7 +1,7 @@ { - "checksum": "sha256-NAB69EvfAP/2EegqR9ni5bdk5MtYd/Rzn40nUqfivfY=", - "groovy": "sha256-WjQy9nUz3LWv/AaTyZFfD/55ukt/FaXrGF3h7tc8KJg=", - "migration": "sha256-djEeQIwfNxgaMmPAmQQT+KC1qwP58sjEbQI6nqqTKNo=", - "prometheus": "sha256-avwHOdv0kj9TrK9fxhGTNzyFTn0Rjr70PTNDeyUz4cw=", - "swagger": "sha256-8Zit1SWYVJv+hn+VR38QBTSMuyucnaNfZePNPN6LhI8=" + "checksum": "sha256-MSQMx4bD59cTnKb6u5tV2twFkOwSNPs5i5boknuXzbU=", + "groovy": "sha256-3/YRKsAsPhghxacLGQp/GvNJ6RHqGhmVwx3iPn5epgw=", + "migration": "sha256-HxWKemXxeuhNgfFtj8ztKu8hZVhN8suI2KnS94Qg8G0=", + "prometheus": "sha256-Y+d+HudqEgLR5a5u9kq66w6Y0sYhjBDIYBsBUAYl06w=", + "swagger": "sha256-a3yoOWxIhXb/pHlstPTBE1DnLBjchKxbIU1G/5kB6Mc=" } diff --git a/pkgs/by-name/ru/runme/package.nix b/pkgs/by-name/ru/runme/package.nix index 902c4d249c61..c4db2753e748 100644 --- a/pkgs/by-name/ru/runme/package.nix +++ b/pkgs/by-name/ru/runme/package.nix @@ -13,16 +13,16 @@ buildGoModule rec { pname = "runme"; - version = "3.15.4"; + version = "3.16.1"; src = fetchFromGitHub { owner = "runmedev"; repo = "runme"; rev = "v${version}"; - hash = "sha256-RU2VU+yLBrnj9Gf1p0kB2Y6rfPaXIDQ8oMs2MaoJ5kM="; + hash = "sha256-cIlX2RvZ5jIdh7+EvjIb8KC4b/3rhkinUsomkJIBYMw="; }; - vendorHash = "sha256-Uw5igaQpKKI4y7EoznFdmyTXfex350Pps6nt3lvKeAM="; + vendorHash = "sha256-cGoeRjUB5py8yMvWrw2NaRaVb0kcYxXC1eD4cJNsqz8="; nativeBuildInputs = [ installShellFiles @@ -76,6 +76,6 @@ buildGoModule rec { homepage = "https://runme.dev"; changelog = "https://github.com/runmedev/runme/releases/tag/v${version}"; license = lib.licenses.asl20; - maintainers = [ ]; + maintainers = with lib.maintainers; [ _7karni ]; }; } diff --git a/pkgs/by-name/si/signal-desktop/package.nix b/pkgs/by-name/si/signal-desktop/package.nix index 902212c53c44..5df85ad04132 100644 --- a/pkgs/by-name/si/signal-desktop/package.nix +++ b/pkgs/by-name/si/signal-desktop/package.nix @@ -3,7 +3,7 @@ lib, nodejs_22, pnpm_10, - electron_38, + electron_39, python3, makeWrapper, callPackage, @@ -23,7 +23,7 @@ let nodejs = nodejs_22; pnpm = pnpm_10.override { inherit nodejs; }; - electron = electron_38; + electron = electron_39; libsignal-node = callPackage ./libsignal-node.nix { inherit nodejs; }; signal-sqlcipher = callPackage ./signal-sqlcipher.nix { inherit pnpm nodejs; }; @@ -52,13 +52,13 @@ let ''; }); - version = "7.79.0"; + version = "7.80.0"; src = fetchFromGitHub { owner = "signalapp"; repo = "Signal-Desktop"; tag = "v${version}"; - hash = "sha256-2eEUOOmJuS/MYC+M7tkWaxFTulnFUGuKE+eiD2gIIpw="; + hash = "sha256-CU304F6Ib4j/0/BqGUidV9uYUrsvIahpsCYVgr8MWFg="; }; sticker-creator = stdenv.mkDerivation (finalAttrs: { @@ -134,15 +134,15 @@ stdenv.mkDerivation (finalAttrs: { fetcherVersion = 1; hash = if withAppleEmojis then - "sha256-Gx7+/vVjYRM4oBWnUFpxWSLjha2t3nLmaZjjzDlKf+Y=" + "sha256-7zw9qmnQt5NYRKI4bLCM5Hg0d/6kVKovy1k8CpZ/1R8=" else - "sha256-YhxoyNTvtmpo/v0ef+T9OMMvwHqC/PGEwY3cUQ+EtPg="; + "sha256-Mya7v0uhjP4GVyD412SMiQ8/YHaq99fDIjGHCJOIWxY="; }; env = { ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; SIGNAL_ENV = "production"; - SOURCE_DATE_EPOCH = 1762988949; + SOURCE_DATE_EPOCH = 1763594452; }; preBuild = '' diff --git a/pkgs/by-name/sp/spasm-ng/package.nix b/pkgs/by-name/sp/spasm-ng/package.nix index 5716072d4585..046dda2790c5 100644 --- a/pkgs/by-name/sp/spasm-ng/package.nix +++ b/pkgs/by-name/sp/spasm-ng/package.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { pname = "spasm-ng"; - version = "unstable-2022-07-05"; + version = "0.5-beta.3-unstable-2022-07-05"; src = fetchFromGitHub { owner = "alberthdev"; diff --git a/pkgs/by-name/st/stb/package.nix b/pkgs/by-name/st/stb/package.nix index 881eff8b8bc1..70eb6e5cc450 100644 --- a/pkgs/by-name/st/stb/package.nix +++ b/pkgs/by-name/st/stb/package.nix @@ -38,6 +38,7 @@ stdenv.mkDerivation rec { runHook preInstall mkdir -p $out/include/stb cp *.h $out/include/stb/ + cp *.c $out/include/stb/ runHook postInstall ''; diff --git a/pkgs/by-name/sw/swaglyrics/package.nix b/pkgs/by-name/sw/swaglyrics/package.nix index 5c4e6031286b..694df9581774 100644 --- a/pkgs/by-name/sw/swaglyrics/package.nix +++ b/pkgs/by-name/sw/swaglyrics/package.nix @@ -7,7 +7,7 @@ python3.pkgs.buildPythonApplication { pname = "swaglyrics"; - version = "unstable-2021-06-17"; + version = "1.2.2-unstable-2021-06-17"; pyproject = true; src = fetchFromGitHub { diff --git a/pkgs/by-name/te/tektoncd-cli/package.nix b/pkgs/by-name/te/tektoncd-cli/package.nix index cacb2ac2ba05..547e4dc09969 100644 --- a/pkgs/by-name/te/tektoncd-cli/package.nix +++ b/pkgs/by-name/te/tektoncd-cli/package.nix @@ -14,13 +14,13 @@ buildGoModule (finalAttrs: { pname = "tektoncd-cli"; - version = "0.42.0"; + version = "0.43.0"; src = fetchFromGitHub { owner = "tektoncd"; repo = "cli"; tag = "v${finalAttrs.version}"; - sha256 = "sha256-WB3XsXT8bXo2GpHC6hGKilRwloy31y18JD09cQklsV0="; + sha256 = "sha256-75pyN+Sr5IttqrQYIveePabcuxnx8G48aiP5rw2v/Jo="; }; vendorHash = null; diff --git a/pkgs/by-name/ty/tyrolienne/package.nix b/pkgs/by-name/ty/tyrolienne/package.nix new file mode 100644 index 000000000000..a14327c03100 --- /dev/null +++ b/pkgs/by-name/ty/tyrolienne/package.nix @@ -0,0 +1,82 @@ +{ + lib, + rustPlatform, + copyDesktopItems, + fetchFromGitea, + ffmpeg, + imagemagick, + libadwaita, + makeDesktopItem, + nix-update-script, + pkg-config, + wrapGAppsHook4, + zenity, +}: +rustPlatform.buildRustPackage (finalAttrs: { + pname = "tyrolienne"; + version = "1.1.0"; + + src = fetchFromGitea { + domain = "git.uku3lig.net"; + owner = "uku"; + repo = "tyrolienne"; + tag = finalAttrs.version; + hash = "sha256-LJZxQLATVGEhb0HK8PO3Fe+N+GjJdwX1Z7mOCIwQkqo="; + }; + + cargoHash = "sha256-ax8Akv26XFFxKVstUIAHUDKypzkJOS8mpBDIT3NfBbE="; + + nativeBuildInputs = [ + copyDesktopItems + imagemagick + pkg-config + wrapGAppsHook4 + ]; + + buildInputs = [ libadwaita ]; + + # Tests are disabled because there are none, avoids having to recompile everything twice + doCheck = false; + + postInstall = '' + for size in 16 32 48 128 256; do + dir="$out/share/icons/hicolor/''${size}x''${size}/apps" + mkdir -p "$dir" + magick data/icons/tyrolienne.png -resize ''${size}x "$dir/net.uku3lig.tyrolienne.png" + done + ''; + + preFixup = '' + gappsWrapperArgs+=( + --prefix PATH : ${ + lib.makeBinPath [ + ffmpeg + zenity + ] + } + ) + ''; + + desktopItems = [ + (makeDesktopItem { + name = "net.uku3lig.tyrolienne"; + desktopName = "Tyrolienne"; + type = "Application"; + comment = "Compresses and uploads videos to Zipline"; + exec = "tyrolienne"; + icon = "net.uku3lig.tyrolienne"; + terminal = false; + }) + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Simple tool to convert, upload, and embed videos to Zipline"; + homepage = "https://git.uku3lig.net/uku/tyrolienne"; + license = lib.licenses.mpl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ uku3lig ]; + mainProgram = "tyrolienne"; + }; +}) diff --git a/pkgs/by-name/ve/versitygw/package.nix b/pkgs/by-name/ve/versitygw/package.nix index a9d6327c0285..6ac1b531c780 100644 --- a/pkgs/by-name/ve/versitygw/package.nix +++ b/pkgs/by-name/ve/versitygw/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "versitygw"; - version = "1.0.18"; + version = "1.0.19"; src = fetchFromGitHub { owner = "versity"; repo = "versitygw"; tag = "v${version}"; - hash = "sha256-IZWcRlVfXAZjkgwD9sdIX6Z2YEshkV+q4vUwPFSB5P4="; + hash = "sha256-Cz8hxw+10Cg112Qu+9/FTDWVaf2COBzVJDxZkt8c4Yg="; }; - vendorHash = "sha256-L7cxMkPJVDG91PXWA3eu0hWRcDfbp3U3HKXc1IziCBM="; + vendorHash = "sha256-R2UxUaqPaQ1TPYI79rmIHVqTDceuqhSdRb03OqI2fBc="; doCheck = false; # Require access to online S3 services diff --git a/pkgs/by-name/ya/yara-x/package.nix b/pkgs/by-name/ya/yara-x/package.nix index 46ce75adffcf..489b3c874384 100644 --- a/pkgs/by-name/ya/yara-x/package.nix +++ b/pkgs/by-name/ya/yara-x/package.nix @@ -12,16 +12,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "yara-x"; - version = "1.9.0"; + version = "1.10.0"; src = fetchFromGitHub { owner = "VirusTotal"; repo = "yara-x"; tag = "v${finalAttrs.version}"; - hash = "sha256-yoQoAtgXBgniNebU9HMxF1m0UHFD6iU095he9tCNNIo="; + hash = "sha256-aRFDutYFD476xq2TTVWB5CxF1pi3C24NJpfc5kD+aNA="; }; - cargoHash = "sha256-/HMyNofKpeYaFfRcZ1LAb3vfW/TQy+DsILXRCpJFlCQ="; + cargoHash = "sha256-CT+walpFIFTaO480ATHO1E38K9Tw14QqLRYzztWQmeA="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/yt/ytdl-sub/package.nix b/pkgs/by-name/yt/ytdl-sub/package.nix index 2815ce3114d6..28b1de2841ef 100644 --- a/pkgs/by-name/yt/ytdl-sub/package.nix +++ b/pkgs/by-name/yt/ytdl-sub/package.nix @@ -8,14 +8,14 @@ python3Packages.buildPythonApplication rec { pname = "ytdl-sub"; - version = "2025.11.07.post1"; + version = "2025.11.18"; pyproject = true; src = fetchFromGitHub { owner = "jmbannon"; repo = "ytdl-sub"; tag = version; - hash = "sha256-gg4KcYLnHKpIJKhL8x1xUDf38LvmTIc/mgd0Py6Uoe4="; + hash = "sha256-dvgQoHSSPsiJdve5O+Mf4oFWAc/1/fuAzzOp2ywe0kU="; }; postPatch = '' diff --git a/pkgs/development/python-modules/boto3-stubs/default.nix b/pkgs/development/python-modules/boto3-stubs/default.nix index e4505c8f8d01..23de62febb69 100644 --- a/pkgs/development/python-modules/boto3-stubs/default.nix +++ b/pkgs/development/python-modules/boto3-stubs/default.nix @@ -358,13 +358,13 @@ buildPythonPackage rec { pname = "boto3-stubs"; - version = "1.41.0"; + version = "1.41.1"; pyproject = true; src = fetchPypi { pname = "boto3_stubs"; inherit version; - hash = "sha256-dNE48tL19IFAvoHWgHIrAZTgm8340ggKkUwh0nfCz+M="; + hash = "sha256-dRusG/uvyg2zCzbfAjxiKtqU2mG1OjMl31SQdZ/7bG8="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/channels/default.nix b/pkgs/development/python-modules/channels/default.nix index e526925b696b..efa8886f633b 100644 --- a/pkgs/development/python-modules/channels/default.nix +++ b/pkgs/development/python-modules/channels/default.nix @@ -9,22 +9,19 @@ pytest-asyncio, pytest-django, pytestCheckHook, - pythonOlder, setuptools, }: buildPythonPackage rec { pname = "channels"; - version = "4.3.1"; + version = "4.3.2"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "django"; repo = "channels"; tag = version; - hash = "sha256-dRKK6AQNlPdBQumbLmPyOTW96N/PJ9yUY6GYe5x/c+A="; + hash = "sha256-KBjxaK2j9Xbz35IHqZK68cSLkUk4B7t+J7omcQAtuFM="; }; build-system = [ setuptools ]; @@ -56,7 +53,7 @@ buildPythonPackage rec { meta = with lib; { description = "Brings event-driven capabilities to Django with a channel system"; homepage = "https://github.com/django/channels"; - changelog = "https://github.com/django/channels/blob/${version}/CHANGELOG.txt"; + changelog = "https://github.com/django/channels/blob/${src.tag}/CHANGELOG.txt"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; diff --git a/pkgs/development/python-modules/dissect-jffs/default.nix b/pkgs/development/python-modules/dissect-jffs/default.nix index 7cd6d1598edb..44a20b0341f7 100644 --- a/pkgs/development/python-modules/dissect-jffs/default.nix +++ b/pkgs/development/python-modules/dissect-jffs/default.nix @@ -4,31 +4,28 @@ dissect-cstruct, dissect-util, fetchFromGitHub, - pythonOlder, setuptools, setuptools-scm, }: buildPythonPackage rec { pname = "dissect-jffs"; - version = "1.5"; + version = "1.6"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "fox-it"; repo = "dissect.jffs"; tag = version; - hash = "sha256-HXGmZZd+fYnOCEpffdZe9dOLJS3jY7dIrb6rmhgbYyw="; + hash = "sha256-yzEaOVP4QOQD24cxy+GKS0mQRvYD4GcPwYydwrzFqXs="; }; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm ]; - propagatedBuildInputs = [ + dependencies = [ dissect-cstruct dissect-util ]; diff --git a/pkgs/development/python-modules/dissect-ole/default.nix b/pkgs/development/python-modules/dissect-ole/default.nix index 468154a21ea5..851b392dd7c9 100644 --- a/pkgs/development/python-modules/dissect-ole/default.nix +++ b/pkgs/development/python-modules/dissect-ole/default.nix @@ -6,21 +6,18 @@ fetchFromGitHub, setuptools, setuptools-scm, - pythonOlder, }: buildPythonPackage rec { pname = "dissect-ole"; - version = "3.11"; + version = "3.12"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "fox-it"; repo = "dissect.ole"; tag = version; - hash = "sha256-KdqEZxZ2V3AKHgpHfXmnw4sh+P8ZPOMvbRq0xENwiX8="; + hash = "sha256-ctPc9YLvu8IIEdgcSSYOvpQeqcrcLgTSZtzSiAvgCWk="; }; build-system = [ diff --git a/pkgs/development/python-modules/findimports/default.nix b/pkgs/development/python-modules/findimports/default.nix index ff12b9a3129a..f15031b98ccb 100644 --- a/pkgs/development/python-modules/findimports/default.nix +++ b/pkgs/development/python-modules/findimports/default.nix @@ -3,22 +3,19 @@ buildPythonPackage, fetchFromGitHub, python, - pythonOlder, setuptools, }: buildPythonPackage rec { pname = "findimports"; - version = "2.6.0"; + version = "2.7.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "mgedmin"; repo = "findimports"; tag = version; - hash = "sha256-2hhonlv7FF4s+wDOsBGnLsMxJEXlMlNbLEkI8HptyOI="; + hash = "sha256-ztbf9F1tz5EhqSkE8W6i7ihJYJTymKQdXI+K/G7DbHM="; }; build-system = [ setuptools ]; @@ -37,7 +34,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module for the analysis of Python import statements"; homepage = "https://github.com/mgedmin/findimports"; - changelog = "https://github.com/mgedmin/findimports/blob/${version}/CHANGES.rst"; + changelog = "https://github.com/mgedmin/findimports/blob/${src.tag}/CHANGES.rst"; license = with licenses; [ gpl2Only # or gpl3Only diff --git a/pkgs/development/python-modules/iamdata/default.nix b/pkgs/development/python-modules/iamdata/default.nix index 50641b02dcae..384af57045ca 100644 --- a/pkgs/development/python-modules/iamdata/default.nix +++ b/pkgs/development/python-modules/iamdata/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "iamdata"; - version = "0.1.202511201"; + version = "0.1.202511211"; pyproject = true; src = fetchFromGitHub { owner = "cloud-copilot"; repo = "iam-data-python"; tag = "v${version}"; - hash = "sha256-fSttA/OKKiOk6V6wr/LZisIuDFkzoJm3zZRJiTfNHjs="; + hash = "sha256-2kyHYYmSywok0ZqneSKjhcnSZX6fB3jN7Jub65n/ceI="; }; __darwinAllowLocalNetworking = true; diff --git a/pkgs/development/python-modules/mitogen/default.nix b/pkgs/development/python-modules/mitogen/default.nix index 880c87fb03b8..5f8e3843afce 100644 --- a/pkgs/development/python-modules/mitogen/default.nix +++ b/pkgs/development/python-modules/mitogen/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "mitogen"; - version = "0.3.31"; + version = "0.3.32"; pyproject = true; src = fetchFromGitHub { owner = "mitogen-hq"; repo = "mitogen"; tag = "v${version}"; - hash = "sha256-ecDRva+K/caMV9T5W5dxFRwJyGvrURpexOa5bNyXkb4="; + hash = "sha256-FYhYo8hnpmXh3U75uOFmiFrKtLpRHwksvxEsCXoLeOc="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index e52df9719238..dfcdfb02535d 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -150,8 +150,8 @@ in "sha256-GTFJ5vTrn2cesnQaPzJzXb3Zd53rzDOA6LyH2lprvug="; mypy-boto3-autoscaling = - buildMypyBoto3Package "autoscaling" "1.41.0" - "sha256-a8Z+OxMamZn9fiLrHT55EPqdA4QBhz/5NOqY5DJ6U2E="; + buildMypyBoto3Package "autoscaling" "1.41.1" + "sha256-oKPvn6pv2wRPu2l3oNOphUgkaAFq+HmhCUXTi71FxLk="; mypy-boto3-autoscaling-plans = buildMypyBoto3Package "autoscaling-plans" "1.41.0" @@ -174,12 +174,12 @@ in "sha256-RW7RKSjeP70MrVWw7Ol5b17FMKvm7E6xHcNh0lwQY4w="; mypy-boto3-braket = - buildMypyBoto3Package "braket" "1.41.0" - "sha256-2nufCU050tK3YSXvE7+ZgQZ7+WhxUxdNnBDlfvxggD0="; + buildMypyBoto3Package "braket" "1.41.1" + "sha256-vkaaGr3aFi+v+g41Np4vwhZGggG/l4W4Ps/rih0JhSQ="; mypy-boto3-budgets = - buildMypyBoto3Package "budgets" "1.41.0" - "sha256-m/PWIW+w2Jr7PN0topwKDtfOWcyt0A/PiwqRanuQKnA="; + buildMypyBoto3Package "budgets" "1.41.1" + "sha256-n0gipTIbrw5NiLK26uhDpIww2Dlw6GFaHmnzzzkBt4M="; mypy-boto3-ce = buildMypyBoto3Package "ce" "1.41.0" @@ -230,8 +230,8 @@ in "sha256-iuHl3slhnfM5R5eFiQwzX8N/Tki7CB/GseC8drzBj0M="; mypy-boto3-cloudfront = - buildMypyBoto3Package "cloudfront" "1.41.0" - "sha256-AJobxl5lk6qMCw0jaCe50Es0dne5tFvg2Y1AsVhRIkg="; + buildMypyBoto3Package "cloudfront" "1.41.1" + "sha256-ccQGB53br+K60woFky3RkNM0WtwtKsY+ECRCFq9x/q4="; mypy-boto3-cloudhsm = buildMypyBoto3Package "cloudhsm" "1.41.0" @@ -250,8 +250,8 @@ in "sha256-A/9+Pz/wgy2k7tcQXhp2VduZbXVnAh6C8vJ+sneyckE="; mypy-boto3-cloudtrail = - buildMypyBoto3Package "cloudtrail" "1.41.0" - "sha256-1Pu/8nnFxtRvJiHTUnv672m1/asEeKunpWK2RDGDlFw="; + buildMypyBoto3Package "cloudtrail" "1.41.1" + "sha256-jPokAbjnIKWlJivK2unV9yV1fbtqYnQZCJmjm3/JqVo="; mypy-boto3-cloudtrail-data = buildMypyBoto3Package "cloudtrail-data" "1.41.0" @@ -338,8 +338,8 @@ in "sha256-sQf9PZa1RxwsUx7iYT5Ynp7mH8yPTKsWUhAkGdcXIBs="; mypy-boto3-connect = - buildMypyBoto3Package "connect" "1.41.0" - "sha256-k9B3lZ309sQWaq0DoFiRwS83MChgB6pAcbUDq22m5MQ="; + buildMypyBoto3Package "connect" "1.41.1" + "sha256-h9foKpV654Ff18bTsFjTgQ4U1CFUR2QHP4bTEQJCmzM="; mypy-boto3-connect-contact-lens = buildMypyBoto3Package "connect-contact-lens" "1.41.0" @@ -382,8 +382,8 @@ in "sha256-e/bO3WVgx9LsA7qvlI/A26pqwtREkyB9AMhRiqxPNE0="; mypy-boto3-datasync = - buildMypyBoto3Package "datasync" "1.41.0" - "sha256-AG2BiSvd3Z3bhlT486OjiZd522b7rbTi0BJBZP2w0p8="; + buildMypyBoto3Package "datasync" "1.41.1" + "sha256-soc/b4zlSAvvUsy5/7Qa53XGCv3xrt1BtiYH+ZrT+fA="; mypy-boto3-dax = buildMypyBoto3Package "dax" "1.41.0" @@ -394,8 +394,8 @@ in "sha256-kA5DMRWtDouDlnmbeitWxzvcqA9wHVHgtouDhuIADXc="; mypy-boto3-devicefarm = - buildMypyBoto3Package "devicefarm" "1.41.0" - "sha256-Ie1BSBlKkV79MV1qeQPMtlY8ZJEEdM2Twj/vhXJFbUA="; + buildMypyBoto3Package "devicefarm" "1.41.1" + "sha256-gZOpY/F1Rmo/po2KpILBh+BMueHDN/Bny+8HNkYk3L8="; mypy-boto3-devops-guru = buildMypyBoto3Package "devops-guru" "1.41.0" @@ -414,8 +414,8 @@ in "sha256-6BsKG8DMvuKMgyYyoW/31N03czHLTFKzb5C/DCVZMBM="; mypy-boto3-dms = - buildMypyBoto3Package "dms" "1.41.0" - "sha256-DrFRqxTu7Yu3WL9vsJFq4GM9jpraP1hY0riO2gSAEaA="; + buildMypyBoto3Package "dms" "1.41.1" + "sha256-aT8zZArTo2AaKZUc6SFkSlfbhH/L0zNIVataHGXJkaU="; mypy-boto3-docdb = buildMypyBoto3Package "docdb" "1.41.0" @@ -446,8 +446,8 @@ in "sha256-8fFnQpctLyNEZrsKI94tcpy7XAN8+ULGsih2oihHcyg="; mypy-boto3-ec2 = - buildMypyBoto3Package "ec2" "1.41.0" - "sha256-uvqn0Xx2IooWG+PUvPAh1HmEKaO4SfDyqOwhe0sYUPI="; + buildMypyBoto3Package "ec2" "1.41.1" + "sha256-UcvnDV+HbSEob1QYIxid5scGaLCXhuWD6Fq0v3D3ieo="; mypy-boto3-ec2-instance-connect = buildMypyBoto3Package "ec2-instance-connect" "1.41.0" @@ -462,8 +462,8 @@ in "sha256-O05+5uzp7lmM7N0jvVKgZuvnqh+zz6HiSvOxtKq56sg="; mypy-boto3-ecs = - buildMypyBoto3Package "ecs" "1.41.0" - "sha256-MLI/7uKh8yvEVeUDU/Sy7DwrrT3VBqGODx+zNVIcGVU="; + buildMypyBoto3Package "ecs" "1.41.1" + "sha256-4Pkp2x9ClR8I2oAiHcHhJbuU4bUGcQQ6v7L2B2RGKO0="; mypy-boto3-efs = buildMypyBoto3Package "efs" "1.41.0" @@ -494,12 +494,12 @@ in "sha256-Qxp3B2PJ/RKE+n4gUxnalGIVqkdB8Ta/zHyJ5lvtflM="; mypy-boto3-elbv2 = - buildMypyBoto3Package "elbv2" "1.41.0" - "sha256-k6hbyZO+uRTIbGiNxm87Ybc7i9LCQ6CIrZj1nCg/KNk="; + buildMypyBoto3Package "elbv2" "1.41.1" + "sha256-vDaagCc7Av5dF0dvem8QEGYD3LZALN9XH9bxWrcgicE="; mypy-boto3-emr = - buildMypyBoto3Package "emr" "1.41.0" - "sha256-c8dsPpKA6yVGIbfbRh9ST8zQTRsLu7wfC2v77tOM6q4="; + buildMypyBoto3Package "emr" "1.41.1" + "sha256-eb5sluqEMtbazfA1wbMxF1bN7vRRDeIpq5Ej7gfN5UU="; mypy-boto3-emr-containers = buildMypyBoto3Package "emr-containers" "1.41.0" @@ -574,8 +574,8 @@ in "sha256-v+p1OJoW9sBuO6uXlRolDD9Kk3bksb0jXLYSpzeR8U0="; mypy-boto3-glue = - buildMypyBoto3Package "glue" "1.41.0" - "sha256-uV3/B1d6VMzyE9AsFJTKYyW0OBnWgISCbU3bjX9zqxI="; + buildMypyBoto3Package "glue" "1.41.1" + "sha256-ke65iQ5nhPzTElnocBO2asAfy5U5GMO0tXCTDIPueuQ="; mypy-boto3-grafana = buildMypyBoto3Package "grafana" "1.41.0" "sha256-VxPgHHmT0p2YQuCnVfi7pNIFuUEaNCBJkghTXqP6e1E="; @@ -613,8 +613,8 @@ in "sha256-WsohLrGnt4ZMcOEdjbjK5057XeLwZ0ujbJD8AqajxW8="; mypy-boto3-imagebuilder = - buildMypyBoto3Package "imagebuilder" "1.41.0" - "sha256-gOFH/0ILcXgIW+2eHIFoDcP2MHggIDKr6M569rGycuM="; + buildMypyBoto3Package "imagebuilder" "1.41.1" + "sha256-7W5dkciCl7gcBD4JuxJXV8Q99NHjUYtx5kUYHb12HWk="; mypy-boto3-importexport = buildMypyBoto3Package "importexport" "1.41.0" @@ -729,8 +729,8 @@ in "sha256-PMjUlZgqSulMtKuHr/LTHGPL39spvSQSBhyL3g09Z7k="; mypy-boto3-kinesis = - buildMypyBoto3Package "kinesis" "1.41.0" - "sha256-QXMKPuGxr+bCQlweHA+lHoKF3jBGG4cBJyX3j0LHUnc="; + buildMypyBoto3Package "kinesis" "1.41.1" + "sha256-3lAGq+cwJ9L2765hbx9Ij9alKGEV33VbYnzmoBdMjOk="; mypy-boto3-kinesis-video-archived-media = buildMypyBoto3Package "kinesis-video-archived-media" "1.41.0" @@ -765,8 +765,8 @@ in "sha256-Wp0iq5lAgQwm96krIGpPzHUSHS8DbRtr+uFC15WCm6o="; mypy-boto3-lakeformation = - buildMypyBoto3Package "lakeformation" "1.41.0" - "sha256-EajE0a6k9p6XTui6nruNCzN0Ot5z4xS5ZL9bGfkb9AE="; + buildMypyBoto3Package "lakeformation" "1.41.1" + "sha256-cj73uXbKmtsTh2l5qBv14RFAmnTgr04JLQK9EyJhjSA="; mypy-boto3-lambda = buildMypyBoto3Package "lambda" "1.41.0" @@ -789,8 +789,8 @@ in "sha256-8GLOqOph4BG3mFcwLVXZ4qinPsSi3YCYMQhgu5g1Jvk="; mypy-boto3-license-manager = - buildMypyBoto3Package "license-manager" "1.41.0" - "sha256-j32PWYxkTh7r4cB/L+JpYeddl7KU46naoy+ZI9kd2/Q="; + buildMypyBoto3Package "license-manager" "1.41.1" + "sha256-AQiCEmxX4kBGt2088BSt94AaFpe/N1WZin36gUo+yv8="; mypy-boto3-license-manager-linux-subscriptions = buildMypyBoto3Package "license-manager-linux-subscriptions" "1.41.0" @@ -953,8 +953,8 @@ in "sha256-0rtTR067/fJ9ZocM6QNDqA5x0CEqjO4uKA8WMB/wOtE="; mypy-boto3-networkmanager = - buildMypyBoto3Package "networkmanager" "1.41.0" - "sha256-dzcCZonHrc7Yt4soJUuhE4+tF/qfRaxHJWeieO/MmeI="; + buildMypyBoto3Package "networkmanager" "1.41.1" + "sha256-QHxkGRF5U/xO8uqVQMJ7k4Vj3kFosjIff1HEWfAZdNI="; mypy-boto3-nimble = buildMypyBoto3Package "nimble" "1.35.0" @@ -985,8 +985,8 @@ in "sha256-JEuEjo0htTuDCZx2nNJK2Zq59oSUqkMf4BrNamerfVk="; mypy-boto3-organizations = - buildMypyBoto3Package "organizations" "1.41.0" - "sha256-Ysi3lqJvIEyE1KewQ9jfX71m/GbHpKTDKyZu4Om/j/4="; + buildMypyBoto3Package "organizations" "1.41.1" + "sha256-onKCxgKRaWRKBhDTBNpUo8BrZgJolV2Exr07vjFuhp0="; mypy-boto3-osis = buildMypyBoto3Package "osis" "1.41.0" @@ -1073,20 +1073,20 @@ in "sha256-YrrEKl3aGz//5Z5JGapHhWtk6hBXQ4cuRQmLqGYztzg="; mypy-boto3-quicksight = - buildMypyBoto3Package "quicksight" "1.41.0" - "sha256-ndkiuYmHUSJr2wyR+axlszEORn80QwLy6obJSwE4L+s="; + buildMypyBoto3Package "quicksight" "1.41.1" + "sha256-hxpZwMRckIBguBLqkQTQNz8indzxF3bYffp6kJEo9VY="; mypy-boto3-ram = buildMypyBoto3Package "ram" "1.41.0" "sha256-8migaRgVoR5BkKbd1T1f6IydBhy5D9jGl7AmiEngbBs="; mypy-boto3-rbin = - buildMypyBoto3Package "rbin" "1.41.0" - "sha256-DaXgV1Rv/qYPIGczOEGzf0NYPN3iC4ryM21w4nkpjfk="; + buildMypyBoto3Package "rbin" "1.41.1" + "sha256-pXpULn4yTRRs/MfOCUoACGvgXt8TLQq7ZujEK1l6rZk="; mypy-boto3-rds = - buildMypyBoto3Package "rds" "1.41.0" - "sha256-D4WNhRHWymbfYrqybDDns5O5ntJmeaNQrLCz6xBS0zk="; + buildMypyBoto3Package "rds" "1.41.1" + "sha256-ctmzv5N7phsH0oMY8swFhLAtODG0swu+fhN6tsAJ3BY="; mypy-boto3-rds-data = buildMypyBoto3Package "rds-data" "1.41.0" @@ -1097,8 +1097,8 @@ in "sha256-KedvA/5nwKm8XQu+dd+5wHd7+3TF6KFufBWdxSyFswM="; mypy-boto3-redshift-data = - buildMypyBoto3Package "redshift-data" "1.41.0" - "sha256-lODk0m+u2BqZbdyoCVcBVE7JGC7Jh+dYZPFQtRKH2/g="; + buildMypyBoto3Package "redshift-data" "1.41.1" + "sha256-TyG0MmalnHdViX428FiumY+oy6UohOhtxkF8BMWDGMo="; mypy-boto3-redshift-serverless = buildMypyBoto3Package "redshift-serverless" "1.41.0" @@ -1161,8 +1161,8 @@ in "sha256-Z4dEVofTPpv5cPLNUqK0SNY/PIjzN3TuK0aGtX5GcBE="; mypy-boto3-s3 = - buildMypyBoto3Package "s3" "1.41.0" - "sha256-DhQkavncABFF5FDhCvqs6Y/FJJwhMXlojgXm2cDc4go="; + buildMypyBoto3Package "s3" "1.41.1" + "sha256-FDG7avMbr/zReGC+Gfe/JVhuMxI3L0M8z68GMrHjIJc="; mypy-boto3-s3control = buildMypyBoto3Package "s3control" "1.41.0" @@ -1173,8 +1173,8 @@ in "sha256-Bi97uNPPzYVxPhs1OSYnQPq4HtQ11q9sZHxwRa4q7rM="; mypy-boto3-sagemaker = - buildMypyBoto3Package "sagemaker" "1.41.0" - "sha256-AywXhE2uJIRtT1E1qAnj86IqtsVmHfbYzznPLkea82Y="; + buildMypyBoto3Package "sagemaker" "1.41.1" + "sha256-RvAe5ZhwEAoZyrNti8rFolGm03+h3vaMTyLUXsCc8ok="; mypy-boto3-sagemaker-a2i-runtime = buildMypyBoto3Package "sagemaker-a2i-runtime" "1.41.0" @@ -1221,8 +1221,8 @@ in "sha256-2Mo8Pkx9/Yi4XPD5VlYnNOjzYIqvn5jpZp3CmMBiTV8="; mypy-boto3-securityhub = - buildMypyBoto3Package "securityhub" "1.41.0" - "sha256-zVADzOoa0nOUIQS/ZCBKerwDVKIe/Sht+4wT73xYDFM="; + buildMypyBoto3Package "securityhub" "1.41.1" + "sha256-AJrT6vmP5C61SLPqiUeeKIcJ2rLVBi49tKdrj8/pAwg="; mypy-boto3-securitylake = buildMypyBoto3Package "securitylake" "1.41.0" diff --git a/pkgs/development/python-modules/pentapy/default.nix b/pkgs/development/python-modules/pentapy/default.nix new file mode 100644 index 000000000000..10132fe67107 --- /dev/null +++ b/pkgs/development/python-modules/pentapy/default.nix @@ -0,0 +1,52 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + + # build-system + cython, + setuptools, + setuptools-scm, + + # dependencies + numpy, + + # tests + pytestCheckHook, +}: + +buildPythonPackage rec { + pname = "pentapy"; + version = "1.4.1"; + pyproject = true; + + src = fetchFromGitHub { + owner = "GeoStat-Framework"; + repo = "pentapy"; + tag = "v${version}"; + hash = "sha256-lw512rZCrwumDunoWFfd0HxCv0HAn/bAmIz8l8VeBP8="; + }; + + build-system = [ + cython + numpy + setuptools + setuptools-scm + ]; + + dependencies = [ + numpy + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + meta = { + description = "A Python toolbox for pentadiagonal linear systems"; + homepage = "https://github.com/GeoStat-Framework/pentapy"; + changelog = "https://github.com/GeoStat-Framework/pentapy/blob/v${version}/CHANGELOG.md"; + license = lib.licenses.mit; + teams = [ lib.teams.geospatial ]; + }; +} diff --git a/pkgs/development/python-modules/pykrige/default.nix b/pkgs/development/python-modules/pykrige/default.nix index 477d55aaecb9..be69db1358b1 100644 --- a/pkgs/development/python-modules/pykrige/default.nix +++ b/pkgs/development/python-modules/pykrige/default.nix @@ -5,6 +5,7 @@ # build-system cython, + pentapy, setuptools, setuptools-scm, @@ -21,25 +22,20 @@ buildPythonPackage rec { pname = "pykrige"; - version = "1.7.2"; + version = "1.7.3"; pyproject = true; src = fetchFromGitHub { owner = "GeoStat-Framework"; repo = "PyKrige"; tag = "v${version}"; - hash = "sha256-9f8SNlt4qiTlXgx2ica9Y8rmnYzQ5VarvFRfoZ9bSsY="; + hash = "sha256-zdszmT1LEfYBWzd+m2nITtl0lZHyU0fzszYxANQS6yU="; }; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace-fail "numpy>=2.0.0rc1,<2.3; python_version >= '3.9'" "numpy>=2.0.0" \ - --replace-fail "Cython>=3.0.10,<3.1.0" "Cython>=3.1.0,<4.0.0" - ''; - build-system = [ cython numpy + pentapy scipy setuptools setuptools-scm @@ -70,6 +66,6 @@ buildPythonPackage rec { homepage = "https://github.com/GeoStat-Framework/PyKrige"; changelog = "https://github.com/GeoStat-Framework/PyKrige/blob/v${version}/CHANGELOG.md"; license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.sikmir ]; + teams = [ lib.teams.geospatial ]; }; } diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix index f85e3189ad7c..483a2863a099 100644 --- a/pkgs/development/python-modules/python-gitlab/default.nix +++ b/pkgs/development/python-modules/python-gitlab/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "python-gitlab"; - version = "6.3.0"; + version = "7.0.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "python_gitlab"; inherit version; - hash = "sha256-PXdklWlIlJoqOv8geObpOl7+otsKKVZrXhQgkbzAdao="; + hash = "sha256-5Nk0Qw9k78CeYgi3gsYcwKM4lSd2XgP/vvF/QyPc5EE="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/python-toolbox/default.nix b/pkgs/development/python-modules/python-toolbox/default.nix index d9c9f9ec2b66..a6f49f9ad8f9 100644 --- a/pkgs/development/python-modules/python-toolbox/default.nix +++ b/pkgs/development/python-modules/python-toolbox/default.nix @@ -4,22 +4,19 @@ docutils, fetchFromGitHub, pytestCheckHook, - pythonOlder, setuptools, }: buildPythonPackage rec { pname = "python-toolbox"; - version = "1.2.10"; + version = "1.3.1"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "cool-RR"; repo = "python_toolbox"; tag = version; - hash = "sha256-+Q7r4nbubp2xzkBgEyTuA0EeIvpT4bW+2NnckVkEKcY="; + hash = "sha256-pbo4vhypM97OXh6CxK42EbZdrXljvj5rmP9C9RDPo5g="; }; build-system = [ setuptools ]; @@ -43,7 +40,7 @@ buildPythonPackage rec { meta = with lib; { description = "Tools for testing PySnooper"; homepage = "https://github.com/cool-RR/python_toolbox"; - changelog = "https://github.com/cool-RR/python_toolbox/releases/tag/${version}"; + changelog = "https://github.com/cool-RR/python_toolbox/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ seqizz ]; }; diff --git a/pkgs/development/python-modules/pyvicare/default.nix b/pkgs/development/python-modules/pyvicare/default.nix index ad23a95fbd15..768333a8c89b 100644 --- a/pkgs/development/python-modules/pyvicare/default.nix +++ b/pkgs/development/python-modules/pyvicare/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "pyvicare"; - version = "2.55.0"; + version = "2.55.1"; pyproject = true; src = fetchFromGitHub { owner = "openviess"; repo = "PyViCare"; tag = version; - hash = "sha256-38fYyxFJRFVCe2LZ+7Naj979Jao4jJgIE1GRcCqXpjU="; + hash = "sha256-fKQ0NXUsL8NgmKr8BEoGV2fty39l19fg4B6Eg90X2kI="; }; postPatch = '' diff --git a/pkgs/development/python-modules/ray/default.nix b/pkgs/development/python-modules/ray/default.nix index 5264772df53f..d326f4073b9d 100644 --- a/pkgs/development/python-modules/ray/default.nix +++ b/pkgs/development/python-modules/ray/default.nix @@ -17,7 +17,6 @@ protobuf, pyyaml, requests, - watchfiles, # optional-dependencies # cgraph @@ -34,28 +33,37 @@ aiohttp-cors, colorful, opencensus, + opentelemetry-exporter-prometheus, + opentelemetry-proto, + opentelemetry-sdk, prometheus-client, pydantic, py-spy, smart-open, virtualenv, + # llm + async-timeout, + hf-transfer, + jsonref, + ninja, + # nixl, + typer, + vllm, # observability memray, - opentelemetry-api, - opentelemetry-sdk, - opentelemetry-exporter-otlp, # rllib dm-tree, gymnasium, lz4, - # ormsgpack, + ormsgpack, scipy, - typer, - rich, # serve fastapi, starlette, uvicorn, + watchfiles, + # serve-async-inference + celery, # serve-grpc pyopenssl, # tune @@ -125,7 +133,6 @@ buildPythonPackage rec { protobuf pyyaml requests - watchfiles ]; optional-dependencies = lib.fix (self: { @@ -141,6 +148,8 @@ buildPythonPackage rec { ++ self.observability ++ self.rllib ++ self.serve + ++ self.serve-async-inference + ++ self.serve-grpc ++ self.train ++ self.tune ); @@ -160,6 +169,9 @@ buildPythonPackage rec { colorful grpcio opencensus + opentelemetry-exporter-prometheus + opentelemetry-proto + opentelemetry-sdk prometheus-client pydantic py-spy @@ -167,22 +179,34 @@ buildPythonPackage rec { smart-open virtualenv ]; + llm = lib.unique ( + [ + async-timeout + hf-transfer + jsonref + jsonschema + ninja + # nixl + typer + vllm + ] + ++ self.data + ++ self.serve + ); observability = [ memray - opentelemetry-api - opentelemetry-sdk - opentelemetry-exporter-otlp - ]; - rllib = [ - dm-tree - gymnasium - lz4 - # ormsgpack - pyyaml - scipy - typer - rich ]; + rllib = lib.unique ( + [ + dm-tree + gymnasium + lz4 + ormsgpack + pyyaml + scipy + ] + ++ self.tune + ); serve = lib.unique ( [ fastapi @@ -193,6 +217,12 @@ buildPythonPackage rec { ] ++ self.default ); + serve-async-inference = lib.unique ( + [ + celery + ] + ++ self.serve + ); serve-grpc = lib.unique ( [ grpcio @@ -200,7 +230,12 @@ buildPythonPackage rec { ] ++ self.serve ); - train = self.tune; + train = lib.unique ( + [ + pydantic + ] + ++ self.tune + ); tune = [ fsspec pandas diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index d5d399e948fd..26b5e763cb26 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "tencentcloud-sdk-python"; - version = "3.0.1491"; + version = "3.1.1"; pyproject = true; src = fetchFromGitHub { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; tag = version; - hash = "sha256-ygO1D9l0RPWvzTOxuKx7Mc233pgHmY+nmphw82a2U/Y="; + hash = "sha256-WYxfVbqpEqM07/2OmPiTkkEhsIxx4KqJ16A/YPIFUm0="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/tools/devpod/cargo-lock.patch b/pkgs/development/tools/devpod/cargo-lock.patch new file mode 100644 index 000000000000..d81ae9b13334 --- /dev/null +++ b/pkgs/development/tools/devpod/cargo-lock.patch @@ -0,0 +1,7302 @@ +diff --git a/src-tauri/Cargo.lock b/desktop/src-tauri/Cargo.lock +index 9004720b..e21b6d63 100644 +--- a/src-tauri/Cargo.lock ++++ b/src-tauri/Cargo.lock +@@ -1,6 +1,6 @@ + # This file is automatically @generated by Cargo. + # It is not intended for manual editing. +-version = 3 ++version = 4 + + [[package]] + name = "Inflector" +@@ -8,20 +8,11 @@ version = "0.11.4" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" + +-[[package]] +-name = "addr2line" +-version = "0.24.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" +-dependencies = [ +- "gimli", +-] +- + [[package]] + name = "adler2" +-version = "2.0.0" ++version = "2.0.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" ++checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + + [[package]] + name = "ahash" +@@ -29,26 +20,20 @@ version = "0.7.8" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" + dependencies = [ +- "getrandom 0.2.15", ++ "getrandom 0.2.16", + "once_cell", + "version_check", + ] + + [[package]] + name = "aho-corasick" +-version = "1.1.3" ++version = "1.1.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" ++checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" + dependencies = [ + "memchr", + ] + +-[[package]] +-name = "aligned-vec" +-version = "0.5.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" +- + [[package]] + name = "alloc-no-stdlib" + version = "2.0.4" +@@ -64,17 +49,11 @@ dependencies = [ + "alloc-no-stdlib", + ] + +-[[package]] +-name = "android-tzdata" +-version = "0.1.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" +- + [[package]] + name = "android_log-sys" +-version = "0.3.1" ++version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5ecc8056bf6ab9892dcd53216c83d1597487d7dacac16c8df6b877d127df9937" ++checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" + + [[package]] + name = "android_logger" +@@ -98,48 +77,39 @@ dependencies = [ + + [[package]] + name = "anyhow" +-version = "1.0.92" ++version = "1.0.70" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "74f37166d7d48a0284b99dd824694c26119c700b53bf0d1540cdb147dbdaaf13" ++checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" + + [[package]] + name = "arbitrary" +-version = "1.3.2" ++version = "1.4.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" ++checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" + dependencies = [ + "derive_arbitrary", + ] + + [[package]] + name = "arboard" +-version = "3.4.1" ++version = "3.6.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "df099ccb16cd014ff054ac1bf392c67feeef57164b05c42f037cd40f5d4357f4" ++checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf" + dependencies = [ + "clipboard-win", +- "core-graphics 0.23.2", + "image", + "log", +- "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2 0.6.3", ++ "objc2-app-kit 0.3.2", ++ "objc2-core-foundation", ++ "objc2-core-graphics", ++ "objc2-foundation 0.3.2", + "parking_lot", +- "windows-sys 0.48.0", ++ "percent-encoding", ++ "windows-sys 0.60.2", + "x11rb", + ] + +-[[package]] +-name = "arg_enum_proc_macro" +-version = "0.3.4" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" +-dependencies = [ +- "proc-macro2", +- "quote", +- "syn 2.0.98", +-] +- + [[package]] + name = "arrayvec" + version = "0.5.2" +@@ -170,14 +140,14 @@ dependencies = [ + "wayland-backend", + "wayland-client", + "wayland-protocols", +- "zbus 4.0.1", ++ "zbus 4.2.0", + ] + + [[package]] + name = "async-broadcast" +-version = "0.7.1" ++version = "0.7.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e" ++checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" + dependencies = [ + "event-listener", + "event-listener-strategy", +@@ -187,9 +157,9 @@ dependencies = [ + + [[package]] + name = "async-channel" +-version = "2.3.1" ++version = "2.5.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" ++checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" + dependencies = [ + "concurrent-queue", + "event-listener-strategy", +@@ -199,22 +169,23 @@ dependencies = [ + + [[package]] + name = "async-executor" +-version = "1.13.1" ++version = "1.13.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" ++checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" + dependencies = [ + "async-task", + "concurrent-queue", + "fastrand", + "futures-lite", ++ "pin-project-lite", + "slab", + ] + + [[package]] + name = "async-fs" +-version = "2.1.2" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" ++checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" + dependencies = [ + "async-lock", + "blocking", +@@ -223,28 +194,27 @@ dependencies = [ + + [[package]] + name = "async-io" +-version = "2.3.4" ++version = "2.6.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" ++checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" + dependencies = [ +- "async-lock", ++ "autocfg", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling", +- "rustix", ++ "rustix 1.1.2", + "slab", +- "tracing", +- "windows-sys 0.59.0", ++ "windows-sys 0.61.2", + ] + + [[package]] + name = "async-lock" +-version = "3.4.0" ++version = "3.4.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" ++checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" + dependencies = [ + "event-listener", + "event-listener-strategy", +@@ -253,9 +223,9 @@ dependencies = [ + + [[package]] + name = "async-process" +-version = "2.3.0" ++version = "2.5.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb" ++checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" + dependencies = [ + "async-channel", + "async-io", +@@ -266,8 +236,7 @@ dependencies = [ + "cfg-if", + "event-listener", + "futures-lite", +- "rustix", +- "tracing", ++ "rustix 1.1.2", + ] + + [[package]] +@@ -278,14 +247,14 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "async-signal" +-version = "0.2.10" ++version = "0.2.13" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" ++checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" + dependencies = [ + "async-io", + "async-lock", +@@ -293,10 +262,10 @@ dependencies = [ + "cfg-if", + "futures-core", + "futures-io", +- "rustix", ++ "rustix 1.1.2", + "signal-hook-registry", + "slab", +- "windows-sys 0.59.0", ++ "windows-sys 0.61.2", + ] + + [[package]] +@@ -307,20 +276,20 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" + + [[package]] + name = "async-trait" +-version = "0.1.83" ++version = "0.1.89" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" ++checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "atk" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b4af014b17dd80e8af9fa689b2d4a211ddba6eb583c1622f35d0cb543f6b17e4" ++checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" + dependencies = [ + "atk-sys", + "glib", +@@ -329,9 +298,9 @@ dependencies = [ + + [[package]] + name = "atk-sys" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "251e0b7d90e33e0ba930891a505a9a35ece37b2dd37a14f3ffc306c13b980009" ++checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" + dependencies = [ + "glib-sys", + "gobject-sys", +@@ -347,50 +316,27 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + + [[package]] + name = "autocfg" +-version = "1.4.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +- +-[[package]] +-name = "av1-grain" +-version = "0.2.3" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf" +-dependencies = [ +- "anyhow", +- "arrayvec 0.7.6", +- "log", +- "nom", +- "num-rational", +- "v_frame", +-] +- +-[[package]] +-name = "avif-serialize" +-version = "0.8.2" ++version = "1.5.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e335041290c43101ca215eed6f43ec437eb5a42125573f600fc3fa42b9bddd62" +-dependencies = [ +- "arrayvec 0.7.6", +-] ++checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + + [[package]] + name = "axum" +-version = "0.7.7" ++version = "0.7.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" ++checksum = "810a80b128d70e6ed2bdf3fe8ed72c0ae56f5f5948d01c2753282dd92a84fce8" + dependencies = [ + "async-trait", + "axum-core", +- "base64 0.22.1", ++ "base64 0.21.7", + "bytes", + "futures-util", + "http 1.1.0", + "http-body 1.0.1", + "http-body-util", +- "hyper 1.5.0", ++ "hyper 1.8.1", + "hyper-util", +- "itoa 1.0.11", ++ "itoa 1.0.15", + "matchit", + "memchr", + "mime", +@@ -402,13 +348,12 @@ dependencies = [ + "serde_path_to_error", + "serde_urlencoded", + "sha1", +- "sync_wrapper 1.0.1", ++ "sync_wrapper 0.1.2", + "tokio", + "tokio-tungstenite", + "tower", + "tower-layer", + "tower-service", +- "tracing", + ] + + [[package]] +@@ -426,25 +371,9 @@ dependencies = [ + "mime", + "pin-project-lite", + "rustversion", +- "sync_wrapper 1.0.1", ++ "sync_wrapper 1.0.2", + "tower-layer", + "tower-service", +- "tracing", +-] +- +-[[package]] +-name = "backtrace" +-version = "0.3.74" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +-dependencies = [ +- "addr2line", +- "cfg-if", +- "libc", +- "miniz_oxide", +- "object", +- "rustc-demangle", +- "windows-targets 0.52.6", + ] + + [[package]] +@@ -459,12 +388,6 @@ version = "0.22.1" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +-[[package]] +-name = "bit_field" +-version = "0.10.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" +- + [[package]] + name = "bitflags" + version = "1.3.2" +@@ -473,19 +396,13 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + + [[package]] + name = "bitflags" +-version = "2.6.0" ++version = "2.10.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" ++checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" + dependencies = [ +- "serde", ++ "serde_core", + ] + +-[[package]] +-name = "bitstream-io" +-version = "2.5.3" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b81e1519b0d82120d2fd469d5bfb2919a9361c48b02d82d04befc1cdd2002452" +- + [[package]] + name = "bitvec" + version = "1.0.1" +@@ -522,11 +439,20 @@ dependencies = [ + "objc2 0.5.2", + ] + ++[[package]] ++name = "block2" ++version = "0.6.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" ++dependencies = [ ++ "objc2 0.6.3", ++] ++ + [[package]] + name = "blocking" +-version = "1.6.1" ++version = "1.6.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" ++checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" + dependencies = [ + "async-channel", + "async-task", +@@ -537,26 +463,25 @@ dependencies = [ + + [[package]] + name = "borsh" +-version = "1.3.0" ++version = "1.5.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "26d4d6dafc1a3bb54687538972158f07b2c948bc57d5890df22c0739098b3028" ++checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" + dependencies = [ + "borsh-derive", +- "cfg_aliases 0.1.1", ++ "cfg_aliases 0.2.1", + ] + + [[package]] + name = "borsh-derive" +-version = "1.3.0" ++version = "1.5.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "bf4918709cc4dd777ad2b6303ed03cb37f3ca0ccede8c1b0d28ac6db8f4710e0" ++checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3" + dependencies = [ + "once_cell", +- "proc-macro-crate 2.0.0", ++ "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", +- "syn 2.0.98", +- "syn_derive", ++ "syn 2.0.110", + ] + + [[package]] +@@ -572,31 +497,25 @@ dependencies = [ + + [[package]] + name = "brotli-decompressor" +-version = "4.0.1" ++version = "4.0.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" ++checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd" + dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + ] + +-[[package]] +-name = "built" +-version = "0.7.5" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c360505aed52b7ec96a3636c3f039d99103c37d1d9b4f7a8c743d3ea9ffcd03b" +- + [[package]] + name = "bumpalo" +-version = "3.16.0" ++version = "3.19.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" ++checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" + + [[package]] + name = "byte-unit" +-version = "5.1.4" ++version = "5.1.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "33ac19bdf0b2665407c39d82dbc937e951e7e2001609f0fb32edd0af45a2d63e" ++checksum = "e1cd29c3c585209b0cbc7309bfe3ed7efd8c84c21b7af29c8bfae908f8777174" + dependencies = [ + "rust_decimal", + "serde", +@@ -627,9 +546,9 @@ dependencies = [ + + [[package]] + name = "bytemuck" +-version = "1.19.0" ++version = "1.24.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d" ++checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" + + [[package]] + name = "byteorder" +@@ -645,9 +564,9 @@ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" + + [[package]] + name = "bytes" +-version = "1.8.0" ++version = "1.11.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" ++checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" + dependencies = [ + "serde", + ] +@@ -658,12 +577,12 @@ version = "0.18.5" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "cairo-sys-rs", + "glib", + "libc", + "once_cell", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + ] + + [[package]] +@@ -679,54 +598,53 @@ dependencies = [ + + [[package]] + name = "camino" +-version = "1.1.9" ++version = "1.2.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" ++checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" + dependencies = [ +- "serde", ++ "serde_core", + ] + + [[package]] + name = "cargo-platform" +-version = "0.1.8" ++version = "0.1.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" ++checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" + dependencies = [ + "serde", + ] + + [[package]] + name = "cargo_metadata" +-version = "0.18.1" ++version = "0.19.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" ++checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" + dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + ] + + [[package]] + name = "cargo_toml" +-version = "0.17.2" ++version = "0.22.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8a969e13a7589e9e3e4207e153bae624ade2b5622fb4684a4923b23ec3d57719" ++checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" + dependencies = [ + "serde", +- "toml 0.8.2", ++ "toml 0.9.8", + ] + + [[package]] + name = "cc" +-version = "1.1.31" ++version = "1.2.46" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f" ++checksum = "b97463e1064cb1b1c1384ad0a0b9c8abd0988e2a91f52606c80ef14aadb63e36" + dependencies = [ +- "jobserver", +- "libc", ++ "find-msvc-tools", + "shlex", + ] + +@@ -759,9 +677,9 @@ dependencies = [ + + [[package]] + name = "cfg-if" +-version = "1.0.0" ++version = "1.0.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" ++checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + + [[package]] + name = "cfg_aliases" +@@ -777,24 +695,25 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + + [[package]] + name = "chrono" +-version = "0.4.38" ++version = "0.4.23" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" ++checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" + dependencies = [ +- "android-tzdata", + "iana-time-zone", + "js-sys", ++ "num-integer", + "num-traits", + "serde", ++ "time 0.1.45", + "wasm-bindgen", +- "windows-targets 0.52.6", ++ "winapi", + ] + + [[package]] + name = "clipboard-win" +-version = "5.4.0" ++version = "5.4.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892" ++checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4" + dependencies = [ + "error-code", + ] +@@ -817,14 +736,14 @@ dependencies = [ + + [[package]] + name = "cocoa" +-version = "0.26.0" ++version = "0.26.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f79398230a6e2c08f5c9760610eb6924b52aa9e7950a619602baba59dcbbdbb2" ++checksum = "ad36507aeb7e16159dfe68db81ccc27571c3ccd4b76fb2fb72fc59e7a4b1b64c" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "block", +- "cocoa-foundation 0.2.0", +- "core-foundation 0.10.0", ++ "cocoa-foundation 0.2.1", ++ "core-foundation 0.10.1", + "core-graphics 0.24.0", + "foreign-types 0.5.0", + "libc", +@@ -847,24 +766,17 @@ dependencies = [ + + [[package]] + name = "cocoa-foundation" +-version = "0.2.0" ++version = "0.2.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e14045fb83be07b5acf1c0884b2180461635b433455fa35d1cd6f17f1450679d" ++checksum = "81411967c50ee9a1fc11365f8c585f863a22a9697c89239c452292c40ba79b0d" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "block", +- "core-foundation 0.10.0", ++ "core-foundation 0.10.1", + "core-graphics-types 0.2.0", +- "libc", + "objc", + ] + +-[[package]] +-name = "color_quant" +-version = "1.1.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" +- + [[package]] + name = "combine" + version = "4.6.7" +@@ -890,6 +802,16 @@ version = "0.4.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + ++[[package]] ++name = "cookie" ++version = "0.18.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" ++dependencies = [ ++ "time 0.3.44", ++ "version_check", ++] ++ + [[package]] + name = "core-foundation" + version = "0.9.4" +@@ -902,9 +824,9 @@ dependencies = [ + + [[package]] + name = "core-foundation" +-version = "0.10.0" ++version = "0.10.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" ++checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" + dependencies = [ + "core-foundation-sys", + "libc", +@@ -929,27 +851,14 @@ dependencies = [ + "libc", + ] + +-[[package]] +-name = "core-graphics" +-version = "0.23.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081" +-dependencies = [ +- "bitflags 1.3.2", +- "core-foundation 0.9.4", +- "core-graphics-types 0.1.3", +- "foreign-types 0.5.0", +- "libc", +-] +- + [[package]] + name = "core-graphics" + version = "0.24.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" + dependencies = [ +- "bitflags 2.6.0", +- "core-foundation 0.10.0", ++ "bitflags 2.10.0", ++ "core-foundation 0.10.1", + "core-graphics-types 0.2.0", + "foreign-types 0.5.0", + "libc", +@@ -972,74 +881,55 @@ version = "0.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" + dependencies = [ +- "bitflags 2.6.0", +- "core-foundation 0.10.0", ++ "bitflags 2.10.0", ++ "core-foundation 0.10.1", + "libc", + ] + + [[package]] + name = "cpufeatures" +-version = "0.2.14" ++version = "0.2.17" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" ++checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" + dependencies = [ + "libc", + ] + + [[package]] + name = "crc32fast" +-version = "1.4.2" ++version = "1.5.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" ++checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" + dependencies = [ + "cfg-if", + ] + + [[package]] + name = "crossbeam-channel" +-version = "0.5.13" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" +-dependencies = [ +- "crossbeam-utils", +-] +- +-[[package]] +-name = "crossbeam-deque" +-version = "0.8.5" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +-dependencies = [ +- "crossbeam-epoch", +- "crossbeam-utils", +-] +- +-[[package]] +-name = "crossbeam-epoch" +-version = "0.9.18" ++version = "0.5.15" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" ++checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" + dependencies = [ + "crossbeam-utils", + ] + + [[package]] + name = "crossbeam-utils" +-version = "0.8.20" ++version = "0.8.21" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" ++checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + + [[package]] + name = "crunchy" +-version = "0.2.2" ++version = "0.2.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" ++checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + + [[package]] + name = "crypto-common" +-version = "0.1.6" ++version = "0.1.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" ++checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" + dependencies = [ + "generic-array", + "typenum", +@@ -1069,24 +959,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" + dependencies = [ + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "ctor" +-version = "0.2.8" ++version = "0.2.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f" ++checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" + dependencies = [ + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "darling" +-version = "0.20.10" ++version = "0.21.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" ++checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" + dependencies = [ + "darling_core", + "darling_macro", +@@ -1094,78 +984,67 @@ dependencies = [ + + [[package]] + name = "darling_core" +-version = "0.20.10" ++version = "0.21.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" ++checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" + dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "darling_macro" +-version = "0.20.10" ++version = "0.21.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" ++checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" + dependencies = [ + "darling_core", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "data-encoding" +-version = "2.6.0" ++version = "2.9.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" ++checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" + + [[package]] + name = "deranged" +-version = "0.3.11" ++version = "0.5.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" ++checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" + dependencies = [ + "powerfmt", +- "serde", +-] +- +-[[package]] +-name = "derivative" +-version = "2.2.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" +-dependencies = [ +- "proc-macro2", +- "quote", +- "syn 1.0.109", ++ "serde_core", + ] + + [[package]] + name = "derive_arbitrary" +-version = "1.3.2" ++version = "1.4.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" ++checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "derive_more" +-version = "0.99.18" ++version = "0.99.20" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" ++checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" + dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -1176,16 +1055,17 @@ dependencies = [ + "axum", + "chrono", + "cocoa 0.24.1", +- "dirs", ++ "dirs 5.0.1", + "dispatch", + "http 1.1.0", + "interprocess", ++ "kuchikiki", + "lazy_static", + "log", + "nix 0.29.0", + "objc", + "regex", +- "reqwest 0.11.27", ++ "reqwest 0.11.18", + "semver", + "serde", + "serde_json", +@@ -1207,7 +1087,9 @@ dependencies = [ + "tauri-plugin-single-instance", + "tauri-plugin-store", + "tauri-plugin-updater", +- "thiserror 1.0.66", ++ "tauri-runtime", ++ "tauri-runtime-wry", ++ "thiserror 1.0.69", + "tokio", + "tower-http", + "ts-rs", +@@ -1233,7 +1115,16 @@ version = "5.0.1" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" + dependencies = [ +- "dirs-sys", ++ "dirs-sys 0.4.1", ++] ++ ++[[package]] ++name = "dirs" ++version = "6.0.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" ++dependencies = [ ++ "dirs-sys 0.5.0", + ] + + [[package]] +@@ -1254,10 +1145,22 @@ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" + dependencies = [ + "libc", + "option-ext", +- "redox_users", ++ "redox_users 0.4.6", + "windows-sys 0.48.0", + ] + ++[[package]] ++name = "dirs-sys" ++version = "0.5.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" ++dependencies = [ ++ "libc", ++ "option-ext", ++ "redox_users 0.5.2", ++ "windows-sys 0.61.2", ++] ++ + [[package]] + name = "dirs-sys-next" + version = "0.1.2" +@@ -1265,7 +1168,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" + dependencies = [ + "libc", +- "redox_users", ++ "redox_users 0.4.6", + "winapi", + ] + +@@ -1275,6 +1178,16 @@ version = "0.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" + ++[[package]] ++name = "dispatch2" ++version = "0.3.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" ++dependencies = [ ++ "bitflags 2.10.0", ++ "objc2 0.6.3", ++] ++ + [[package]] + name = "displaydoc" + version = "0.2.5" +@@ -1283,7 +1196,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -1292,7 +1205,7 @@ version = "0.5.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" + dependencies = [ +- "libloading 0.8.5", ++ "libloading 0.8.9", + ] + + [[package]] +@@ -1309,13 +1222,13 @@ dependencies = [ + + [[package]] + name = "dlopen2_derive" +-version = "0.4.0" ++version = "0.4.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54" ++checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -1326,18 +1239,18 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" + + [[package]] + name = "dpi" +-version = "0.1.1" ++version = "0.1.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53" ++checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" + dependencies = [ + "serde", + ] + + [[package]] + name = "dtoa" +-version = "1.0.9" ++version = "1.0.10" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" ++checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" + + [[package]] + name = "dtoa-short" +@@ -1356,28 +1269,22 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + + [[package]] + name = "dyn-clone" +-version = "1.0.17" ++version = "1.0.20" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" +- +-[[package]] +-name = "either" +-version = "1.13.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" ++checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + + [[package]] + name = "embed-resource" +-version = "2.5.0" ++version = "3.0.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f4e24052d7be71f0efb50c201557f6fe7d237cfd5a64fd5bcd7fd8fe32dbbffa" ++checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e" + dependencies = [ + "cc", + "memchr", + "rustc_version", +- "toml 0.8.2", ++ "toml 0.9.8", + "vswhom", +- "winreg 0.52.0", ++ "winreg 0.55.0", + ] + + [[package]] +@@ -1403,9 +1310,9 @@ checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" + + [[package]] + name = "enumflags2" +-version = "0.7.10" ++version = "0.7.12" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" ++checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" + dependencies = [ + "enumflags2_derive", + "serde", +@@ -1413,20 +1320,20 @@ dependencies = [ + + [[package]] + name = "enumflags2_derive" +-version = "0.7.10" ++version = "0.7.12" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" ++checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "env_filter" +-version = "0.1.2" ++version = "0.1.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" ++checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" + dependencies = [ + "log", + "regex", +@@ -1434,41 +1341,42 @@ dependencies = [ + + [[package]] + name = "equivalent" +-version = "1.0.1" ++version = "1.0.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" ++checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + + [[package]] + name = "erased-serde" +-version = "0.4.5" ++version = "0.4.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d" ++checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" + dependencies = [ + "serde", ++ "serde_core", + "typeid", + ] + + [[package]] + name = "errno" +-version = "0.3.9" ++version = "0.3.14" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" ++checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" + dependencies = [ + "libc", +- "windows-sys 0.52.0", ++ "windows-sys 0.61.2", + ] + + [[package]] + name = "error-code" +-version = "3.3.1" ++version = "3.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a5d9305ccc6942a704f4335694ecd3de2ea531b114ac2d51f5f843750787a92f" ++checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59" + + [[package]] + name = "event-listener" +-version = "5.3.1" ++version = "5.4.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" ++checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" + dependencies = [ + "concurrent-queue", + "parking", +@@ -1477,49 +1385,54 @@ dependencies = [ + + [[package]] + name = "event-listener-strategy" +-version = "0.5.2" ++version = "0.5.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" ++checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" + dependencies = [ + "event-listener", + "pin-project-lite", + ] + + [[package]] +-name = "exr" +-version = "1.73.0" ++name = "fastrand" ++version = "2.3.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" ++ ++[[package]] ++name = "fax" ++version = "0.2.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0" ++checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab" + dependencies = [ +- "bit_field", +- "half", +- "lebe", +- "miniz_oxide", +- "rayon-core", +- "smallvec", +- "zune-inflate", ++ "fax_derive", + ] + + [[package]] +-name = "fastrand" +-version = "2.1.1" ++name = "fax_derive" ++version = "0.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" ++checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d" ++dependencies = [ ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", ++] + + [[package]] + name = "fdeflate" +-version = "0.3.6" ++version = "0.3.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "07c6f4c64c1d33a3111c4466f7365ebdcc37c5bd1ea0d62aae2e3d722aacbedb" ++checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" + dependencies = [ + "simd-adler32", + ] + + [[package]] + name = "fern" +-version = "0.6.2" ++version = "0.7.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d9f0c14694cbd524c8720dd69b0e3179344f04ebb5f90f2e4a440c6ea3b2f1ee" ++checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29" + dependencies = [ + "log", + ] +@@ -1536,21 +1449,27 @@ dependencies = [ + + [[package]] + name = "filetime" +-version = "0.2.25" ++version = "0.2.26" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" ++checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" + dependencies = [ + "cfg-if", + "libc", + "libredox", +- "windows-sys 0.59.0", ++ "windows-sys 0.60.2", + ] + + [[package]] +-name = "flate2" +-version = "1.0.34" ++name = "find-msvc-tools" ++version = "0.1.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" ++checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" ++ ++[[package]] ++name = "flate2" ++version = "1.1.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" + dependencies = [ + "crc32fast", + "miniz_oxide", +@@ -1598,7 +1517,7 @@ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -1615,9 +1534,9 @@ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + + [[package]] + name = "form_urlencoded" +-version = "1.2.1" ++version = "1.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" ++checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" + dependencies = [ + "percent-encoding", + ] +@@ -1672,9 +1591,9 @@ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" + + [[package]] + name = "futures-lite" +-version = "2.6.0" ++version = "2.6.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" ++checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" + dependencies = [ + "fastrand", + "futures-core", +@@ -1691,7 +1610,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -1734,9 +1653,9 @@ dependencies = [ + + [[package]] + name = "gdk" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f5ba081bdef3b75ebcdbfc953699ed2d7417d6bd853347a42a37d76406a33646" ++checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" + dependencies = [ + "cairo-rs", + "gdk-pixbuf", +@@ -1775,9 +1694,9 @@ dependencies = [ + + [[package]] + name = "gdk-sys" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "31ff856cb3386dae1703a920f803abafcc580e9b5f711ca62ed1620c25b51ff2" ++checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" + dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", +@@ -1792,9 +1711,9 @@ dependencies = [ + + [[package]] + name = "gdkwayland-sys" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a90fbf5c033c65d93792192a49a8efb5bb1e640c419682a58bb96f5ae77f3d4a" ++checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" + dependencies = [ + "gdk-sys", + "glib-sys", +@@ -1806,9 +1725,9 @@ dependencies = [ + + [[package]] + name = "gdkx11" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "db2ea8a4909d530f79921290389cbd7c34cb9d623bfe970eaae65ca5f9cd9cce" ++checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" + dependencies = [ + "gdk", + "gdkx11-sys", +@@ -1820,9 +1739,9 @@ dependencies = [ + + [[package]] + name = "gdkx11-sys" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "fee8f00f4ee46cad2939b8990f5c70c94ff882c3028f3cc5abf950fa4ab53043" ++checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" + dependencies = [ + "gdk-sys", + "glib-sys", +@@ -1843,22 +1762,22 @@ dependencies = [ + + [[package]] + name = "gethostname" +-version = "0.4.3" ++version = "0.5.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" ++checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" + dependencies = [ +- "libc", +- "windows-targets 0.48.5", ++ "rustix 0.38.44", ++ "windows-targets 0.52.6", + ] + + [[package]] + name = "gethostname" +-version = "0.5.0" ++version = "1.1.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" ++checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8" + dependencies = [ +- "rustix", +- "windows-targets 0.52.6", ++ "rustix 1.1.2", ++ "windows-link 0.2.1", + ] + + [[package]] +@@ -1874,31 +1793,27 @@ dependencies = [ + + [[package]] + name = "getrandom" +-version = "0.2.15" ++version = "0.2.16" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" ++checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" + dependencies = [ + "cfg-if", + "libc", +- "wasi 0.11.0+wasi-snapshot-preview1", ++ "wasi 0.11.1+wasi-snapshot-preview1", + ] + + [[package]] +-name = "gif" +-version = "0.13.1" ++name = "getrandom" ++version = "0.3.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" ++checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" + dependencies = [ +- "color_quant", +- "weezl", ++ "cfg-if", ++ "libc", ++ "r-efi", ++ "wasip2", + ] + +-[[package]] +-name = "gimli" +-version = "0.31.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" +- + [[package]] + name = "gio" + version = "0.18.4" +@@ -1915,7 +1830,7 @@ dependencies = [ + "once_cell", + "pin-project-lite", + "smallvec", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + ] + + [[package]] +@@ -1937,7 +1852,7 @@ version = "0.18.5" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "futures-channel", + "futures-core", + "futures-executor", +@@ -1951,7 +1866,7 @@ dependencies = [ + "memchr", + "once_cell", + "smallvec", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + ] + + [[package]] +@@ -1961,11 +1876,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" + dependencies = [ + "heck 0.4.1", +- "proc-macro-crate 2.0.0", ++ "proc-macro-crate 2.0.2", + "proc-macro-error", + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -1980,9 +1895,9 @@ dependencies = [ + + [[package]] + name = "glob" +-version = "0.3.1" ++version = "0.3.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" ++checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" + + [[package]] + name = "gobject-sys" +@@ -1997,9 +1912,9 @@ dependencies = [ + + [[package]] + name = "gtk" +-version = "0.18.1" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "93c4f5e0e20b60e10631a5f06da7fe3dda744b05ad0ea71fee2f47adf865890c" ++checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" + dependencies = [ + "atk", + "cairo-rs", +@@ -2018,9 +1933,9 @@ dependencies = [ + + [[package]] + name = "gtk-sys" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "771437bf1de2c1c0b496c11505bdf748e26066bbe942dfc8f614c9460f6d7722" ++checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" + dependencies = [ + "atk-sys", + "cairo-sys-rs", +@@ -2036,22 +1951,22 @@ dependencies = [ + + [[package]] + name = "gtk3-macros" +-version = "0.18.0" ++version = "0.18.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c6063efb63db582968fb7df72e1ae68aa6360dcfb0a75143f34fc7d616bad75e" ++checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" + dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "h2" +-version = "0.3.26" ++version = "0.3.27" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" ++checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" + dependencies = [ + "bytes", + "fnv", +@@ -2059,7 +1974,26 @@ dependencies = [ + "futures-sink", + "futures-util", + "http 0.2.12", +- "indexmap 2.6.0", ++ "indexmap 2.12.0", ++ "slab", ++ "tokio", ++ "tokio-util", ++ "tracing", ++] ++ ++[[package]] ++name = "h2" ++version = "0.4.12" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" ++dependencies = [ ++ "atomic-waker", ++ "bytes", ++ "fnv", ++ "futures-core", ++ "futures-sink", ++ "http 1.1.0", ++ "indexmap 2.12.0", + "slab", + "tokio", + "tokio-util", +@@ -2068,12 +2002,13 @@ dependencies = [ + + [[package]] + name = "half" +-version = "2.4.1" ++version = "2.7.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" ++checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" + dependencies = [ + "cfg-if", + "crunchy", ++ "zerocopy", + ] + + [[package]] +@@ -2087,9 +2022,9 @@ dependencies = [ + + [[package]] + name = "hashbrown" +-version = "0.15.0" ++version = "0.16.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb" ++checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" + + [[package]] + name = "heck" +@@ -2105,15 +2040,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + + [[package]] + name = "hermit-abi" +-version = "0.3.9" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" +- +-[[package]] +-name = "hermit-abi" +-version = "0.4.0" ++version = "0.5.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" ++checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" + + [[package]] + name = "hex" +@@ -2143,7 +2072,7 @@ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" + dependencies = [ + "bytes", + "fnv", +- "itoa 1.0.11", ++ "itoa 1.0.15", + ] + + [[package]] +@@ -2154,7 +2083,7 @@ checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" + dependencies = [ + "bytes", + "fnv", +- "itoa 1.0.11", ++ "itoa 1.0.15", + ] + + [[package]] +@@ -2180,12 +2109,12 @@ dependencies = [ + + [[package]] + name = "http-body-util" +-version = "0.1.2" ++version = "0.1.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" ++checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" + dependencies = [ + "bytes", +- "futures-util", ++ "futures-core", + "http 1.1.0", + "http-body 1.0.1", + "pin-project-lite", +@@ -2193,9 +2122,9 @@ dependencies = [ + + [[package]] + name = "httparse" +-version = "1.9.5" ++version = "1.10.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" ++checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + + [[package]] + name = "httpdate" +@@ -2205,22 +2134,22 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + + [[package]] + name = "hyper" +-version = "0.14.31" ++version = "0.14.29" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8c08302e8fa335b151b788c775ff56e7a03ae64ff85c548ee820fecb70356e85" ++checksum = "f361cde2f109281a220d4307746cdfd5ee3f410da58a70377762396775634b33" + dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", +- "h2", ++ "h2 0.3.27", + "http 0.2.12", + "http-body 0.4.6", + "httparse", + "httpdate", +- "itoa 1.0.11", ++ "itoa 1.0.15", + "pin-project-lite", +- "socket2", ++ "socket2 0.5.10", + "tokio", + "tower-service", + "tracing", +@@ -2229,19 +2158,22 @@ dependencies = [ + + [[package]] + name = "hyper" +-version = "1.5.0" ++version = "1.8.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a" ++checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" + dependencies = [ ++ "atomic-waker", + "bytes", + "futures-channel", +- "futures-util", ++ "futures-core", ++ "h2 0.4.12", + "http 1.1.0", + "http-body 1.0.1", + "httparse", + "httpdate", +- "itoa 1.0.11", ++ "itoa 1.0.15", + "pin-project-lite", ++ "pin-utils", + "smallvec", + "tokio", + "want", +@@ -2249,20 +2181,19 @@ dependencies = [ + + [[package]] + name = "hyper-rustls" +-version = "0.27.3" ++version = "0.26.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" ++checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c" + dependencies = [ + "futures-util", + "http 1.1.0", +- "hyper 1.5.0", ++ "hyper 1.8.1", + "hyper-util", + "rustls", + "rustls-pki-types", + "tokio", + "tokio-rustls", + "tower-service", +- "webpki-roots", + ] + + [[package]] +@@ -2272,7 +2203,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" + dependencies = [ + "bytes", +- "hyper 0.14.31", ++ "hyper 0.14.29", + "native-tls", + "tokio", + "tokio-native-tls", +@@ -2280,18 +2211,20 @@ dependencies = [ + + [[package]] + name = "hyper-util" +-version = "0.1.10" ++version = "0.1.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" ++checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56" + dependencies = [ + "bytes", + "futures-channel", ++ "futures-core", + "futures-util", + "http 1.1.0", + "http-body 1.0.1", +- "hyper 1.5.0", ++ "hyper 1.8.1", ++ "libc", + "pin-project-lite", +- "socket2", ++ "socket2 0.6.1", + "tokio", + "tower-service", + "tracing", +@@ -2299,16 +2232,17 @@ dependencies = [ + + [[package]] + name = "iana-time-zone" +-version = "0.1.61" ++version = "0.1.64" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" ++checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" + dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", ++ "log", + "wasm-bindgen", +- "windows-core 0.52.0", ++ "windows-core 0.62.2", + ] + + [[package]] +@@ -2322,12 +2256,93 @@ dependencies = [ + + [[package]] + name = "ico" +-version = "0.3.0" ++version = "0.4.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae" ++checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" + dependencies = [ + "byteorder", +- "png", ++ "png 0.17.16", ++] ++ ++[[package]] ++name = "icu_collections" ++version = "2.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" ++dependencies = [ ++ "displaydoc", ++ "potential_utf", ++ "yoke", ++ "zerofrom", ++ "zerovec", ++] ++ ++[[package]] ++name = "icu_locale_core" ++version = "2.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" ++dependencies = [ ++ "displaydoc", ++ "litemap", ++ "tinystr", ++ "writeable", ++ "zerovec", ++] ++ ++[[package]] ++name = "icu_normalizer" ++version = "2.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" ++dependencies = [ ++ "icu_collections", ++ "icu_normalizer_data", ++ "icu_properties", ++ "icu_provider", ++ "smallvec", ++ "zerovec", ++] ++ ++[[package]] ++name = "icu_normalizer_data" ++version = "2.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" ++ ++[[package]] ++name = "icu_properties" ++version = "2.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" ++dependencies = [ ++ "icu_collections", ++ "icu_locale_core", ++ "icu_properties_data", ++ "icu_provider", ++ "zerotrie", ++ "zerovec", ++] ++ ++[[package]] ++name = "icu_properties_data" ++version = "2.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" ++ ++[[package]] ++name = "icu_provider" ++version = "2.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" ++dependencies = [ ++ "displaydoc", ++ "icu_locale_core", ++ "writeable", ++ "yoke", ++ "zerofrom", ++ "zerotrie", ++ "zerovec", + ] + + [[package]] +@@ -2338,53 +2353,39 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + + [[package]] + name = "idna" +-version = "0.5.0" ++version = "1.1.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" ++checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" + dependencies = [ +- "unicode-bidi", +- "unicode-normalization", ++ "idna_adapter", ++ "smallvec", ++ "utf8_iter", + ] + + [[package]] +-name = "image" +-version = "0.25.4" ++name = "idna_adapter" ++version = "1.2.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "bc144d44a31d753b02ce64093d532f55ff8dc4ebf2ffb8a63c0dda691385acae" ++checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" + dependencies = [ +- "bytemuck", +- "byteorder-lite", +- "color_quant", +- "exr", +- "gif", +- "image-webp", +- "num-traits", +- "png", +- "qoi", +- "ravif", +- "rayon", +- "rgb", +- "tiff", +- "zune-core", +- "zune-jpeg", ++ "icu_normalizer", ++ "icu_properties", + ] + + [[package]] +-name = "image-webp" +-version = "0.2.0" ++name = "image" ++version = "0.25.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e031e8e3d94711a9ccb5d6ea357439ef3dcbed361798bd4071dc4d9793fbe22f" ++checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a" + dependencies = [ ++ "bytemuck", + "byteorder-lite", +- "quick-error", ++ "moxcms", ++ "num-traits", ++ "png 0.18.0", ++ "tiff", + ] + +-[[package]] +-name = "imgref" +-version = "1.11.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408" +- + [[package]] + name = "indexmap" + version = "1.9.3" +@@ -2398,13 +2399,14 @@ dependencies = [ + + [[package]] + name = "indexmap" +-version = "2.6.0" ++version = "2.12.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da" ++checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" + dependencies = [ + "equivalent", +- "hashbrown 0.15.0", ++ "hashbrown 0.16.0", + "serde", ++ "serde_core", + ] + + [[package]] +@@ -2426,23 +2428,12 @@ dependencies = [ + ] + + [[package]] +-name = "instant" +-version = "0.1.13" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +-dependencies = [ +- "cfg-if", +-] +- +-[[package]] +-name = "interpolate_name" +-version = "0.2.4" ++name = "infer" ++version = "0.19.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" ++checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" + dependencies = [ +- "proc-macro2", +- "quote", +- "syn 2.0.98", ++ "cfb", + ] + + [[package]] +@@ -2460,7 +2451,7 @@ dependencies = [ + "once_cell", + "rustc_version", + "spinning", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + "to_method", + "winapi", + ] +@@ -2473,9 +2464,9 @@ checksum = "ae52f28f45ac2bc96edb7714de995cffc174a395fb0abf5bff453587c980d7b9" + + [[package]] + name = "ipnet" +-version = "2.10.1" ++version = "2.11.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" ++checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + + [[package]] + name = "is-docker" +@@ -2496,15 +2487,6 @@ dependencies = [ + "once_cell", + ] + +-[[package]] +-name = "itertools" +-version = "0.12.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +-dependencies = [ +- "either", +-] +- + [[package]] + name = "itoa" + version = "0.4.8" +@@ -2513,9 +2495,9 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" + + [[package]] + name = "itoa" +-version = "1.0.11" ++version = "1.0.15" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" ++checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + + [[package]] + name = "javascriptcore-rs" +@@ -2551,7 +2533,7 @@ dependencies = [ + "combine", + "jni-sys", + "log", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + "walkdir", + "windows-sys 0.45.0", + ] +@@ -2562,27 +2544,13 @@ version = "0.3.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + +-[[package]] +-name = "jobserver" +-version = "0.1.32" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +-dependencies = [ +- "libc", +-] +- +-[[package]] +-name = "jpeg-decoder" +-version = "0.3.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" +- + [[package]] + name = "js-sys" +-version = "0.3.72" ++version = "0.3.82" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9" ++checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" + dependencies = [ ++ "once_cell", + "wasm-bindgen", + ] + +@@ -2595,7 +2563,7 @@ dependencies = [ + "jsonptr 0.4.7", + "serde", + "serde_json", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + ] + + [[package]] +@@ -2607,7 +2575,7 @@ dependencies = [ + "jsonptr 0.6.3", + "serde", + "serde_json", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + ] + + [[package]] +@@ -2637,7 +2605,7 @@ version = "0.7.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "serde", + "unicode-segmentation", + ] +@@ -2657,15 +2625,9 @@ dependencies = [ + + [[package]] + name = "lazy_static" +-version = "1.5.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +- +-[[package]] +-name = "lebe" +-version = "0.5.2" ++version = "1.4.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" ++checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + + [[package]] + name = "libappindicator" +@@ -2693,20 +2655,9 @@ dependencies = [ + + [[package]] + name = "libc" +-version = "0.2.161" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" +- +-[[package]] +-name = "libfuzzer-sys" +-version = "0.4.7" ++version = "0.2.177" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" +-dependencies = [ +- "arbitrary", +- "cc", +- "once_cell", +-] ++checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" + + [[package]] + name = "libloading" +@@ -2720,59 +2671,61 @@ dependencies = [ + + [[package]] + name = "libloading" +-version = "0.8.5" ++version = "0.8.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" ++checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" + dependencies = [ + "cfg-if", +- "windows-targets 0.52.6", ++ "windows-link 0.2.1", + ] + + [[package]] + name = "libredox" +-version = "0.1.3" ++version = "0.1.10" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" ++checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "libc", + "redox_syscall", + ] + + [[package]] + name = "linux-raw-sys" +-version = "0.4.14" ++version = "0.4.15" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" ++ ++[[package]] ++name = "linux-raw-sys" ++version = "0.11.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" ++checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" ++ ++[[package]] ++name = "litemap" ++version = "0.8.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + + [[package]] + name = "lock_api" +-version = "0.4.12" ++version = "0.4.14" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" ++checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" + dependencies = [ +- "autocfg", + "scopeguard", + ] + + [[package]] + name = "log" +-version = "0.4.22" ++version = "0.4.28" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" ++checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" + dependencies = [ + "value-bag", + ] + +-[[package]] +-name = "loop9" +-version = "0.1.5" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" +-dependencies = [ +- "imgref", +-] +- + [[package]] + name = "mac" + version = "0.1.1" +@@ -2781,15 +2734,14 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + + [[package]] + name = "mac-notification-sys" +-version = "0.6.2" ++version = "0.6.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dce8f34f3717aa37177e723df6c1fc5fb02b2a1087374ea3fe0ea42316dc8f91" ++checksum = "4ee70bb2bba058d58e252d2944582d634fc884fc9c489a966d428dedcf653e97" + dependencies = [ + "cc", +- "dirs-next", +- "objc-foundation", +- "objc_id", +- "time", ++ "objc2 0.6.3", ++ "objc2-foundation 0.3.2", ++ "time 0.3.44", + ] + + [[package]] +@@ -2827,20 +2779,11 @@ version = "0.7.3" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +-[[package]] +-name = "maybe-rayon" +-version = "0.1.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" +-dependencies = [ +- "cfg-if", +-] +- + [[package]] + name = "memchr" +-version = "2.7.4" ++version = "2.7.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" ++checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + + [[package]] + name = "memoffset" +@@ -2857,23 +2800,17 @@ version = "0.3.17" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +-[[package]] +-name = "minimal-lexical" +-version = "0.2.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" +- + [[package]] + name = "minisign-verify" +-version = "0.2.2" ++version = "0.2.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a05b5d0594e0cb1ad8cee3373018d2b84e25905dc75b2468114cc9a8e86cfc20" ++checksum = "e856fdd13623a2f5f2f54676a4ee49502a96a80ef4a62bcedd23d52427c44d43" + + [[package]] + name = "miniz_oxide" +-version = "0.8.0" ++version = "0.8.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" ++checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" + dependencies = [ + "adler2", + "simd-adler32", +@@ -2881,41 +2818,51 @@ dependencies = [ + + [[package]] + name = "mio" +-version = "1.0.2" ++version = "0.8.11" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" ++checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" + dependencies = [ +- "hermit-abi 0.3.9", + "libc", +- "wasi 0.11.0+wasi-snapshot-preview1", +- "windows-sys 0.52.0", ++ "log", ++ "wasi 0.11.1+wasi-snapshot-preview1", ++ "windows-sys 0.48.0", ++] ++ ++[[package]] ++name = "moxcms" ++version = "0.7.9" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0fbdd3d7436f8b5e892b8b7ea114271ff0fa00bc5acae845d53b07d498616ef6" ++dependencies = [ ++ "num-traits", ++ "pxfm", + ] + + [[package]] + name = "muda" +-version = "0.15.2" ++version = "0.15.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b18047edf23933de40835403d4b9211ffd1dcc65c0eec569df38a1fb8aebd719" ++checksum = "fdae9c00e61cc0579bcac625e8ad22104c60548a025bfc972dc83868a28e1484" + dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", + "once_cell", +- "png", ++ "png 0.17.16", + "serde", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + "windows-sys 0.59.0", + ] + + [[package]] + name = "native-tls" +-version = "0.2.12" ++version = "0.2.14" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" ++checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" + dependencies = [ + "libc", + "log", +@@ -2934,13 +2881,13 @@ version = "0.9.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "jni-sys", + "log", + "ndk-sys", + "num_enum", + "raw-window-handle", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + ] + + [[package]] +@@ -2966,12 +2913,13 @@ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + + [[package]] + name = "nix" +-version = "0.27.1" ++version = "0.28.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" ++checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "cfg-if", ++ "cfg_aliases 0.1.1", + "libc", + "memoffset", + ] +@@ -2982,56 +2930,43 @@ version = "0.29.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "cfg-if", + "cfg_aliases 0.2.1", + "libc", +- "memoffset", + ] + + [[package]] +-name = "nodrop" +-version = "0.1.14" ++name = "nix" ++version = "0.30.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" +- +-[[package]] +-name = "nom" +-version = "7.1.3" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" ++checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" + dependencies = [ +- "memchr", +- "minimal-lexical", ++ "bitflags 2.10.0", ++ "cfg-if", ++ "cfg_aliases 0.2.1", ++ "libc", ++ "memoffset", + ] + + [[package]] +-name = "noop_proc_macro" +-version = "0.3.0" ++name = "nodrop" ++version = "0.1.14" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" ++checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + + [[package]] + name = "notify-rust" +-version = "4.11.3" ++version = "4.11.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5134a72dc570b178bff81b01e81ab14a6fcc015391ed4b3b14853090658cd3a3" ++checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400" + dependencies = [ ++ "futures-lite", + "log", + "mac-notification-sys", + "serde", + "tauri-winrt-notification", +- "zbus 4.0.1", +-] +- +-[[package]] +-name = "num-bigint" +-version = "0.4.6" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +-dependencies = [ +- "num-integer", +- "num-traits", ++ "zbus 5.12.0", + ] + + [[package]] +@@ -3040,17 +2975,6 @@ version = "0.1.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +-[[package]] +-name = "num-derive" +-version = "0.4.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" +-dependencies = [ +- "proc-macro2", +- "quote", +- "syn 2.0.98", +-] +- + [[package]] + name = "num-integer" + version = "0.1.46" +@@ -3061,44 +2985,44 @@ dependencies = [ + ] + + [[package]] +-name = "num-rational" +-version = "0.4.2" ++name = "num-traits" ++version = "0.2.19" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" ++checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" + dependencies = [ +- "num-bigint", +- "num-integer", +- "num-traits", ++ "autocfg", + ] + + [[package]] +-name = "num-traits" +-version = "0.2.19" ++name = "num_cpus" ++version = "1.17.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" ++checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" + dependencies = [ +- "autocfg", ++ "hermit-abi", ++ "libc", + ] + + [[package]] + name = "num_enum" +-version = "0.7.3" ++version = "0.7.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" ++checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" + dependencies = [ + "num_enum_derive", ++ "rustversion", + ] + + [[package]] + name = "num_enum_derive" +-version = "0.7.3" ++version = "0.7.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" ++checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" + dependencies = [ +- "proc-macro-crate 1.3.1", ++ "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -3119,17 +3043,6 @@ dependencies = [ + "malloc_buf", + ] + +-[[package]] +-name = "objc-foundation" +-version = "0.1.1" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" +-dependencies = [ +- "block", +- "objc", +- "objc_id", +-] +- + [[package]] + name = "objc-sys" + version = "0.3.5" +@@ -3141,12 +3054,12 @@ dependencies = [ + + [[package]] + name = "objc2" +-version = "0.4.1" ++version = "0.3.0-beta.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "559c5a40fdd30eb5e344fbceacf7595a81e242529fb4e21cf5f43fb4f11ff98d" ++checksum = "ef3a6024722b4230242a53e5b5759ce117548983696b8e4b7bc2fd1f8fce621e" + dependencies = [ + "objc-sys", +- "objc2-encode 3.0.0", ++ "objc2-encode 2.0.0-pre.4", + ] + + [[package]] +@@ -3156,7 +3069,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" + dependencies = [ + "objc-sys", +- "objc2-encode 4.0.3", ++ "objc2-encode 4.1.0", ++] ++ ++[[package]] ++name = "objc2" ++version = "0.6.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" ++dependencies = [ ++ "objc2-encode 4.1.0", + ] + + [[package]] +@@ -3165,14 +3087,27 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "libc", + "objc2 0.5.2", +- "objc2-core-data", +- "objc2-core-image", +- "objc2-foundation", +- "objc2-quartz-core", ++ "objc2-core-data 0.2.2", ++ "objc2-core-image 0.2.2", ++ "objc2-foundation 0.2.2", ++ "objc2-quartz-core 0.2.2", ++] ++ ++[[package]] ++name = "objc2-app-kit" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" ++dependencies = [ ++ "bitflags 2.10.0", ++ "objc2 0.6.3", ++ "objc2-core-foundation", ++ "objc2-core-graphics", ++ "objc2-foundation 0.3.2", + ] + + [[package]] +@@ -3181,11 +3116,22 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-core-location", +- "objc2-foundation", ++ "objc2-core-location 0.2.2", ++ "objc2-foundation 0.2.2", ++] ++ ++[[package]] ++name = "objc2-cloud-kit" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" ++dependencies = [ ++ "bitflags 2.10.0", ++ "objc2 0.6.3", ++ "objc2-foundation 0.3.2", + ] + + [[package]] +@@ -3194,9 +3140,9 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" + dependencies = [ +- "block2", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", + ] + + [[package]] +@@ -3205,10 +3151,44 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", ++] ++ ++[[package]] ++name = "objc2-core-data" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa" ++dependencies = [ ++ "objc2 0.6.3", ++ "objc2-foundation 0.3.2", ++] ++ ++[[package]] ++name = "objc2-core-foundation" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" ++dependencies = [ ++ "bitflags 2.10.0", ++ "dispatch2", ++ "objc2 0.6.3", ++] ++ ++[[package]] ++name = "objc2-core-graphics" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" ++dependencies = [ ++ "bitflags 2.10.0", ++ "dispatch2", ++ "objc2 0.6.3", ++ "objc2-core-foundation", ++ "objc2-io-surface", + ] + + [[package]] +@@ -3217,35 +3197,67 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" + dependencies = [ +- "block2", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", + "objc2-metal", + ] + ++[[package]] ++name = "objc2-core-image" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006" ++dependencies = [ ++ "objc2 0.6.3", ++ "objc2-foundation 0.3.2", ++] ++ + [[package]] + name = "objc2-core-location" + version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" + dependencies = [ +- "block2", ++ "block2 0.5.1", + "objc2 0.5.2", + "objc2-contacts", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", ++] ++ ++[[package]] ++name = "objc2-core-location" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009" ++dependencies = [ ++ "objc2 0.6.3", ++ "objc2-foundation 0.3.2", ++] ++ ++[[package]] ++name = "objc2-core-text" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" ++dependencies = [ ++ "bitflags 2.10.0", ++ "objc2 0.6.3", ++ "objc2-core-foundation", ++ "objc2-core-graphics", + ] + + [[package]] + name = "objc2-encode" +-version = "3.0.0" ++version = "2.0.0-pre.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d079845b37af429bfe5dfa76e6d087d788031045b25cfc6fd898486fd9847666" ++checksum = "8f8f7297b786454a87e392631e2b2754ed59a7b413effa8521225d93f46b2192" + + [[package]] + name = "objc2-encode" +-version = "4.0.3" ++version = "4.1.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" ++checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + + [[package]] + name = "objc2-foundation" +@@ -3253,23 +3265,47 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "dispatch", + "libc", + "objc2 0.5.2", + ] + ++[[package]] ++name = "objc2-foundation" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" ++dependencies = [ ++ "bitflags 2.10.0", ++ "block2 0.6.2", ++ "libc", ++ "objc2 0.6.3", ++ "objc2-core-foundation", ++] ++ ++[[package]] ++name = "objc2-io-surface" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" ++dependencies = [ ++ "bitflags 2.10.0", ++ "objc2 0.6.3", ++ "objc2-core-foundation", ++] ++ + [[package]] + name = "objc2-link-presentation" + version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" + dependencies = [ +- "block2", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", + ] + + [[package]] +@@ -3278,10 +3314,10 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", + ] + + [[package]] +@@ -3290,13 +3326,25 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", + "objc2-metal", + ] + ++[[package]] ++name = "objc2-quartz-core" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" ++dependencies = [ ++ "bitflags 2.10.0", ++ "objc2 0.6.3", ++ "objc2-core-foundation", ++ "objc2-foundation 0.3.2", ++] ++ + [[package]] + name = "objc2-symbols" + version = "0.2.2" +@@ -3304,7 +3352,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" + dependencies = [ + "objc2 0.5.2", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", + ] + + [[package]] +@@ -3313,88 +3361,102 @@ version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-cloud-kit", +- "objc2-core-data", +- "objc2-core-image", +- "objc2-core-location", +- "objc2-foundation", ++ "objc2-cloud-kit 0.2.2", ++ "objc2-core-data 0.2.2", ++ "objc2-core-image 0.2.2", ++ "objc2-core-location 0.2.2", ++ "objc2-foundation 0.2.2", + "objc2-link-presentation", +- "objc2-quartz-core", ++ "objc2-quartz-core 0.2.2", + "objc2-symbols", + "objc2-uniform-type-identifiers", +- "objc2-user-notifications", ++ "objc2-user-notifications 0.2.2", + ] + + [[package]] +-name = "objc2-uniform-type-identifiers" +-version = "0.2.2" ++name = "objc2-ui-kit" ++version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" ++checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" + dependencies = [ +- "block2", +- "objc2 0.5.2", +- "objc2-foundation", ++ "bitflags 2.10.0", ++ "block2 0.6.2", ++ "objc2 0.6.3", ++ "objc2-cloud-kit 0.3.2", ++ "objc2-core-data 0.3.2", ++ "objc2-core-foundation", ++ "objc2-core-graphics", ++ "objc2-core-image 0.3.2", ++ "objc2-core-location 0.3.2", ++ "objc2-core-text", ++ "objc2-foundation 0.3.2", ++ "objc2-quartz-core 0.3.2", ++ "objc2-user-notifications 0.3.2", + ] + + [[package]] +-name = "objc2-user-notifications" ++name = "objc2-uniform-type-identifiers" + version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" ++checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-core-location", +- "objc2-foundation", ++ "objc2-foundation 0.2.2", + ] + + [[package]] +-name = "objc2-web-kit" ++name = "objc2-user-notifications" + version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "68bc69301064cebefc6c4c90ce9cba69225239e4b8ff99d445a2b5563797da65" ++checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" + dependencies = [ +- "bitflags 2.6.0", +- "block2", ++ "bitflags 2.10.0", ++ "block2 0.5.1", + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2-core-location 0.2.2", ++ "objc2-foundation 0.2.2", + ] + + [[package]] +-name = "objc_id" +-version = "0.1.1" ++name = "objc2-user-notifications" ++version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" ++checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e" + dependencies = [ +- "objc", ++ "objc2 0.6.3", ++ "objc2-foundation 0.3.2", + ] + + [[package]] +-name = "object" +-version = "0.36.5" ++name = "objc2-web-kit" ++version = "0.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" ++checksum = "68bc69301064cebefc6c4c90ce9cba69225239e4b8ff99d445a2b5563797da65" + dependencies = [ +- "memchr", ++ "bitflags 2.10.0", ++ "block2 0.5.1", ++ "objc2 0.5.2", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", + ] + + [[package]] + name = "once_cell" +-version = "1.20.2" ++version = "1.21.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" ++checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + + [[package]] + name = "open" +-version = "5.3.0" ++version = "5.3.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "61a877bf6abd716642a53ef1b89fb498923a4afca5c754f9050b4d081c05c4b3" ++checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc" + dependencies = [ ++ "dunce", + "is-wsl", + "libc", + "pathdiff", +@@ -3402,11 +3464,11 @@ dependencies = [ + + [[package]] + name = "openssl" +-version = "0.10.68" ++version = "0.10.75" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" ++checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "cfg-if", + "foreign-types 0.3.2", + "libc", +@@ -3423,20 +3485,20 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "openssl-probe" +-version = "0.1.5" ++version = "0.1.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" ++checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" + + [[package]] + name = "openssl-sys" +-version = "0.9.104" ++version = "0.9.111" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" ++checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" + dependencies = [ + "cc", + "libc", +@@ -3462,23 +3524,28 @@ dependencies = [ + + [[package]] + name = "os_info" +-version = "3.8.2" ++version = "3.13.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092" ++checksum = "7c39b5918402d564846d5aba164c09a66cc88d232179dfd3e3c619a25a268392" + dependencies = [ ++ "android_system_properties", + "log", ++ "nix 0.30.1", ++ "objc2 0.6.3", ++ "objc2-foundation 0.3.2", ++ "objc2-ui-kit 0.3.2", + "serde", +- "windows-sys 0.52.0", ++ "windows-sys 0.61.2", + ] + + [[package]] + name = "os_pipe" +-version = "1.2.1" ++version = "1.2.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982" ++checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967" + dependencies = [ + "libc", +- "windows-sys 0.59.0", ++ "windows-sys 0.61.2", + ] + + [[package]] +@@ -3514,9 +3581,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + + [[package]] + name = "parking_lot" +-version = "0.12.3" ++version = "0.12.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" ++checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" + dependencies = [ + "lock_api", + "parking_lot_core", +@@ -3524,34 +3591,28 @@ dependencies = [ + + [[package]] + name = "parking_lot_core" +-version = "0.9.10" ++version = "0.9.12" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" ++checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" + dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", +- "windows-targets 0.52.6", ++ "windows-link 0.2.1", + ] + +-[[package]] +-name = "paste" +-version = "1.0.15" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" +- + [[package]] + name = "pathdiff" +-version = "0.2.2" ++version = "0.2.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361" ++checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" + + [[package]] + name = "percent-encoding" +-version = "2.3.1" ++version = "2.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" ++checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + + [[package]] + name = "phf" +@@ -3575,12 +3636,12 @@ dependencies = [ + + [[package]] + name = "phf" +-version = "0.11.2" ++version = "0.11.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" ++checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" + dependencies = [ +- "phf_macros 0.11.2", +- "phf_shared 0.11.2", ++ "phf_macros 0.11.3", ++ "phf_shared 0.11.3", + ] + + [[package]] +@@ -3625,11 +3686,11 @@ dependencies = [ + + [[package]] + name = "phf_generator" +-version = "0.11.2" ++version = "0.11.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" ++checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" + dependencies = [ +- "phf_shared 0.11.2", ++ "phf_shared 0.11.3", + "rand 0.8.5", + ] + +@@ -3649,15 +3710,15 @@ dependencies = [ + + [[package]] + name = "phf_macros" +-version = "0.11.2" ++version = "0.11.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" ++checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" + dependencies = [ +- "phf_generator 0.11.2", +- "phf_shared 0.11.2", ++ "phf_generator 0.11.3", ++ "phf_shared 0.11.3", + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -3666,7 +3727,7 @@ version = "0.8.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" + dependencies = [ +- "siphasher", ++ "siphasher 0.3.11", + ] + + [[package]] +@@ -3675,23 +3736,43 @@ version = "0.10.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" + dependencies = [ +- "siphasher", ++ "siphasher 0.3.11", + ] + + [[package]] + name = "phf_shared" +-version = "0.11.2" ++version = "0.11.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" ++dependencies = [ ++ "siphasher 1.0.1", ++] ++ ++[[package]] ++name = "pin-project" ++version = "1.1.10" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" ++dependencies = [ ++ "pin-project-internal", ++] ++ ++[[package]] ++name = "pin-project-internal" ++version = "1.1.10" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" ++checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" + dependencies = [ +- "siphasher", ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", + ] + + [[package]] + name = "pin-project-lite" +-version = "0.2.15" ++version = "0.2.16" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" ++checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + + [[package]] + name = "pin-utils" +@@ -3712,28 +3793,28 @@ dependencies = [ + + [[package]] + name = "pkg-config" +-version = "0.3.31" ++version = "0.3.32" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" ++checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + + [[package]] + name = "plist" +-version = "1.7.0" ++version = "1.8.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016" ++checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" + dependencies = [ + "base64 0.22.1", +- "indexmap 2.6.0", +- "quick-xml 0.32.0", ++ "indexmap 2.12.0", ++ "quick-xml 0.38.4", + "serde", +- "time", ++ "time 0.3.44", + ] + + [[package]] + name = "png" +-version = "0.17.14" ++version = "0.17.16" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "52f9d46a34a05a6a57566bc2bfae066ef07585a6e3fa30fbbdff5936380623f0" ++checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" + dependencies = [ + "bitflags 1.3.2", + "crc32fast", +@@ -3742,19 +3823,40 @@ dependencies = [ + "miniz_oxide", + ] + ++[[package]] ++name = "png" ++version = "0.18.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0" ++dependencies = [ ++ "bitflags 2.10.0", ++ "crc32fast", ++ "fdeflate", ++ "flate2", ++ "miniz_oxide", ++] ++ + [[package]] + name = "polling" +-version = "3.7.3" ++version = "3.11.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" ++checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" + dependencies = [ + "cfg-if", + "concurrent-queue", +- "hermit-abi 0.4.0", ++ "hermit-abi", + "pin-project-lite", +- "rustix", +- "tracing", +- "windows-sys 0.59.0", ++ "rustix 1.1.2", ++ "windows-sys 0.61.2", ++] ++ ++[[package]] ++name = "potential_utf" ++version = "0.1.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" ++dependencies = [ ++ "zerovec", + ] + + [[package]] +@@ -3765,9 +3867,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + + [[package]] + name = "ppv-lite86" +-version = "0.2.20" ++version = "0.2.21" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" ++checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" + dependencies = [ + "zerocopy", + ] +@@ -3790,20 +3892,21 @@ dependencies = [ + + [[package]] + name = "proc-macro-crate" +-version = "2.0.0" ++version = "2.0.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" ++checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" + dependencies = [ ++ "toml_datetime 0.6.3", + "toml_edit 0.20.2", + ] + + [[package]] + name = "proc-macro-crate" +-version = "3.2.0" ++version = "3.4.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" ++checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" + dependencies = [ +- "toml_edit 0.22.24", ++ "toml_edit 0.23.7", + ] + + [[package]] +@@ -3838,32 +3941,13 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + + [[package]] + name = "proc-macro2" +-version = "1.0.93" ++version = "1.0.103" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" ++checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" + dependencies = [ + "unicode-ident", + ] + +-[[package]] +-name = "profiling" +-version = "1.0.16" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d" +-dependencies = [ +- "profiling-procmacros", +-] +- +-[[package]] +-name = "profiling-procmacros" +-version = "1.0.16" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" +-dependencies = [ +- "quote", +- "syn 2.0.98", +-] +- + [[package]] + name = "ptr_meta" + version = "0.1.4" +@@ -3885,12 +3969,12 @@ dependencies = [ + ] + + [[package]] +-name = "qoi" +-version = "0.4.1" ++name = "pxfm" ++version = "0.1.25" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" ++checksum = "a3cbdf373972bf78df4d3b518d07003938e2c7d1fb5891e55f9cb6df57009d84" + dependencies = [ +- "bytemuck", ++ "num-traits", + ] + + [[package]] +@@ -3901,92 +3985,40 @@ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" + + [[package]] + name = "quick-xml" +-version = "0.31.0" ++version = "0.37.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" ++checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" + dependencies = [ + "memchr", + ] + + [[package]] + name = "quick-xml" +-version = "0.32.0" ++version = "0.38.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" ++checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" + dependencies = [ + "memchr", + ] + + [[package]] +-name = "quick-xml" +-version = "0.36.2" ++name = "quote" ++version = "1.0.42" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" ++checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" + dependencies = [ +- "memchr", ++ "proc-macro2", + ] + + [[package]] +-name = "quinn" +-version = "0.11.5" ++name = "r-efi" ++version = "5.3.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" +-dependencies = [ +- "bytes", +- "pin-project-lite", +- "quinn-proto", +- "quinn-udp", +- "rustc-hash", +- "rustls", +- "socket2", +- "thiserror 1.0.66", +- "tokio", +- "tracing", +-] ++checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + + [[package]] +-name = "quinn-proto" +-version = "0.11.8" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" +-dependencies = [ +- "bytes", +- "rand 0.8.5", +- "ring", +- "rustc-hash", +- "rustls", +- "slab", +- "thiserror 1.0.66", +- "tinyvec", +- "tracing", +-] +- +-[[package]] +-name = "quinn-udp" +-version = "0.5.6" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e346e016eacfff12233c243718197ca12f148c84e1e84268a896699b41c71780" +-dependencies = [ +- "cfg_aliases 0.2.1", +- "libc", +- "once_cell", +- "socket2", +- "tracing", +- "windows-sys 0.59.0", +-] +- +-[[package]] +-name = "quote" +-version = "1.0.37" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +-dependencies = [ +- "proc-macro2", +-] +- +-[[package]] +-name = "radium" +-version = "0.7.0" ++name = "radium" ++version = "0.7.0" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +@@ -4050,7 +4082,7 @@ version = "0.6.4" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" + dependencies = [ +- "getrandom 0.2.15", ++ "getrandom 0.2.16", + ] + + [[package]] +@@ -4072,105 +4104,67 @@ dependencies = [ + ] + + [[package]] +-name = "rav1e" +-version = "0.7.1" ++name = "raw-window-handle" ++version = "0.6.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" +-dependencies = [ +- "arbitrary", +- "arg_enum_proc_macro", +- "arrayvec 0.7.6", +- "av1-grain", +- "bitstream-io", +- "built", +- "cfg-if", +- "interpolate_name", +- "itertools", +- "libc", +- "libfuzzer-sys", +- "log", +- "maybe-rayon", +- "new_debug_unreachable", +- "noop_proc_macro", +- "num-derive", +- "num-traits", +- "once_cell", +- "paste", +- "profiling", +- "rand 0.8.5", +- "rand_chacha 0.3.1", +- "simd_helpers", +- "system-deps", +- "thiserror 1.0.66", +- "v_frame", +- "wasm-bindgen", +-] ++checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + + [[package]] +-name = "ravif" +-version = "0.11.11" ++name = "redox_syscall" ++version = "0.5.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2413fd96bd0ea5cdeeb37eaf446a22e6ed7b981d792828721e74ded1980a45c6" ++checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" + dependencies = [ +- "avif-serialize", +- "imgref", +- "loop9", +- "quick-error", +- "rav1e", +- "rgb", ++ "bitflags 2.10.0", + ] + + [[package]] +-name = "raw-window-handle" +-version = "0.6.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" +- +-[[package]] +-name = "rayon" +-version = "1.10.0" ++name = "redox_users" ++version = "0.4.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" ++checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" + dependencies = [ +- "either", +- "rayon-core", ++ "getrandom 0.2.16", ++ "libredox", ++ "thiserror 1.0.69", + ] + + [[package]] +-name = "rayon-core" +-version = "1.12.1" ++name = "redox_users" ++version = "0.5.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" ++checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" + dependencies = [ +- "crossbeam-deque", +- "crossbeam-utils", ++ "getrandom 0.2.16", ++ "libredox", ++ "thiserror 2.0.17", + ] + + [[package]] +-name = "redox_syscall" +-version = "0.5.7" ++name = "ref-cast" ++version = "1.0.25" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" ++checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" + dependencies = [ +- "bitflags 2.6.0", ++ "ref-cast-impl", + ] + + [[package]] +-name = "redox_users" +-version = "0.4.6" ++name = "ref-cast-impl" ++version = "1.0.25" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" ++checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" + dependencies = [ +- "getrandom 0.2.15", +- "libredox", +- "thiserror 1.0.66", ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", + ] + + [[package]] + name = "regex" +-version = "1.11.1" ++version = "1.10.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" ++checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" + dependencies = [ + "aho-corasick", + "memchr", +@@ -4180,9 +4174,9 @@ dependencies = [ + + [[package]] + name = "regex-automata" +-version = "0.4.8" ++version = "0.4.13" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" ++checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" + dependencies = [ + "aho-corasick", + "memchr", +@@ -4191,9 +4185,9 @@ dependencies = [ + + [[package]] + name = "regex-syntax" +-version = "0.8.5" ++version = "0.8.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" ++checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" + + [[package]] + name = "rend" +@@ -4206,19 +4200,19 @@ dependencies = [ + + [[package]] + name = "reqwest" +-version = "0.11.27" ++version = "0.11.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" ++checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" + dependencies = [ + "base64 0.21.7", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", +- "h2", ++ "h2 0.3.27", + "http 0.2.12", + "http-body 0.4.6", +- "hyper 0.14.31", ++ "hyper 0.14.29", + "hyper-tls", + "ipnet", + "js-sys", +@@ -4228,12 +4222,9 @@ dependencies = [ + "once_cell", + "percent-encoding", + "pin-project-lite", +- "rustls-pemfile 1.0.4", + "serde", + "serde_json", + "serde_urlencoded", +- "sync_wrapper 0.1.2", +- "system-configuration", + "tokio", + "tokio-native-tls", + "tower-service", +@@ -4241,14 +4232,14 @@ dependencies = [ + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +- "winreg 0.50.0", ++ "winreg 0.10.1", + ] + + [[package]] + name = "reqwest" +-version = "0.12.9" ++version = "0.12.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" ++checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" + dependencies = [ + "base64 0.22.1", + "bytes", +@@ -4257,7 +4248,7 @@ dependencies = [ + "http 1.1.0", + "http-body 1.0.1", + "http-body-util", +- "hyper 1.5.0", ++ "hyper 1.8.1", + "hyper-rustls", + "hyper-util", + "ipnet", +@@ -4267,14 +4258,13 @@ dependencies = [ + "once_cell", + "percent-encoding", + "pin-project-lite", +- "quinn", + "rustls", +- "rustls-pemfile 2.2.0", ++ "rustls-pemfile", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", +- "sync_wrapper 1.0.1", ++ "sync_wrapper 0.1.2", + "tokio", + "tokio-rustls", + "tokio-util", +@@ -4284,8 +4274,8 @@ dependencies = [ + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +- "webpki-roots", +- "windows-registry", ++ "webpki-roots 0.26.11", ++ "winreg 0.52.0", + ] + + [[package]] +@@ -4295,15 +4285,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "8af382a047821a08aa6bfc09ab0d80ff48d45d8726f7cd8e44891f7cb4a4278e" + dependencies = [ + "ashpd", +- "block2", ++ "block2 0.5.1", + "glib-sys", + "gobject-sys", + "gtk-sys", + "js-sys", + "log", + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", + "raw-window-handle", + "wasm-bindgen", + "wasm-bindgen-futures", +@@ -4311,23 +4301,16 @@ dependencies = [ + "windows-sys 0.48.0", + ] + +-[[package]] +-name = "rgb" +-version = "0.8.50" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" +- + [[package]] + name = "ring" +-version = "0.17.8" ++version = "0.17.14" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" ++checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" + dependencies = [ + "cc", + "cfg-if", +- "getrandom 0.2.15", ++ "getrandom 0.2.16", + "libc", +- "spin", + "untrusted", + "windows-sys 0.52.0", + ] +@@ -4363,9 +4346,9 @@ dependencies = [ + + [[package]] + name = "rust_decimal" +-version = "1.36.0" ++version = "1.39.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" ++checksum = "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282" + dependencies = [ + "arrayvec 0.7.6", + "borsh", +@@ -4377,18 +4360,6 @@ dependencies = [ + "serde_json", + ] + +-[[package]] +-name = "rustc-demangle" +-version = "0.1.24" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" +- +-[[package]] +-name = "rustc-hash" +-version = "2.0.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" +- + [[package]] + name = "rustc_version" + version = "0.4.1" +@@ -4400,24 +4371,37 @@ dependencies = [ + + [[package]] + name = "rustix" +-version = "0.38.38" ++version = "0.38.44" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a" ++checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "errno", + "libc", +- "linux-raw-sys", +- "windows-sys 0.52.0", ++ "linux-raw-sys 0.4.15", ++ "windows-sys 0.59.0", ++] ++ ++[[package]] ++name = "rustix" ++version = "1.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" ++dependencies = [ ++ "bitflags 2.10.0", ++ "errno", ++ "libc", ++ "linux-raw-sys 0.11.0", ++ "windows-sys 0.61.2", + ] + + [[package]] + name = "rustls" +-version = "0.23.16" ++version = "0.22.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e" ++checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" + dependencies = [ +- "once_cell", ++ "log", + "ring", + "rustls-pki-types", + "rustls-webpki", +@@ -4425,15 +4409,6 @@ dependencies = [ + "zeroize", + ] + +-[[package]] +-name = "rustls-pemfile" +-version = "1.0.4" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +-dependencies = [ +- "base64 0.21.7", +-] +- + [[package]] + name = "rustls-pemfile" + version = "2.2.0" +@@ -4445,9 +4420,12 @@ dependencies = [ + + [[package]] + name = "rustls-pki-types" +-version = "1.10.0" ++version = "1.13.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b" ++checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" ++dependencies = [ ++ "zeroize", ++] + + [[package]] + name = "rustls-webpki" +@@ -4462,15 +4440,15 @@ dependencies = [ + + [[package]] + name = "rustversion" +-version = "1.0.18" ++version = "1.0.22" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" ++checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + + [[package]] + name = "ryu" +-version = "1.0.18" ++version = "1.0.20" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" ++checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" + + [[package]] + name = "same-file" +@@ -4483,18 +4461,18 @@ dependencies = [ + + [[package]] + name = "schannel" +-version = "0.1.26" ++version = "0.1.28" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1" ++checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" + dependencies = [ +- "windows-sys 0.59.0", ++ "windows-sys 0.61.2", + ] + + [[package]] + name = "schemars" +-version = "0.8.21" ++version = "0.8.22" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92" ++checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" + dependencies = [ + "dyn-clone", + "indexmap 1.9.3", +@@ -4505,16 +4483,40 @@ dependencies = [ + "uuid", + ] + ++[[package]] ++name = "schemars" ++version = "0.9.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" ++dependencies = [ ++ "dyn-clone", ++ "ref-cast", ++ "serde", ++ "serde_json", ++] ++ ++[[package]] ++name = "schemars" ++version = "1.1.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289" ++dependencies = [ ++ "dyn-clone", ++ "ref-cast", ++ "serde", ++ "serde_json", ++] ++ + [[package]] + name = "schemars_derive" +-version = "0.8.21" ++version = "0.8.22" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e" ++checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" + dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -4541,7 +4543,7 @@ version = "2.11.1" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "core-foundation 0.9.4", + "core-foundation-sys", + "libc", +@@ -4550,9 +4552,9 @@ dependencies = [ + + [[package]] + name = "security-framework-sys" +-version = "2.12.0" ++version = "2.15.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" ++checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" + dependencies = [ + "core-foundation-sys", + "libc", +@@ -4580,42 +4582,53 @@ dependencies = [ + + [[package]] + name = "semver" +-version = "1.0.23" ++version = "1.0.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" ++checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" + dependencies = [ + "serde", + ] + + [[package]] + name = "serde" +-version = "1.0.214" ++version = "1.0.228" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5" ++checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" + dependencies = [ ++ "serde_core", + "serde_derive", + ] + + [[package]] + name = "serde-untagged" +-version = "0.1.6" ++version = "0.1.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2676ba99bd82f75cae5cbd2c8eda6fa0b8760f18978ea840e980dd5567b5c5b6" ++checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" + dependencies = [ + "erased-serde", + "serde", ++ "serde_core", + "typeid", + ] + ++[[package]] ++name = "serde_core" ++version = "1.0.228" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" ++dependencies = [ ++ "serde_derive", ++] ++ + [[package]] + name = "serde_derive" +-version = "1.0.214" ++version = "1.0.228" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766" ++checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -4626,29 +4639,31 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "serde_json" +-version = "1.0.132" ++version = "1.0.145" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03" ++checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" + dependencies = [ +- "itoa 1.0.11", ++ "itoa 1.0.15", + "memchr", + "ryu", + "serde", ++ "serde_core", + ] + + [[package]] + name = "serde_path_to_error" +-version = "0.1.16" ++version = "0.1.20" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" ++checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" + dependencies = [ +- "itoa 1.0.11", ++ "itoa 1.0.15", + "serde", ++ "serde_core", + ] + + [[package]] +@@ -4659,29 +4674,38 @@ checksum = "0431a35568651e363364210c91983c1da5eb29404d9f0928b67d4ebcfa7d330c" + dependencies = [ + "percent-encoding", + "serde", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + ] + + [[package]] + name = "serde_repr" +-version = "0.1.19" ++version = "0.1.20" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" ++checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "serde_spanned" +-version = "0.6.8" ++version = "0.6.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" ++checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" + dependencies = [ + "serde", + ] + ++[[package]] ++name = "serde_spanned" ++version = "1.0.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392" ++dependencies = [ ++ "serde_core", ++] ++ + [[package]] + name = "serde_urlencoded" + version = "0.7.1" +@@ -4689,49 +4713,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" + dependencies = [ + "form_urlencoded", +- "itoa 1.0.11", ++ "itoa 1.0.15", + "ryu", + "serde", + ] + + [[package]] + name = "serde_with" +-version = "3.11.0" ++version = "3.16.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817" ++checksum = "10574371d41b0d9b2cff89418eda27da52bcaff2cc8741db26382a77c29131f1" + dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", +- "indexmap 2.6.0", +- "serde", +- "serde_derive", ++ "indexmap 2.12.0", ++ "schemars 0.9.0", ++ "schemars 1.1.0", ++ "serde_core", + "serde_json", + "serde_with_macros", +- "time", ++ "time 0.3.44", + ] + + [[package]] + name = "serde_with_macros" +-version = "3.11.0" ++version = "3.16.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d" ++checksum = "08a72d8216842fdd57820dc78d840bef99248e35fb2554ff923319e60f2d686b" + dependencies = [ + "darling", + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "serde_yaml" +-version = "0.9.34+deprecated" ++version = "0.9.21" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" ++checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c" + dependencies = [ +- "indexmap 2.6.0", +- "itoa 1.0.11", ++ "indexmap 1.9.3", ++ "itoa 1.0.15", + "ryu", + "serde", + "unsafe-libyaml", +@@ -4782,9 +4807,9 @@ dependencies = [ + + [[package]] + name = "sha2" +-version = "0.10.8" ++version = "0.10.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" ++checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" + dependencies = [ + "cfg-if", + "cpufeatures", +@@ -4793,12 +4818,13 @@ dependencies = [ + + [[package]] + name = "shared_child" +-version = "1.0.1" ++version = "1.1.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "09fa9338aed9a1df411814a5b2252f7cd206c55ae9bf2fa763f8de84603aa60c" ++checksum = "1e362d9935bc50f019969e2f9ecd66786612daae13e8f277be7bfb66e8bed3f7" + dependencies = [ + "libc", +- "windows-sys 0.59.0", ++ "sigchld", ++ "windows-sys 0.60.2", + ] + + [[package]] +@@ -4808,29 +4834,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + + [[package]] +-name = "signal-hook-registry" +-version = "1.4.2" ++name = "sigchld" ++version = "0.2.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" ++checksum = "47106eded3c154e70176fc83df9737335c94ce22f821c32d17ed1db1f83badb1" + dependencies = [ + "libc", ++ "os_pipe", ++ "signal-hook", + ] + + [[package]] +-name = "simd-adler32" +-version = "0.3.7" ++name = "signal-hook" ++version = "0.3.18" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" ++checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2" ++dependencies = [ ++ "libc", ++ "signal-hook-registry", ++] + + [[package]] +-name = "simd_helpers" +-version = "0.1.0" ++name = "signal-hook-registry" ++version = "1.4.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" ++checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" + dependencies = [ +- "quote", ++ "libc", + ] + ++[[package]] ++name = "simd-adler32" ++version = "0.3.7" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" ++ + [[package]] + name = "simdutf8" + version = "0.1.5" +@@ -4843,31 +4881,54 @@ version = "0.3.11" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + ++[[package]] ++name = "siphasher" ++version = "1.0.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" ++ + [[package]] + name = "slab" +-version = "0.4.9" ++version = "0.4.11" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +-dependencies = [ +- "autocfg", +-] ++checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" + + [[package]] + name = "smallvec" +-version = "1.13.2" ++version = "1.15.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" ++ ++[[package]] ++name = "socket2" ++version = "0.4.10" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" ++checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" ++dependencies = [ ++ "libc", ++ "winapi", ++] + + [[package]] + name = "socket2" +-version = "0.5.7" ++version = "0.5.10" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" ++checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" + dependencies = [ + "libc", + "windows-sys 0.52.0", + ] + ++[[package]] ++name = "socket2" ++version = "0.6.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" ++dependencies = [ ++ "libc", ++ "windows-sys 0.60.2", ++] ++ + [[package]] + name = "softbuffer" + version = "0.4.6" +@@ -4881,8 +4942,8 @@ dependencies = [ + "js-sys", + "log", + "objc2 0.5.2", +- "objc2-foundation", +- "objc2-quartz-core", ++ "objc2-foundation 0.2.2", ++ "objc2-quartz-core 0.2.2", + "raw-window-handle", + "redox_syscall", + "wasm-bindgen", +@@ -4916,12 +4977,6 @@ dependencies = [ + "system-deps", + ] + +-[[package]] +-name = "spin" +-version = "0.9.8" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +- + [[package]] + name = "spinning" + version = "0.1.0" +@@ -4933,9 +4988,9 @@ dependencies = [ + + [[package]] + name = "stable_deref_trait" +-version = "1.2.0" ++version = "1.2.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" ++checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + + [[package]] + name = "static_assertions" +@@ -4945,26 +5000,25 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + + [[package]] + name = "string_cache" +-version = "0.8.7" ++version = "0.8.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" ++checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" + dependencies = [ + "new_debug_unreachable", +- "once_cell", + "parking_lot", +- "phf_shared 0.10.0", ++ "phf_shared 0.11.3", + "precomputed-hash", + "serde", + ] + + [[package]] + name = "string_cache_codegen" +-version = "0.5.2" ++version = "0.5.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" ++checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" + dependencies = [ +- "phf_generator 0.10.0", +- "phf_shared 0.10.0", ++ "phf_generator 0.11.3", ++ "phf_shared 0.11.3", + "proc-macro2", + "quote", + ] +@@ -5014,27 +5068,15 @@ dependencies = [ + + [[package]] + name = "syn" +-version = "2.0.98" ++version = "2.0.110" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1" ++checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" + dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", + ] + +-[[package]] +-name = "syn_derive" +-version = "0.1.8" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b" +-dependencies = [ +- "proc-macro-error", +- "proc-macro2", +- "quote", +- "syn 2.0.98", +-] +- + [[package]] + name = "sync_wrapper" + version = "0.1.2" +@@ -5043,65 +5085,52 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" + + [[package]] + name = "sync_wrapper" +-version = "1.0.1" ++version = "1.0.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" ++ ++[[package]] ++name = "synstructure" ++version = "0.13.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" ++checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" + dependencies = [ +- "futures-core", ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", + ] + + [[package]] + name = "sys-locale" +-version = "0.3.1" ++version = "0.3.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" ++checksum = "8eab9a99a024a169fe8a903cf9d4a3b3601109bcc13bd9e3c6fff259138626c4" + dependencies = [ + "libc", + ] + + [[package]] +-name = "system-configuration" +-version = "0.5.1" ++name = "system-deps" ++version = "6.2.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" ++checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" + dependencies = [ +- "bitflags 1.3.2", +- "core-foundation 0.9.4", +- "system-configuration-sys", +-] +- +-[[package]] +-name = "system-configuration-sys" +-version = "0.5.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +-dependencies = [ +- "core-foundation-sys", +- "libc", +-] +- +-[[package]] +-name = "system-deps" +-version = "6.2.2" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" +-dependencies = [ +- "cfg-expr", +- "heck 0.5.0", +- "pkg-config", +- "toml 0.8.2", +- "version-compare", ++ "cfg-expr", ++ "heck 0.5.0", ++ "pkg-config", ++ "toml 0.8.2", ++ "version-compare", + ] + + [[package]] + name = "tao" +-version = "0.30.5" ++version = "0.31.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "63f1f6b2017cc33d7f6fc9c6186a2c0f5dfc985899a7b4fe9e64985c17533db3" ++checksum = "3731d04d4ac210cd5f344087733943b9bfb1a32654387dad4d1c70de21aee2c9" + dependencies = [ +- "bitflags 2.6.0", +- "cocoa 0.26.0", +- "core-foundation 0.10.0", ++ "bitflags 2.10.0", ++ "cocoa 0.26.1", ++ "core-foundation 0.10.1", + "core-graphics 0.24.0", + "crossbeam-channel", + "dispatch", +@@ -5110,7 +5139,6 @@ dependencies = [ + "gdkwayland-sys", + "gdkx11-sys", + "gtk", +- "instant", + "jni", + "lazy_static", + "libc", +@@ -5140,7 +5168,7 @@ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -5151,9 +5179,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + + [[package]] + name = "tar" +-version = "0.4.42" ++version = "0.4.44" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" ++checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" + dependencies = [ + "filetime", + "libc", +@@ -5168,17 +5196,17 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + + [[package]] + name = "tauri" +-version = "2.0.6" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d3889b392db6d32a105d3757230ea0220090b8f94c90d3e60b6c5eb91178ab1b" ++checksum = "2e2e3349fbb2be7af9fad1b43d61ac83ba55ab48d47fbe1b2732f0c8211610a9" + dependencies = [ + "anyhow", + "bytes", +- "dirs", ++ "dirs 5.0.1", + "dunce", + "embed_plist", + "futures-util", +- "getrandom 0.2.15", ++ "getrandom 0.2.16", + "glob", + "gtk", + "heck 0.5.0", +@@ -5190,12 +5218,12 @@ dependencies = [ + "mime", + "muda", + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", + "percent-encoding", + "plist", + "raw-window-handle", +- "reqwest 0.12.9", ++ "reqwest 0.12.4", + "serde", + "serde_json", + "serde_repr", +@@ -5205,8 +5233,8 @@ dependencies = [ + "tauri-macros", + "tauri-runtime", + "tauri-runtime-wry", +- "tauri-utils 2.0.2", +- "thiserror 1.0.66", ++ "tauri-utils 2.4.0", ++ "thiserror 2.0.17", + "tokio", + "tray-icon", + "url", +@@ -5219,21 +5247,21 @@ dependencies = [ + + [[package]] + name = "tauri-build" +-version = "2.0.2" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9f96827ccfb1aa40d55d0ded79562d18ba18566657a553f992a982d755148376" ++checksum = "d7a0350f0df1db385ca5c02888a83e0e66655c245b7443db8b78a70da7d7f8fc" + dependencies = [ + "anyhow", + "cargo_toml", +- "dirs", ++ "dirs 6.0.0", + "glob", + "heck 0.5.0", + "json-patch 3.0.1", +- "schemars", ++ "schemars 0.8.22", + "semver", + "serde", + "serde_json", +- "tauri-utils 2.0.2", ++ "tauri-utils 2.4.0", + "tauri-winres", + "toml 0.8.2", + "walkdir", +@@ -5241,26 +5269,26 @@ dependencies = [ + + [[package]] + name = "tauri-codegen" +-version = "2.0.2" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8947f16f47becd9e9cd39b74ee337fd1981574d78819be18e4384d85e5a0b82f" ++checksum = "f93f035551bf7b11b3f51ad9bc231ebbe5e085565527991c16cf326aa38cdf47" + dependencies = [ + "base64 0.22.1", + "brotli", + "ico", +- "json-patch 2.0.0", ++ "json-patch 3.0.1", + "plist", +- "png", ++ "png 0.17.16", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", +- "syn 2.0.98", +- "tauri-utils 2.0.2", +- "thiserror 1.0.66", +- "time", ++ "syn 2.0.110", ++ "tauri-utils 2.4.0", ++ "thiserror 2.0.17", ++ "time 0.3.44", + "url", + "uuid", + "walkdir", +@@ -5268,72 +5296,70 @@ dependencies = [ + + [[package]] + name = "tauri-macros" +-version = "2.0.2" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8bd1c8d4a66799d3438747c3a79705cd665a95d6f24cb5f315413ff7a981fe2a" ++checksum = "8db4df25e2d9d45de0c4c910da61cd5500190da14ae4830749fee3466dddd112" + dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + "tauri-codegen", +- "tauri-utils 2.0.2", ++ "tauri-utils 2.4.0", + ] + + [[package]] + name = "tauri-plugin" +-version = "2.0.2" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6fa4e6c94cb1d635f65a770c69e23de1bc054b0e4c554fa037a7cc7676333d39" ++checksum = "37a5ebe6a610d1b78a94650896e6f7c9796323f408800cef436e0fa0539de601" + dependencies = [ + "anyhow", + "glob", + "plist", +- "schemars", ++ "schemars 0.8.22", + "serde", + "serde_json", +- "tauri-utils 2.0.2", ++ "tauri-utils 2.4.0", + "toml 0.8.2", + "walkdir", + ] + + [[package]] + name = "tauri-plugin-clipboard-manager" +-version = "2.0.1" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "78b7d556886c15849198c0948fd7f4c880492f0461539176da0a8a70272e2904" ++checksum = "5be2c6f5d82396c1a86d5b16052cc97976a82e92244bf074dd6e2f6272d8619d" + dependencies = [ + "arboard", +- "image", + "log", + "serde", + "serde_json", + "tauri", + "tauri-plugin", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + ] + + [[package]] + name = "tauri-plugin-deep-link" +-version = "0.1.2" ++version = "0.1.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4536f5f6602e8fdfaa7b3b185076c2a0704f8eb7015f4e58461eb483ec3ed1f8" ++checksum = "57d8e1a461d5bea85fa0b1d171efb25b0439ffcee08ae95ebf7f53007dfd8aab" + dependencies = [ +- "dirs", ++ "dirs-next", + "interprocess", + "log", +- "objc2 0.4.1", ++ "objc2 0.3.0-beta.5", + "once_cell", +- "tauri-utils 1.6.1", +- "windows-sys 0.48.0", +- "winreg 0.50.0", ++ "tauri-utils 1.6.2", ++ "winreg 0.11.0", + ] + + [[package]] + name = "tauri-plugin-dialog" +-version = "2.0.3" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4307310e1d2c09ab110235834722e7c2b85099b683e1eb7342ab351b0be5ada3" ++checksum = "8b59fd750551b1066744ab956a1cd6b1ea3e1b3763b0b9153ac27a044d596426" + dependencies = [ + "log", + "raw-window-handle", +@@ -5343,40 +5369,42 @@ dependencies = [ + "tauri", + "tauri-plugin", + "tauri-plugin-fs", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + "url", + ] + + [[package]] + name = "tauri-plugin-fs" +-version = "2.0.3" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "96ba7d46e86db8c830d143ef90ab5a453328365b0cc834c24edea4267b16aba0" ++checksum = "a1a1edf18000f02903a7c2e5997fb89aca455ecbc0acc15c6535afbb883be223" + dependencies = [ + "anyhow", + "dunce", + "glob", + "percent-encoding", +- "schemars", ++ "schemars 0.8.22", + "serde", + "serde_json", + "serde_repr", + "tauri", + "tauri-plugin", +- "thiserror 1.0.66", ++ "tauri-utils 2.4.0", ++ "thiserror 2.0.17", ++ "toml 0.8.2", + "url", + "uuid", + ] + + [[package]] + name = "tauri-plugin-log" +-version = "2.0.1" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9a49f2c05d15e6375ab7f7e528b3049150ba4dfafdf61f85e5178d0aef18e3f5" ++checksum = "eddd784c138c08a43954bc3e735402e6b2b2ee8d8c254a7391f4e77c01273dd5" + dependencies = [ + "android_logger", + "byte-unit", +- "cocoa 0.26.0", ++ "cocoa 0.26.1", + "fern", + "log", + "objc", +@@ -5386,15 +5414,15 @@ dependencies = [ + "swift-rs", + "tauri", + "tauri-plugin", +- "thiserror 1.0.66", +- "time", ++ "thiserror 2.0.17", ++ "time 0.3.44", + ] + + [[package]] + name = "tauri-plugin-notification" +-version = "2.0.1" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ef492a2d19b6376bb4c9e0c4fab3f3bf8a220ea112d24f35027b737ff55de20c" ++checksum = "46ab803095f14ac6521fdb6477210a49e86fed6623c3c97d8e4b2b35e045e922" + dependencies = [ + "log", + "notify-rust", +@@ -5404,16 +5432,16 @@ dependencies = [ + "serde_repr", + "tauri", + "tauri-plugin", +- "thiserror 1.0.66", +- "time", ++ "thiserror 2.0.17", ++ "time 0.3.44", + "url", + ] + + [[package]] + name = "tauri-plugin-os" +-version = "2.0.1" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "fbc5f23a86f37687c7f4fecfdc706b279087bc44f7a46702f7307ff1551ee03a" ++checksum = "dda2d571a9baf0664c1f2088db227e3072f9028602fafa885deade7547c3b738" + dependencies = [ + "gethostname 0.5.0", + "log", +@@ -5424,14 +5452,14 @@ dependencies = [ + "sys-locale", + "tauri", + "tauri-plugin", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + ] + + [[package]] + name = "tauri-plugin-process" +-version = "2.0.1" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ae06a00087c148962a52814a2d7265b1a0505bced5ffb74f8c284a5f96a4d03d" ++checksum = "40cc553ab29581c8c43dfa5fb0c9d5aee8ba962ad3b42908eea26c79610441b7" + dependencies = [ + "tauri", + "tauri-plugin", +@@ -5439,71 +5467,71 @@ dependencies = [ + + [[package]] + name = "tauri-plugin-shell" +-version = "2.0.2" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0ad7880c5586b6b2104be451e3d7fc0f3800c84bda69e9ba81c828f87cb34267" ++checksum = "bb2c50a63e60fb8925956cc5b7569f4b750ac197a4d39f13b8dd46ea8e2bad79" + dependencies = [ + "encoding_rs", + "log", + "open", + "os_pipe", + "regex", +- "schemars", ++ "schemars 0.8.22", + "serde", + "serde_json", + "shared_child", + "tauri", + "tauri-plugin", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + "tokio", + ] + + [[package]] + name = "tauri-plugin-single-instance" +-version = "2.2.1" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "47c387d4d96690131dc46d1d2827df5c222b896a2bfeb15a16267229a55c50b5" ++checksum = "0f36019ee9832dc99e4450bb55a21cfad8633b19c2c18bd17c7741939b070ede" + dependencies = [ + "serde", + "serde_json", + "tauri", +- "thiserror 2.0.11", ++ "thiserror 2.0.17", + "tracing", + "windows-sys 0.59.0", +- "zbus 5.5.0", ++ "zbus 4.2.0", + ] + + [[package]] + name = "tauri-plugin-store" +-version = "2.1.0" ++version = "2.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e9a580be53f04bb62422d239aa798e88522877f58a0d4a0e745f030055a51bb4" ++checksum = "1c0c08fae6995909f5e9a0da6038273b750221319f2c0f3b526d6de1cde21505" + dependencies = [ + "dunce", +- "log", + "serde", + "serde_json", + "tauri", + "tauri-plugin", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + "tokio", ++ "tracing", + ] + + [[package]] + name = "tauri-plugin-updater" +-version = "2.0.2" ++version = "2.3.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1dd3d2fe0f02bf52eebb5a9d23b987fffac6684646ab6fd683d706dafb18da87" ++checksum = "ce2d39224390c41ba544f02b4f1721f42256320b3fb8c371e9425cbddeb4a68c" + dependencies = [ + "base64 0.22.1", +- "dirs", ++ "dirs 5.0.1", + "flate2", + "futures-util", + "http 1.1.0", + "infer 0.16.0", + "minisign-verify", + "percent-encoding", +- "reqwest 0.12.9", ++ "reqwest 0.12.4", + "semver", + "serde", + "serde_json", +@@ -5511,8 +5539,8 @@ dependencies = [ + "tauri", + "tauri-plugin", + "tempfile", +- "thiserror 1.0.66", +- "time", ++ "thiserror 2.0.17", ++ "time 0.3.44", + "tokio", + "url", + "windows-sys 0.59.0", +@@ -5521,9 +5549,9 @@ dependencies = [ + + [[package]] + name = "tauri-runtime" +-version = "2.1.1" ++version = "2.3.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a1ef7363e7229ac8d04e8a5d405670dbd43dde8fc4bc3bc56105c35452d03784" ++checksum = "2274ef891ccc0a8d318deffa9d70053f947664d12d58b9c0d1ae5e89237e01f7" + dependencies = [ + "dpi", + "gtk", +@@ -5532,31 +5560,31 @@ dependencies = [ + "raw-window-handle", + "serde", + "serde_json", +- "tauri-utils 2.0.2", +- "thiserror 1.0.66", ++ "tauri-utils 2.4.0", ++ "thiserror 2.0.17", + "url", + "windows 0.58.0", + ] + + [[package]] + name = "tauri-runtime-wry" +-version = "2.1.2" ++version = "2.3.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "62fa2068e8498ad007b54d5773d03d57c3ff6dd96f8c8ce58beff44d0d5e0d30" ++checksum = "3707b40711d3b9f6519150869e358ffbde7c57567fb9b5a8b51150606939b2a0" + dependencies = [ + "gtk", + "http 1.1.0", + "jni", + "log", + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", + "percent-encoding", + "raw-window-handle", + "softbuffer", + "tao", + "tauri-runtime", +- "tauri-utils 2.0.2", ++ "tauri-utils 2.4.0", + "url", + "webkit2gtk", + "webview2-com", +@@ -5566,9 +5594,9 @@ dependencies = [ + + [[package]] + name = "tauri-utils" +-version = "1.6.1" ++version = "1.6.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "83a0c939e88d82903a0a7dfb28388b12a3c03504d6bd6086550edaa3b6d8beaa" ++checksum = "c357952645e679de02cd35007190fcbce869b93ffc61b029f33fe02648453774" + dependencies = [ + "ctor", + "dunce", +@@ -5579,45 +5607,47 @@ dependencies = [ + "kuchikiki", + "log", + "memchr", +- "phf 0.11.2", ++ "phf 0.11.3", + "semver", + "serde", + "serde_json", + "serde_with", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + "url", + "windows-version", + ] + + [[package]] + name = "tauri-utils" +-version = "2.0.2" ++version = "2.4.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1fc65d6f5c54e56b66258948a6d9e47a82ea41f4b5a7612bfbdd1634c2913ed0" ++checksum = "b2900399c239a471bcff7f15c4399eb1a8c4fe511ba2853e07c996d771a5e0a4" + dependencies = [ ++ "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dunce", + "glob", + "html5ever", +- "infer 0.16.0", +- "json-patch 2.0.0", ++ "http 1.1.0", ++ "infer 0.19.0", ++ "json-patch 3.0.1", + "kuchikiki", + "log", + "memchr", +- "phf 0.11.2", ++ "phf 0.11.3", + "proc-macro2", + "quote", + "regex", +- "schemars", ++ "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + "toml 0.8.2", + "url", + "urlpattern", +@@ -5627,36 +5657,38 @@ dependencies = [ + + [[package]] + name = "tauri-winres" +-version = "0.1.1" ++version = "0.3.5" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb" ++checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" + dependencies = [ ++ "dunce", + "embed-resource", +- "toml 0.7.8", ++ "toml 0.9.8", + ] + + [[package]] + name = "tauri-winrt-notification" +-version = "0.2.1" ++version = "0.7.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f89f5fb70d6f62381f5d9b2ba9008196150b40b75f3068eb24faeddf1c686871" ++checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9" + dependencies = [ +- "quick-xml 0.31.0", +- "windows 0.56.0", ++ "quick-xml 0.37.5", ++ "thiserror 2.0.17", ++ "windows 0.61.3", + "windows-version", + ] + + [[package]] + name = "tempfile" +-version = "3.13.0" ++version = "3.23.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" ++checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" + dependencies = [ +- "cfg-if", + "fastrand", ++ "getrandom 0.3.4", + "once_cell", +- "rustix", +- "windows-sys 0.59.0", ++ "rustix 1.1.2", ++ "windows-sys 0.61.2", + ] + + [[package]] +@@ -5687,63 +5719,77 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" + + [[package]] + name = "thiserror" +-version = "1.0.66" ++version = "1.0.69" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5d171f59dbaa811dbbb1aee1e73db92ec2b122911a48e1390dfe327a821ddede" ++checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" + dependencies = [ +- "thiserror-impl 1.0.66", ++ "thiserror-impl 1.0.69", + ] + + [[package]] + name = "thiserror" +-version = "2.0.11" ++version = "2.0.17" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" ++checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" + dependencies = [ +- "thiserror-impl 2.0.11", ++ "thiserror-impl 2.0.17", + ] + + [[package]] + name = "thiserror-impl" +-version = "1.0.66" ++version = "1.0.69" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b08be0f17bd307950653ce45db00cd31200d82b624b36e181337d9c7d92765b5" ++checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "thiserror-impl" +-version = "2.0.11" ++version = "2.0.17" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" ++checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "tiff" +-version = "0.9.1" ++version = "0.10.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" ++checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f" + dependencies = [ ++ "fax", + "flate2", +- "jpeg-decoder", ++ "half", ++ "quick-error", + "weezl", ++ "zune-jpeg", ++] ++ ++[[package]] ++name = "time" ++version = "0.1.45" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" ++dependencies = [ ++ "libc", ++ "wasi 0.10.0+wasi-snapshot-preview1", ++ "winapi", + ] + + [[package]] + name = "time" +-version = "0.3.36" ++version = "0.3.44" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" ++checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" + dependencies = [ + "deranged", +- "itoa 1.0.11", ++ "itoa 1.0.15", + "libc", + "num-conv", + "num_threads", +@@ -5755,25 +5801,35 @@ dependencies = [ + + [[package]] + name = "time-core" +-version = "0.1.2" ++version = "0.1.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" ++checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" + + [[package]] + name = "time-macros" +-version = "0.2.18" ++version = "0.2.24" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" ++checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" + dependencies = [ + "num-conv", + "time-core", + ] + ++[[package]] ++name = "tinystr" ++version = "0.8.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" ++dependencies = [ ++ "displaydoc", ++ "zerovec", ++] ++ + [[package]] + name = "tinyvec" +-version = "1.8.0" ++version = "1.10.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" ++checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" + dependencies = [ + "tinyvec_macros", + ] +@@ -5792,32 +5848,34 @@ checksum = "c7c4ceeeca15c8384bbc3e011dbd8fccb7f068a440b752b7d9b32ceb0ca0e2e8" + + [[package]] + name = "tokio" +-version = "1.41.0" ++version = "1.26.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" ++checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" + dependencies = [ +- "backtrace", ++ "autocfg", + "bytes", + "libc", ++ "memchr", + "mio", ++ "num_cpus", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", +- "socket2", ++ "socket2 0.4.10", + "tokio-macros", + "tracing", +- "windows-sys 0.52.0", ++ "windows-sys 0.45.0", + ] + + [[package]] + name = "tokio-macros" +-version = "2.4.0" ++version = "1.8.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" ++checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 1.0.109", + ] + + [[package]] +@@ -5832,9 +5890,9 @@ dependencies = [ + + [[package]] + name = "tokio-rustls" +-version = "0.26.0" ++version = "0.25.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" ++checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" + dependencies = [ + "rustls", + "rustls-pki-types", +@@ -5843,9 +5901,9 @@ dependencies = [ + + [[package]] + name = "tokio-tungstenite" +-version = "0.24.0" ++version = "0.20.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" ++checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" + dependencies = [ + "futures-util", + "log", +@@ -5855,60 +5913,71 @@ dependencies = [ + + [[package]] + name = "tokio-util" +-version = "0.7.12" ++version = "0.7.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" ++checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" + dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", ++ "tracing", + ] + + [[package]] + name = "toml" +-version = "0.7.8" ++version = "0.8.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" ++checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" + dependencies = [ + "serde", +- "serde_spanned", +- "toml_datetime", +- "toml_edit 0.19.15", ++ "serde_spanned 0.6.9", ++ "toml_datetime 0.6.3", ++ "toml_edit 0.20.2", + ] + + [[package]] + name = "toml" +-version = "0.8.2" ++version = "0.9.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" ++checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8" + dependencies = [ +- "serde", +- "serde_spanned", +- "toml_datetime", +- "toml_edit 0.20.2", ++ "indexmap 2.12.0", ++ "serde_core", ++ "serde_spanned 1.0.3", ++ "toml_datetime 0.7.3", ++ "toml_parser", ++ "toml_writer", ++ "winnow 0.7.13", + ] + + [[package]] + name = "toml_datetime" +-version = "0.6.8" ++version = "0.6.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" ++checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" + dependencies = [ + "serde", + ] + ++[[package]] ++name = "toml_datetime" ++version = "0.7.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" ++dependencies = [ ++ "serde_core", ++] ++ + [[package]] + name = "toml_edit" + version = "0.19.15" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" + dependencies = [ +- "indexmap 2.6.0", +- "serde", +- "serde_spanned", +- "toml_datetime", ++ "indexmap 2.12.0", ++ "toml_datetime 0.6.3", + "winnow 0.5.40", + ] + +@@ -5918,34 +5987,50 @@ version = "0.20.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" + dependencies = [ +- "indexmap 2.6.0", ++ "indexmap 2.12.0", + "serde", +- "serde_spanned", +- "toml_datetime", ++ "serde_spanned 0.6.9", ++ "toml_datetime 0.6.3", + "winnow 0.5.40", + ] + + [[package]] + name = "toml_edit" +-version = "0.22.24" ++version = "0.23.7" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" ++dependencies = [ ++ "indexmap 2.12.0", ++ "toml_datetime 0.7.3", ++ "toml_parser", ++ "winnow 0.7.13", ++] ++ ++[[package]] ++name = "toml_parser" ++version = "1.0.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474" ++checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" + dependencies = [ +- "indexmap 2.6.0", +- "toml_datetime", +- "winnow 0.7.2", ++ "winnow 0.7.13", + ] + ++[[package]] ++name = "toml_writer" ++version = "1.0.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2" ++ + [[package]] + name = "tower" +-version = "0.5.1" ++version = "0.4.13" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" ++checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" + dependencies = [ + "futures-core", + "futures-util", ++ "pin-project", + "pin-project-lite", +- "sync_wrapper 0.1.2", + "tokio", + "tower-layer", + "tower-service", +@@ -5954,11 +6039,11 @@ dependencies = [ + + [[package]] + name = "tower-http" +-version = "0.5.2" ++version = "0.5.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" ++checksum = "0da193277a4e2c33e59e09b5861580c33dd0a637c3883d0fa74ba40c0374af2e" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "bytes", + "http 1.1.0", + "http-body 1.0.1", +@@ -5982,9 +6067,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + + [[package]] + name = "tracing" +-version = "0.1.40" ++version = "0.1.41" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" ++checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" + dependencies = [ + "log", + "pin-project-lite", +@@ -5994,42 +6079,43 @@ dependencies = [ + + [[package]] + name = "tracing-attributes" +-version = "0.1.27" ++version = "0.1.30" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" ++checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "tracing-core" +-version = "0.1.32" ++version = "0.1.34" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" ++checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" + dependencies = [ + "once_cell", + ] + + [[package]] + name = "tray-icon" +-version = "0.19.1" ++version = "0.19.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7c92af36a182b46206723bdf8a7942e20838cde1cf062e5b97854d57eb01763b" ++checksum = "eadd75f5002e2513eaa19b2365f533090cc3e93abd38788452d9ea85cff7b48a" + dependencies = [ +- "core-graphics 0.24.0", + "crossbeam-channel", +- "dirs", ++ "dirs 6.0.0", + "libappindicator", + "muda", +- "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2 0.6.3", ++ "objc2-app-kit 0.3.2", ++ "objc2-core-foundation", ++ "objc2-core-graphics", ++ "objc2-foundation 0.3.2", + "once_cell", +- "png", ++ "png 0.17.16", + "serde", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + "windows-sys 0.59.0", + ] + +@@ -6046,7 +6132,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "4added4070a4fdf9df03457206cd2e4b12417c8560a2954d91ffcbe60177a56a" + dependencies = [ + "chrono", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + "ts-rs-macros", + ] + +@@ -6065,33 +6151,34 @@ dependencies = [ + + [[package]] + name = "tungstenite" +-version = "0.24.0" ++version = "0.20.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" ++checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" + dependencies = [ + "byteorder", + "bytes", + "data-encoding", +- "http 1.1.0", ++ "http 0.2.12", + "httparse", + "log", + "rand 0.8.5", + "sha1", +- "thiserror 1.0.66", ++ "thiserror 1.0.69", ++ "url", + "utf-8", + ] + + [[package]] + name = "typeid" +-version = "1.0.2" ++version = "1.0.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e" ++checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + + [[package]] + name = "typenum" +-version = "1.17.0" ++version = "1.19.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" ++checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" + + [[package]] + name = "uds_windows" +@@ -6145,26 +6232,11 @@ dependencies = [ + "unic-common", + ] + +-[[package]] +-name = "unicode-bidi" +-version = "0.3.17" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893" +- + [[package]] + name = "unicode-ident" +-version = "1.0.13" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" +- +-[[package]] +-name = "unicode-normalization" +-version = "0.1.24" ++version = "1.0.22" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" +-dependencies = [ +- "tinyvec", +-] ++checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" + + [[package]] + name = "unicode-segmentation" +@@ -6186,9 +6258,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + + [[package]] + name = "url" +-version = "2.5.2" ++version = "2.5.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" ++checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" + dependencies = [ + "form_urlencoded", + "idna", +@@ -6220,6 +6292,12 @@ version = "0.1.7" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" + ++[[package]] ++name = "utf8_iter" ++version = "1.0.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" ++ + [[package]] + name = "utf8parse" + version = "0.2.2" +@@ -6228,30 +6306,21 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + + [[package]] + name = "uuid" +-version = "1.11.0" ++version = "1.18.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" ++checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" + dependencies = [ +- "getrandom 0.2.15", ++ "getrandom 0.3.4", ++ "js-sys", + "serde", +-] +- +-[[package]] +-name = "v_frame" +-version = "0.3.8" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b" +-dependencies = [ +- "aligned-vec", +- "num-traits", + "wasm-bindgen", + ] + + [[package]] + name = "value-bag" +-version = "1.10.0" ++version = "1.11.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2" ++checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5" + + [[package]] + name = "vcpkg" +@@ -6261,9 +6330,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + + [[package]] + name = "version-compare" +-version = "0.2.0" ++version = "0.2.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" ++checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" + + [[package]] + name = "version_check" +@@ -6283,9 +6352,9 @@ dependencies = [ + + [[package]] + name = "vswhom-sys" +-version = "0.1.2" ++version = "0.1.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18" ++checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" + dependencies = [ + "cc", + "libc", +@@ -6339,53 +6408,56 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + + [[package]] + name = "wasi" +-version = "0.11.0+wasi-snapshot-preview1" ++version = "0.10.0+wasi-snapshot-preview1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" ++checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + + [[package]] +-name = "wasm-bindgen" +-version = "0.2.95" ++name = "wasi" ++version = "0.11.1+wasi-snapshot-preview1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" ++ ++[[package]] ++name = "wasip2" ++version = "1.0.1+wasi-0.2.4" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e" ++checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" + dependencies = [ +- "cfg-if", +- "once_cell", +- "wasm-bindgen-macro", ++ "wit-bindgen", + ] + + [[package]] +-name = "wasm-bindgen-backend" +-version = "0.2.95" ++name = "wasm-bindgen" ++version = "0.2.105" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358" ++checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" + dependencies = [ +- "bumpalo", +- "log", ++ "cfg-if", + "once_cell", +- "proc-macro2", +- "quote", +- "syn 2.0.98", ++ "rustversion", ++ "wasm-bindgen-macro", + "wasm-bindgen-shared", + ] + + [[package]] + name = "wasm-bindgen-futures" +-version = "0.4.45" ++version = "0.4.55" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b" ++checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" + dependencies = [ + "cfg-if", + "js-sys", ++ "once_cell", + "wasm-bindgen", + "web-sys", + ] + + [[package]] + name = "wasm-bindgen-macro" +-version = "0.2.95" ++version = "0.2.105" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56" ++checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" + dependencies = [ + "quote", + "wasm-bindgen-macro-support", +@@ -6393,22 +6465,25 @@ dependencies = [ + + [[package]] + name = "wasm-bindgen-macro-support" +-version = "0.2.95" ++version = "0.2.105" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68" ++checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" + dependencies = [ ++ "bumpalo", + "proc-macro2", + "quote", +- "syn 2.0.98", +- "wasm-bindgen-backend", ++ "syn 2.0.110", + "wasm-bindgen-shared", + ] + + [[package]] + name = "wasm-bindgen-shared" +-version = "0.2.95" ++version = "0.2.105" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" ++checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" ++dependencies = [ ++ "unicode-ident", ++] + + [[package]] + name = "wasm-streams" +@@ -6425,13 +6500,13 @@ dependencies = [ + + [[package]] + name = "wayland-backend" +-version = "0.3.7" ++version = "0.3.11" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6" ++checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35" + dependencies = [ + "cc", + "downcast-rs", +- "rustix", ++ "rustix 1.1.2", + "scoped-tls", + "smallvec", + "wayland-sys", +@@ -6439,23 +6514,23 @@ dependencies = [ + + [[package]] + name = "wayland-client" +-version = "0.31.7" ++version = "0.31.11" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b66249d3fc69f76fd74c82cc319300faa554e9d865dab1f7cd66cc20db10b280" ++checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d" + dependencies = [ +- "bitflags 2.6.0", +- "rustix", ++ "bitflags 2.10.0", ++ "rustix 1.1.2", + "wayland-backend", + "wayland-scanner", + ] + + [[package]] + name = "wayland-protocols" +-version = "0.32.5" ++version = "0.32.9" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7cd0ade57c4e6e9a8952741325c30bf82f4246885dca8bf561898b86d0c1f58e" ++checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901" + dependencies = [ +- "bitflags 2.6.0", ++ "bitflags 2.10.0", + "wayland-backend", + "wayland-client", + "wayland-scanner", +@@ -6463,20 +6538,20 @@ dependencies = [ + + [[package]] + name = "wayland-scanner" +-version = "0.31.5" ++version = "0.31.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "597f2001b2e5fc1121e3d5b9791d3e78f05ba6bfa4641053846248e3a13661c3" ++checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3" + dependencies = [ + "proc-macro2", +- "quick-xml 0.36.2", ++ "quick-xml 0.37.5", + "quote", + ] + + [[package]] + name = "wayland-sys" +-version = "0.31.5" ++version = "0.31.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "efa8ac0d8e8ed3e3b5c9fc92c7881406a268e11555abe36493efabe649a29e09" ++checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142" + dependencies = [ + "dlib", + "log", +@@ -6485,9 +6560,9 @@ dependencies = [ + + [[package]] + name = "web-sys" +-version = "0.3.72" ++version = "0.3.82" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112" ++checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" + dependencies = [ + "js-sys", + "wasm-bindgen", +@@ -6539,18 +6614,27 @@ dependencies = [ + + [[package]] + name = "webpki-roots" +-version = "0.26.6" ++version = "0.26.11" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" ++checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" ++dependencies = [ ++ "webpki-roots 1.0.4", ++] ++ ++[[package]] ++name = "webpki-roots" ++version = "1.0.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" + dependencies = [ + "rustls-pki-types", + ] + + [[package]] + name = "webview2-com" +-version = "0.33.0" ++version = "0.34.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6f61ff3d9d0ee4efcb461b14eb3acfda2702d10dc329f339303fc3e57215ae2c" ++checksum = "823e7ebcfaea51e78f72c87fc3b65a1e602c321f407a0b36dbb327d7bb7cd921" + dependencies = [ + "webview2-com-macros", + "webview2-com-sys", +@@ -6568,25 +6652,25 @@ checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] + name = "webview2-com-sys" +-version = "0.33.0" ++version = "0.34.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a3a3e2eeb58f82361c93f9777014668eb3d07e7d174ee4c819575a9208011886" ++checksum = "7a82bce72db6e5ee83c68b5de1e2cd6ea195b9fbff91cb37df5884cbe3222df4" + dependencies = [ +- "thiserror 1.0.66", ++ "thiserror 1.0.69", + "windows 0.58.0", + "windows-core 0.58.0", + ] + + [[package]] + name = "weezl" +-version = "0.1.8" ++version = "0.1.12" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" ++checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" + + [[package]] + name = "winapi" +@@ -6606,11 +6690,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + + [[package]] + name = "winapi-util" +-version = "0.1.9" ++version = "0.1.11" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" ++checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" + dependencies = [ +- "windows-sys 0.59.0", ++ "windows-sys 0.61.2", + ] + + [[package]] +@@ -6626,8 +6710,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "3ea403deff7b51fff19e261330f71608ff2cdef5721d72b64180bb95be7c4150" + dependencies = [ + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", + "raw-window-handle", + "windows-sys 0.59.0", + "windows-version", +@@ -6642,16 +6726,6 @@ dependencies = [ + "windows-targets 0.48.5", + ] + +-[[package]] +-name = "windows" +-version = "0.56.0" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132" +-dependencies = [ +- "windows-core 0.56.0", +- "windows-targets 0.52.6", +-] +- + [[package]] + name = "windows" + version = "0.58.0" +@@ -6663,24 +6737,25 @@ dependencies = [ + ] + + [[package]] +-name = "windows-core" +-version = "0.52.0" ++name = "windows" ++version = "0.61.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" ++checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" + dependencies = [ +- "windows-targets 0.52.6", ++ "windows-collections", ++ "windows-core 0.61.2", ++ "windows-future", ++ "windows-link 0.1.3", ++ "windows-numerics", + ] + + [[package]] +-name = "windows-core" +-version = "0.56.0" ++name = "windows-collections" ++version = "0.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6" ++checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" + dependencies = [ +- "windows-implement 0.56.0", +- "windows-interface 0.56.0", +- "windows-result 0.1.2", +- "windows-targets 0.52.6", ++ "windows-core 0.61.2", + ] + + [[package]] +@@ -6692,19 +6767,45 @@ dependencies = [ + "windows-implement 0.58.0", + "windows-interface 0.58.0", + "windows-result 0.2.0", +- "windows-strings", ++ "windows-strings 0.1.0", + "windows-targets 0.52.6", + ] + + [[package]] +-name = "windows-implement" +-version = "0.56.0" ++name = "windows-core" ++version = "0.61.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b" ++checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" + dependencies = [ +- "proc-macro2", +- "quote", +- "syn 2.0.98", ++ "windows-implement 0.60.2", ++ "windows-interface 0.59.3", ++ "windows-link 0.1.3", ++ "windows-result 0.3.4", ++ "windows-strings 0.4.2", ++] ++ ++[[package]] ++name = "windows-core" ++version = "0.62.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" ++dependencies = [ ++ "windows-implement 0.60.2", ++ "windows-interface 0.59.3", ++ "windows-link 0.2.1", ++ "windows-result 0.4.1", ++ "windows-strings 0.5.1", ++] ++ ++[[package]] ++name = "windows-future" ++version = "0.2.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" ++dependencies = [ ++ "windows-core 0.61.2", ++ "windows-link 0.1.3", ++ "windows-threading", + ] + + [[package]] +@@ -6715,18 +6816,18 @@ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +-name = "windows-interface" +-version = "0.56.0" ++name = "windows-implement" ++version = "0.60.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc" ++checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +@@ -6737,27 +6838,40 @@ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + ] + + [[package]] +-name = "windows-registry" +-version = "0.2.0" ++name = "windows-interface" ++version = "0.59.3" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" ++checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" + dependencies = [ +- "windows-result 0.2.0", +- "windows-strings", +- "windows-targets 0.52.6", ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", + ] + + [[package]] +-name = "windows-result" +-version = "0.1.2" ++name = "windows-link" ++version = "0.1.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" ++ ++[[package]] ++name = "windows-link" ++version = "0.2.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" ++ ++[[package]] ++name = "windows-numerics" ++version = "0.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" ++checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" + dependencies = [ +- "windows-targets 0.52.6", ++ "windows-core 0.61.2", ++ "windows-link 0.1.3", + ] + + [[package]] +@@ -6769,6 +6883,24 @@ dependencies = [ + "windows-targets 0.52.6", + ] + ++[[package]] ++name = "windows-result" ++version = "0.3.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" ++dependencies = [ ++ "windows-link 0.1.3", ++] ++ ++[[package]] ++name = "windows-result" ++version = "0.4.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" ++dependencies = [ ++ "windows-link 0.2.1", ++] ++ + [[package]] + name = "windows-strings" + version = "0.1.0" +@@ -6779,6 +6911,24 @@ dependencies = [ + "windows-targets 0.52.6", + ] + ++[[package]] ++name = "windows-strings" ++version = "0.4.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" ++dependencies = [ ++ "windows-link 0.1.3", ++] ++ ++[[package]] ++name = "windows-strings" ++version = "0.5.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" ++dependencies = [ ++ "windows-link 0.2.1", ++] ++ + [[package]] + name = "windows-sys" + version = "0.45.0" +@@ -6815,6 +6965,24 @@ dependencies = [ + "windows-targets 0.52.6", + ] + ++[[package]] ++name = "windows-sys" ++version = "0.60.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" ++dependencies = [ ++ "windows-targets 0.53.5", ++] ++ ++[[package]] ++name = "windows-sys" ++version = "0.61.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" ++dependencies = [ ++ "windows-link 0.2.1", ++] ++ + [[package]] + name = "windows-targets" + version = "0.42.2" +@@ -6854,20 +7022,46 @@ dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", +- "windows_i686_gnullvm", ++ "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", + ] + ++[[package]] ++name = "windows-targets" ++version = "0.53.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" ++dependencies = [ ++ "windows-link 0.2.1", ++ "windows_aarch64_gnullvm 0.53.1", ++ "windows_aarch64_msvc 0.53.1", ++ "windows_i686_gnu 0.53.1", ++ "windows_i686_gnullvm 0.53.1", ++ "windows_i686_msvc 0.53.1", ++ "windows_x86_64_gnu 0.53.1", ++ "windows_x86_64_gnullvm 0.53.1", ++ "windows_x86_64_msvc 0.53.1", ++] ++ ++[[package]] ++name = "windows-threading" ++version = "0.1.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" ++dependencies = [ ++ "windows-link 0.1.3", ++] ++ + [[package]] + name = "windows-version" +-version = "0.1.1" ++version = "0.1.7" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "6998aa457c9ba8ff2fb9f13e9d2a930dabcea28f1d0ab94d687d8b3654844515" ++checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" + dependencies = [ +- "windows-targets 0.52.6", ++ "windows-link 0.2.1", + ] + + [[package]] +@@ -6888,6 +7082,12 @@ version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + ++[[package]] ++name = "windows_aarch64_gnullvm" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" ++ + [[package]] + name = "windows_aarch64_msvc" + version = "0.42.2" +@@ -6906,6 +7106,12 @@ version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + ++[[package]] ++name = "windows_aarch64_msvc" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" ++ + [[package]] + name = "windows_i686_gnu" + version = "0.42.2" +@@ -6924,12 +7130,24 @@ version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + ++[[package]] ++name = "windows_i686_gnu" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" ++ + [[package]] + name = "windows_i686_gnullvm" + version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + ++[[package]] ++name = "windows_i686_gnullvm" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" ++ + [[package]] + name = "windows_i686_msvc" + version = "0.42.2" +@@ -6948,6 +7166,12 @@ version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + ++[[package]] ++name = "windows_i686_msvc" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" ++ + [[package]] + name = "windows_x86_64_gnu" + version = "0.42.2" +@@ -6966,6 +7190,12 @@ version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + ++[[package]] ++name = "windows_x86_64_gnu" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" ++ + [[package]] + name = "windows_x86_64_gnullvm" + version = "0.42.2" +@@ -6984,6 +7214,12 @@ version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + ++[[package]] ++name = "windows_x86_64_gnullvm" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" ++ + [[package]] + name = "windows_x86_64_msvc" + version = "0.42.2" +@@ -7002,6 +7238,12 @@ version = "0.52.6" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + ++[[package]] ++name = "windows_x86_64_msvc" ++version = "0.53.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" ++ + [[package]] + name = "winnow" + version = "0.5.40" +@@ -7013,13 +7255,32 @@ dependencies = [ + + [[package]] + name = "winnow" +-version = "0.7.2" ++version = "0.7.13" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "59690dea168f2198d1a3b0cac23b8063efcd11012f10ae4698f284808c8ef603" ++checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" + dependencies = [ + "memchr", + ] + ++[[package]] ++name = "winreg" ++version = "0.10.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" ++dependencies = [ ++ "winapi", ++] ++ ++[[package]] ++name = "winreg" ++version = "0.11.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "76a1a57ff50e9b408431e8f97d5456f2807f8eb2a2cd79b06068fc87f8ecf189" ++dependencies = [ ++ "cfg-if", ++ "winapi", ++] ++ + [[package]] + name = "winreg" + version = "0.50.0" +@@ -7040,14 +7301,37 @@ dependencies = [ + "windows-sys 0.48.0", + ] + ++[[package]] ++name = "winreg" ++version = "0.55.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" ++dependencies = [ ++ "cfg-if", ++ "windows-sys 0.59.0", ++] ++ ++[[package]] ++name = "wit-bindgen" ++version = "0.46.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" ++ ++[[package]] ++name = "writeable" ++version = "0.6.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" ++ + [[package]] + name = "wry" +-version = "0.46.3" ++version = "0.48.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "cd5cdf57c66813d97601181349c63b96994b3074fc3d7a31a8cce96e968e3bbd" ++checksum = "a2e33c08b174442ff80d5c791020696f9f8b4e4a87b8cfc7494aad6167ec44e1" + dependencies = [ + "base64 0.22.1", +- "block2", ++ "block2 0.5.1", ++ "cookie", + "crossbeam-channel", + "dpi", + "dunce", +@@ -7061,9 +7345,9 @@ dependencies = [ + "libc", + "ndk", + "objc2 0.5.2", +- "objc2-app-kit", +- "objc2-foundation", +- "objc2-ui-kit", ++ "objc2-app-kit 0.2.2", ++ "objc2-foundation 0.2.2", ++ "objc2-ui-kit 0.2.2", + "objc2-web-kit", + "once_cell", + "percent-encoding", +@@ -7071,7 +7355,8 @@ dependencies = [ + "sha2", + "soup3", + "tao-macros", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", ++ "url", + "webkit2gtk", + "webkit2gtk-sys", + "webview2-com", +@@ -7113,30 +7398,29 @@ dependencies = [ + + [[package]] + name = "x11rb" +-version = "0.13.1" ++version = "0.13.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12" ++checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414" + dependencies = [ +- "gethostname 0.4.3", +- "rustix", ++ "gethostname 1.1.0", ++ "rustix 1.1.2", + "x11rb-protocol", + ] + + [[package]] + name = "x11rb-protocol" +-version = "0.13.1" ++version = "0.13.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d" ++checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd" + + [[package]] + name = "xattr" +-version = "1.3.1" ++version = "1.6.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" ++checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" + dependencies = [ + "libc", +- "linux-raw-sys", +- "rustix", ++ "rustix 1.1.2", + ] + + [[package]] +@@ -7149,11 +7433,34 @@ dependencies = [ + "windows-sys 0.59.0", + ] + ++[[package]] ++name = "yoke" ++version = "0.8.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" ++dependencies = [ ++ "stable_deref_trait", ++ "yoke-derive", ++ "zerofrom", ++] ++ ++[[package]] ++name = "yoke-derive" ++version = "0.8.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" ++dependencies = [ ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", ++ "synstructure", ++] ++ + [[package]] + name = "zbus" +-version = "4.0.1" ++version = "4.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "7b8e3d6ae3342792a6cc2340e4394334c7402f3d793b390d2c5494a4032b3030" ++checksum = "6aea58d1af0aaa8abf87f3d9ade9b8f46bf13727e5f9fb24bc31ee9d94a9b4ad" + dependencies = [ + "async-broadcast", + "async-executor", +@@ -7165,14 +7472,13 @@ dependencies = [ + "async-task", + "async-trait", + "blocking", +- "derivative", + "enumflags2", + "event-listener", + "futures-core", + "futures-sink", + "futures-util", + "hex", +- "nix 0.27.1", ++ "nix 0.28.0", + "ordered-stream", + "rand 0.8.5", + "serde", +@@ -7184,20 +7490,19 @@ dependencies = [ + "uds_windows", + "windows-sys 0.52.0", + "xdg-home", +- "zbus_macros 4.0.1", ++ "zbus_macros 4.2.0", + "zbus_names 3.0.0", +- "zvariant 4.0.0", ++ "zvariant 4.2.0", + ] + + [[package]] + name = "zbus" +-version = "5.5.0" ++version = "5.12.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "59c333f648ea1b647bc95dc1d34807c8e25ed7a6feff3394034dc4776054b236" ++checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91" + dependencies = [ + "async-broadcast", + "async-executor", +- "async-fs", + "async-io", + "async-lock", + "async-process", +@@ -7210,48 +7515,46 @@ dependencies = [ + "futures-core", + "futures-lite", + "hex", +- "nix 0.29.0", ++ "nix 0.30.1", + "ordered-stream", + "serde", + "serde_repr", +- "static_assertions", + "tracing", + "uds_windows", +- "windows-sys 0.59.0", +- "winnow 0.7.2", +- "xdg-home", +- "zbus_macros 5.5.0", ++ "uuid", ++ "windows-sys 0.61.2", ++ "winnow 0.7.13", ++ "zbus_macros 5.12.0", + "zbus_names 4.2.0", +- "zvariant 5.4.0", ++ "zvariant 5.8.0", + ] + + [[package]] + name = "zbus_macros" +-version = "4.0.1" ++version = "4.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b7a3e850ff1e7217a3b7a07eba90d37fe9bb9e89a310f718afcde5885ca9b6d7" ++checksum = "1bf2b496ec1e2d3c4a7878e351607f7a2bec1e1029b353683dfc28a22999e369" + dependencies = [ +- "proc-macro-crate 1.3.1", ++ "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", +- "regex", + "syn 1.0.109", +- "zvariant_utils 1.1.0", ++ "zvariant_utils 1.1.1", + ] + + [[package]] + name = "zbus_macros" +-version = "5.5.0" ++version = "5.12.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "f325ad10eb0d0a3eb060203494c3b7ec3162a01a59db75d2deee100339709fc0" ++checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314" + dependencies = [ +- "proc-macro-crate 3.2.0", ++ "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", + "zbus_names 4.2.0", +- "zvariant 5.4.0", +- "zvariant_utils 3.2.0", ++ "zvariant 5.8.0", ++ "zvariant_utils 3.2.1", + ] + + [[package]] +@@ -7262,7 +7565,7 @@ checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c" + dependencies = [ + "serde", + "static_assertions", +- "zvariant 4.0.0", ++ "zvariant 4.2.0", + ] + + [[package]] +@@ -7273,50 +7576,103 @@ checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" + dependencies = [ + "serde", + "static_assertions", +- "winnow 0.7.2", +- "zvariant 5.4.0", ++ "winnow 0.7.13", ++ "zvariant 5.8.0", + ] + + [[package]] + name = "zerocopy" +-version = "0.7.35" ++version = "0.8.27" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" ++checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" + dependencies = [ +- "byteorder", + "zerocopy-derive", + ] + + [[package]] + name = "zerocopy-derive" +-version = "0.7.35" ++version = "0.8.27" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" ++dependencies = [ ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", ++] ++ ++[[package]] ++name = "zerofrom" ++version = "0.1.6" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" ++checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" ++dependencies = [ ++ "zerofrom-derive", ++] ++ ++[[package]] ++name = "zerofrom-derive" ++version = "0.1.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" + dependencies = [ + "proc-macro2", + "quote", +- "syn 2.0.98", ++ "syn 2.0.110", ++ "synstructure", + ] + + [[package]] + name = "zeroize" +-version = "1.8.1" ++version = "1.8.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" ++ ++[[package]] ++name = "zerotrie" ++version = "0.2.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" ++dependencies = [ ++ "displaydoc", ++ "yoke", ++ "zerofrom", ++] ++ ++[[package]] ++name = "zerovec" ++version = "0.11.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" ++dependencies = [ ++ "yoke", ++ "zerofrom", ++ "zerovec-derive", ++] ++ ++[[package]] ++name = "zerovec-derive" ++version = "0.11.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" ++checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" ++dependencies = [ ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", ++] + + [[package]] + name = "zip" +-version = "2.2.0" ++version = "2.4.2" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494" ++checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50" + dependencies = [ + "arbitrary", + "crc32fast", + "crossbeam-utils", + "displaydoc", +- "indexmap 2.6.0", ++ "indexmap 2.12.0", + "memchr", +- "thiserror 1.0.66", ++ "thiserror 2.0.17", + ] + + [[package]] +@@ -7325,84 +7681,74 @@ version = "0.4.12" + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" + +-[[package]] +-name = "zune-inflate" +-version = "0.2.54" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" +-dependencies = [ +- "simd-adler32", +-] +- + [[package]] + name = "zune-jpeg" +-version = "0.4.13" ++version = "0.4.21" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "16099418600b4d8f028622f73ff6e3deaabdff330fb9a2a131dea781ee8b0768" ++checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713" + dependencies = [ + "zune-core", + ] + + [[package]] + name = "zvariant" +-version = "4.0.0" ++version = "4.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "4e09e8be97d44eeab994d752f341e67b3b0d80512a8b315a0671d47232ef1b65" ++checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe" + dependencies = [ + "endi", + "enumflags2", + "serde", + "static_assertions", + "url", +- "zvariant_derive 4.0.0", ++ "zvariant_derive 4.2.0", + ] + + [[package]] + name = "zvariant" +-version = "5.4.0" ++version = "5.8.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "b2df9ee044893fcffbdc25de30546edef3e32341466811ca18421e3cd6c5a3ac" ++checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c" + dependencies = [ + "endi", + "enumflags2", + "serde", +- "static_assertions", +- "winnow 0.7.2", +- "zvariant_derive 5.4.0", +- "zvariant_utils 3.2.0", ++ "winnow 0.7.13", ++ "zvariant_derive 5.8.0", ++ "zvariant_utils 3.2.1", + ] + + [[package]] + name = "zvariant_derive" +-version = "4.0.0" ++version = "4.2.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "72a5857e2856435331636a9fbb415b09243df4521a267c5bedcd5289b4d5799e" ++checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" + dependencies = [ +- "proc-macro-crate 1.3.1", ++ "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", +- "syn 1.0.109", +- "zvariant_utils 1.1.0", ++ "syn 2.0.110", ++ "zvariant_utils 2.1.0", + ] + + [[package]] + name = "zvariant_derive" +-version = "5.4.0" ++version = "5.8.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "74170caa85b8b84cc4935f2d56a57c7a15ea6185ccdd7eadb57e6edd90f94b2f" ++checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006" + dependencies = [ +- "proc-macro-crate 3.2.0", ++ "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", +- "syn 2.0.98", +- "zvariant_utils 3.2.0", ++ "syn 2.0.110", ++ "zvariant_utils 3.2.1", + ] + + [[package]] + name = "zvariant_utils" +-version = "1.1.0" ++version = "1.1.1" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "00bedb16a193cc12451873fee2a1bc6550225acece0e36f333e68326c73c8172" ++checksum = "75fa7291bdd68cd13c4f97cc9d78cbf16d96305856dfc7ac942aeff4c2de7d5a" + dependencies = [ + "proc-macro2", + "quote", +@@ -7411,14 +7757,24 @@ dependencies = [ + + [[package]] + name = "zvariant_utils" +-version = "3.2.0" ++version = "2.1.0" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34" ++checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340" ++dependencies = [ ++ "proc-macro2", ++ "quote", ++ "syn 2.0.110", ++] ++ ++[[package]] ++name = "zvariant_utils" ++version = "3.2.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599" + dependencies = [ + "proc-macro2", + "quote", + "serde", +- "static_assertions", +- "syn 2.0.98", +- "winnow 0.7.2", ++ "syn 2.0.110", ++ "winnow 0.7.13", + ] diff --git a/pkgs/development/tools/devpod/default.nix b/pkgs/development/tools/devpod/default.nix index 752d7425467b..d4ce173f2ffd 100644 --- a/pkgs/development/tools/devpod/default.nix +++ b/pkgs/development/tools/devpod/default.nix @@ -87,7 +87,9 @@ let cargoRoot = "src-tauri"; buildAndTestSubdir = "src-tauri"; - cargoHash = "sha256-BwuV5nAQcTAtdfK4+NKEt8Cj7gqnatRwHh/BYJJrIPo="; + cargoHash = "sha256-PSgBwa8sZ85W2kBrXkFVvnoYn5l1r3Jvn/LG8tITjbU="; + + cargoPatches = [ ./cargo-lock.patch ]; patches = [ # don't create a .desktop file automatically registered to open the devpod:// URI scheme diff --git a/pkgs/development/tools/electron/binary/info.json b/pkgs/development/tools/electron/binary/info.json index f4283a21e2f3..75b264f1475e 100644 --- a/pkgs/development/tools/electron/binary/info.json +++ b/pkgs/development/tools/electron/binary/info.json @@ -12,35 +12,35 @@ }, "37": { "hashes": { - "aarch64-darwin": "10f0143c4590a7eb9f542ff9e26db929a3690120e7010f74df546f164a4e128b", - "aarch64-linux": "902f4382f42b94d36d6fb5bd0b5d136b505a56649a81152d14971294ca94fff8", - "armv7l-linux": "099a77b3ad0fe3d71d9efa780d2a4be187ba74c03f15714d7c791e3e64b44fcd", + "aarch64-darwin": "62d8cd68fec502201db9d4aa940ef9e3ad0004f27e46d6f56c8cf8924da477e7", + "aarch64-linux": "deebbca4a0348ff7dd8564ee413bf7ed0d99c8d71951881286115e82bc4f22ba", + "armv7l-linux": "1c53701c915b4180bf09557374944a93050a601c2d36ec5ef014f1f1f620e4ab", "headers": "0lwcdw882hjb2vhj9vvngkwq5l6nrh7d2hr9adpqdm1any4rssl5", - "x86_64-darwin": "b4ea214ca58bce53f45d24acf1e3be245f787b40d3aa8532f71c91624d9502d6", - "x86_64-linux": "3a982dbfe21b72929ffcc80c786e0aa106a9e6ebf83ba7c8ed587dc12898c6e4" + "x86_64-darwin": "334478ae40a5a1ea2bc33ec787352073d15f50eb7a164dfbc1f9e7abb203ded8", + "x86_64-linux": "f773866342de11ba59ca73bb3cf373302839cc3e41c94f6a3ed7c13c110b3b5c" }, - "version": "37.10.0" + "version": "37.10.2" }, "38": { "hashes": { - "aarch64-darwin": "e89ab60544fa0a11775baf9fe027fa8ad2cf54ecf3ec80cd7b883aba8e32a63c", - "aarch64-linux": "08965d6d57f78b6cd26fcef0275e3047fd90e9e55ea2ab2c811c5c19364d3813", - "armv7l-linux": "220d9fbd00013fa940a4178f1ec5a8b2ac27bc4288fd51d5459afd1ff7f5de6d", - "headers": "1f1381qc705fv50sbm0g5f6wm8pkwqvrbhb1kvi3i9mk2910y14m", - "x86_64-darwin": "cdc216cca9541be10c4e2ff6a6c540ff1b2ab0947a6bd184917b243968bf9f8b", - "x86_64-linux": "21c15c1b6ea52d57c00551ec667d771ddb9ecc6ea2c7431012060f90868f688d" + "aarch64-darwin": "90ac7f8b3a6b6efb83fb5e3b85498456932a2897b862b689312ddde8d9d203c1", + "aarch64-linux": "0aa21bf35d9c7214b0809f85a101472a92bc7b93cf6bc0fd019b94ba309c9b09", + "armv7l-linux": "6ea202c53a5db24c1a50a939e54aa0ba87987eea462e33c5a25530bd243e8532", + "headers": "03ml730a2gli6cmr2lnzbjw9apx2zpgviap4xzw5xa9m76jvdc8h", + "x86_64-darwin": "c72b7b42b53f154a928b3b6778422ec27ac4123040366aabda80cdce67038470", + "x86_64-linux": "d43bd3ff3f7f9f56825f66a29165ff620d84695d4d06769855acf02c4baa7b9c" }, - "version": "38.7.0" + "version": "38.7.1" }, "39": { "hashes": { - "aarch64-darwin": "3ecbe543ebc728d813ea21f16cedebd6b7af812d716b0ede37f1227179a66c3e", - "aarch64-linux": "da7db0ead43e1f560fc1ade4aa50d773d75a5c5339d995f08db49b6fb7267c23", - "armv7l-linux": "87fc8b6903559deab6c2aada4e03dddba06a0071b10ecdc6a116da0baaeb639d", - "headers": "0pnmlknafq1d4hmfhpqpxv87sqrr9rkv3kz0r5y016j7yldjibh0", - "x86_64-darwin": "721ec50aac1c2c4ce0930b4f14eb4e5b92ce58ac41f965825dc986eb5f511fee", - "x86_64-linux": "c1f2f123dee6896ff09e4b3e504dfbfe42356c0e6b41b33fd849aa19fd50253d" + "aarch64-darwin": "2128a27c1b0fd80be9d608fb293639f76611b4108eca1e045c933fd04097a7b1", + "aarch64-linux": "c58c5904d6015cbbfa5f04fbda5c83b9a276a3565b5f3fa166795c789b055cdd", + "armv7l-linux": "d7c2f0b5038c49b1e637f8dbda945be4e6f3a6d7ebf802543e6ef5093c9641ff", + "headers": "0gaz44jv57aava01fvl35kqdl5yaf6ca7dzsx5f279qkpfyrhx2k", + "x86_64-darwin": "f8085a04dc35bfe0c32c36e6feffde07de16459bf36dfab422760181717f5ac0", + "x86_64-linux": "5eb51ebcb60487c4fc3a5b74ffb57a03eefd48def32200adf310ffaba4153d64" }, - "version": "39.2.0" + "version": "39.2.3" } } diff --git a/pkgs/development/tools/electron/chromedriver/info.json b/pkgs/development/tools/electron/chromedriver/info.json index cc8df047a162..af3a14d07017 100644 --- a/pkgs/development/tools/electron/chromedriver/info.json +++ b/pkgs/development/tools/electron/chromedriver/info.json @@ -12,35 +12,35 @@ }, "37": { "hashes": { - "aarch64-darwin": "d2c5aeb337610c011007e36142e9bac64c0c3ac225cdf8b41373267b57b1ae98", - "aarch64-linux": "3ec3197a0845556d03fd8389354e2e6eb1fb6dfd4ebfbf4d97448e440020777f", - "armv7l-linux": "6fd0945a614e98d0a14e5433e427f9e99414c11bce1dbced47e8e2180721ed09", + "aarch64-darwin": "30cfb8b90b0fad7cd0ef473fc03e761d28f98e1a398ff255956e3704c6da0727", + "aarch64-linux": "8a536ad3e2d2f0b9e99fc3085a9990f6d70c1de676d0f57219d2094ef1805ffd", + "armv7l-linux": "b8d774cf0188324538412201be8827d4224d658129eaf5e66f91c0448cc633f2", "headers": "0lwcdw882hjb2vhj9vvngkwq5l6nrh7d2hr9adpqdm1any4rssl5", - "x86_64-darwin": "049d25c8c23bbc1ff7060a56df071115895b9ba6268396cb69c6a1d6283918c7", - "x86_64-linux": "c0b5cd05437b13f0ad83e1bcc5d61a803962f72b29c0af21f4b19d2b8ff193a2" + "x86_64-darwin": "9d3655a3c4a409c9d422e762a913bf6d19c5ca728ac1de5a13e6c6e98c4b263a", + "x86_64-linux": "2a1fcc98587a23b4022c4d921016f24126ab1071b395760a0339de5f019f9771" }, - "version": "37.10.0" + "version": "37.10.2" }, "38": { "hashes": { - "aarch64-darwin": "41c15283f64be0f0773aa6a2fd44dbf2cdc9c42a5fe523420ae5b0a2f3969e61", - "aarch64-linux": "2bb62a5f1d46261847c95694559558dc32a8bf1b7165dce1011a9b1c31a60116", - "armv7l-linux": "c9605552bb48935f540f64fbe7c9cc8b3b3067a5989babfacaacf2016ce87230", - "headers": "1f1381qc705fv50sbm0g5f6wm8pkwqvrbhb1kvi3i9mk2910y14m", - "x86_64-darwin": "3af644d66d45be674a584cf4bfd89aae4f003650222f1ced86ce9c19aaf6c0a3", - "x86_64-linux": "479aaeff15da7187a7e24803a2a4325ccc6e9719b00cdc754f052192a137fadc" + "aarch64-darwin": "3faa6337db37dbb0e3e11fe66a6c93087bb5db79df25d2f1296a28edad8b2958", + "aarch64-linux": "bf0078dd84a4af9c636ecad448f824ebc2a99da10376746d8b1b600746e84de0", + "armv7l-linux": "8d41e3c53f5ab9d06b36a2a456cb35604802f1246adb100490a7770bef29a165", + "headers": "03ml730a2gli6cmr2lnzbjw9apx2zpgviap4xzw5xa9m76jvdc8h", + "x86_64-darwin": "c4ff20f9b683e1907072302c0cfc38ec0c47eca75b71098d916a6a82d87ff1bb", + "x86_64-linux": "997ab3fd934c1ac0ab479565e1def9b2eb6fe6d8a23fd585c8d62250ef05c704" }, - "version": "38.7.0" + "version": "38.7.1" }, "39": { "hashes": { - "aarch64-darwin": "98c036b4be864a3b6518142bb82ec329651d74bb3d38c6e8693058e8cb0a22f3", - "aarch64-linux": "ee24ebef991438cb8d3be0ec97c06cd63201e7fdbeb85b57b133a0a0fe32519d", - "armv7l-linux": "82b4855a5dcc17548da7826fbb6cc2f98cef515ad09aa5c24fad52bb076161cc", - "headers": "0pnmlknafq1d4hmfhpqpxv87sqrr9rkv3kz0r5y016j7yldjibh0", - "x86_64-darwin": "daae3a502e68195a30700040d428a4edb9e243d9673dcd10c3f01a5cae0474d5", - "x86_64-linux": "d11ae58e17f8f3759d67dc03096e979743825a5a4ea793357b550c50c1881b35" + "aarch64-darwin": "1e88807c749e69c9a1b2abef105cf30dbec4fddc365afcaa624b1e2df80fe636", + "aarch64-linux": "8de5ed25a12029ca999455c1cadf28341ec5e0de87a3a0c27dbb24df99f154b1", + "armv7l-linux": "766b16d8b1297738a0d1fa7e44d992142558f6e12820197746913385590f033e", + "headers": "0gaz44jv57aava01fvl35kqdl5yaf6ca7dzsx5f279qkpfyrhx2k", + "x86_64-darwin": "5cadee0db7684ae48a7f9f4f1310c3f6e1518b0fa88cf3efb36f58984763d43d", + "x86_64-linux": "f35049fe3d8dbfdb7c541b59bdca6982b571761bb8cb7fc85515ceaea9451de9" }, - "version": "39.2.0" + "version": "39.2.3" } } diff --git a/pkgs/development/tools/electron/info.json b/pkgs/development/tools/electron/info.json index a4207b8025f3..7e4cd2dd554c 100644 --- a/pkgs/development/tools/electron/info.json +++ b/pkgs/development/tools/electron/info.json @@ -15,8 +15,8 @@ "deps": { "src": { "args": { - "hash": "sha256-hzgDUuflap7gg60jjHO1n8RCFp4QzpRY5ZttCx0wIYA=", - "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/content/test/data; rm -rf $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ", + "hash": "sha256-I4lltlu5a+8S9Lg2ESAe3jBzDQmCVBLQ5DIulTNYW2U=", + "postFetch": "rm -rf $(find $out/third_party/blink/web_tests ! -name BUILD.gn -mindepth 1 -maxdepth 1); rm -r $out/content/test/data; rm -rf $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ", "tag": "138.0.7204.251", "url": "https://chromium.googlesource.com/chromium/src.git" }, @@ -56,10 +56,10 @@ }, "src/electron": { "args": { - "hash": "sha256-nE6qhNX6k+TqHS6PPZcsQ3BCH1ckkn6/FNPv12TcHQ0=", + "hash": "sha256-I8C0lT1VnNP4fSMp5LReFe8tQj/3IM1Ko6SohY187Cc=", "owner": "electron", "repo": "electron", - "tag": "v37.10.0" + "tag": "v37.10.2" }, "fetcher": "fetchFromGitHub" }, @@ -1329,7 +1329,7 @@ "electron_yarn_hash": "0hm126bl9cscs2mjb3yx2yr4b22agqp9r0c5kv25r3lvc020r9pk", "modules": "136", "node": "22.21.1", - "version": "37.10.0" + "version": "37.10.2" }, "38": { "chrome": "140.0.7339.249", @@ -1347,8 +1347,8 @@ "deps": { "src": { "args": { - "hash": "sha256-ny2ZfcFpdt53+UbjZExBPpxZ/SJts/3DfxgFqbz4QfI=", - "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/content/test/data; rm -rf $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ", + "hash": "sha256-XZsQRWZgPe8zAFTpao98dovXQLfkwnQNQDpAgkzeITY=", + "postFetch": "rm -rf $(find $out/third_party/blink/web_tests ! -name BUILD.gn -mindepth 1 -maxdepth 1); rm -r $out/content/test/data; rm -rf $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ", "tag": "140.0.7339.249", "url": "https://chromium.googlesource.com/chromium/src.git" }, @@ -1388,10 +1388,10 @@ }, "src/electron": { "args": { - "hash": "sha256-FFO1VwcyIRtmDRiQ94ar6+fxOg97eeNGfYdqUPZhXPE=", + "hash": "sha256-1C17jQP8TFxBTHhIz+fHB83OFOykzZToPOrwzl+NN9Q=", "owner": "electron", "repo": "electron", - "tag": "v38.7.0" + "tag": "v38.7.1" }, "fetcher": "fetchFromGitHub" }, @@ -2653,10 +2653,10 @@ "electron_yarn_hash": "1knhw3blk3bl2a8nl58ik272qj2q0cpqiih5gcsds1na3bbkbn2z", "modules": "139", "node": "22.21.1", - "version": "38.7.0" + "version": "38.7.1" }, "39": { - "chrome": "142.0.7444.162", + "chrome": "142.0.7444.175", "chromium": { "deps": { "gn": { @@ -2665,15 +2665,15 @@ "version": "0-unstable-2025-09-18" } }, - "version": "142.0.7444.162" + "version": "142.0.7444.175" }, "chromium_npm_hash": "sha256-i1eQ4YlrWSgY522OlFtGDDPmxE2zd1hDM03AzR8RafE=", "deps": { "src": { "args": { - "hash": "sha256-CiOE22Kxdqovk+/vV2UJWo013DFRFGhEeUVsrKuOixE=", + "hash": "sha256-nRZWCvoGYS4gxoJidkKGqTMGUuFfXfhIrHc3j/xRlaI=", "postFetch": "rm -rf $(find $out/third_party/blink/web_tests ! -name BUILD.gn -mindepth 1 -maxdepth 1); rm -r $out/content/test/data; rm -rf $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ", - "tag": "142.0.7444.162", + "tag": "142.0.7444.175", "url": "https://chromium.googlesource.com/chromium/src.git" }, "fetcher": "fetchFromGitiles" @@ -2712,10 +2712,10 @@ }, "src/electron": { "args": { - "hash": "sha256-uQHUCB+BLguP7GjP+iws5gowFpwYKHa/lIqxCVFM76g=", + "hash": "sha256-Zvu8Puh7j/u84cigKtfhOjBcxIYKJAv1mmbmIFRwdNY=", "owner": "electron", "repo": "electron", - "tag": "v39.2.0" + "tag": "v39.2.3" }, "fetcher": "fetchFromGitHub" }, @@ -3991,8 +3991,8 @@ }, "src/v8": { "args": { - "hash": "sha256-otYRT8scmJ9boG2PKXRacL0C5FFwOVctKK/Dh7WG0tU=", - "rev": "9210361d0a26fa4afefad8c5e60c85e59c5e2c8e", + "hash": "sha256-jECAfgeAgdkhbI/8BgT9TakR9Ylha2zPznjZzibPQbE=", + "rev": "baea8d627b70725fb777ebc1074f8ec4110ef6cb", "url": "https://chromium.googlesource.com/v8/v8.git" }, "fetcher": "fetchFromGitiles" @@ -4001,6 +4001,6 @@ "electron_yarn_hash": "19mpwfjb85d9kw1awiymj47h06rjk6vxqcgfajh612cgwkbz4m6f", "modules": "140", "node": "22.21.1", - "version": "39.2.0" + "version": "39.2.3" } } diff --git a/pkgs/servers/mastodon/source.nix b/pkgs/servers/mastodon/source.nix index 4fc40c0819e0..78544423daf3 100644 --- a/pkgs/servers/mastodon/source.nix +++ b/pkgs/servers/mastodon/source.nix @@ -5,17 +5,17 @@ patches ? [ ], }: let - version = "4.5.1"; + version = "4.5.2"; in applyPatches { src = fetchFromGitHub { owner = "mastodon"; repo = "mastodon"; rev = "v${version}"; - hash = "sha256-bMOM8i67z0rJXnTnh45TCrwLwbyFTImdePEVVoZiwlo="; + hash = "sha256-LePly+CcM+Dv6ipX9jIWWKhy2PiF1j8vgc9CXn2o+DQ="; passthru = { inherit version; - yarnHash = "sha256-GTiVGC7lTgK1UFji7CPDYkmxFVBgMAi6rPYkWlj+X1w="; + yarnHash = "sha256-2MOl6kHidkGU2I/cZaUmbQCiEl9SDfL/j9fT/6eNdFA="; yarnMissingHashes = ./missing-hashes.json; }; }; diff --git a/pkgs/servers/sql/postgresql/13.nix b/pkgs/servers/sql/postgresql/13.nix deleted file mode 100644 index 8f2892d4ee08..000000000000 --- a/pkgs/servers/sql/postgresql/13.nix +++ /dev/null @@ -1,15 +0,0 @@ -import ./generic.nix { - version = "13.23"; - rev = "refs/tags/REL_13_23"; - hash = "sha256-GSIHFSt2wzaI3HkA3yX/gZZF+LKwODHYislagdhQjmE="; - muslPatches = { - disable-test-collate-icu-utf8 = { - url = "https://git.alpinelinux.org/aports/plain/main/postgresql13/disable-test-collate.icu.utf8.patch?id=69faa146ec9fff3b981511068f17f9e629d4688b"; - hash = "sha256-jS/qxezaiaKhkWeMCXwpz1SDJwUWn9tzN0uKaZ3Ph2Y="; - }; - dont-use-locale-a = { - url = "https://git.alpinelinux.org/aports/plain/main/postgresql13/dont-use-locale-a-on-musl.patch?id=69faa146ec9fff3b981511068f17f9e629d4688b"; - hash = "sha256-fk+y/SvyA4Tt8OIvDl7rje5dLs3Zw+Ln1oddyYzerOo="; - }; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 15d6f79d95a0..f867017b59cf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3718,10 +3718,6 @@ with pkgs; tautulli = python3Packages.callPackage ../servers/tautulli { }; - pleroma = callPackage ../servers/pleroma { - beamPackages = beam.packages.erlang_26.extend (self: super: { elixir = elixir_1_17; }); - }; - plfit = callPackage ../by-name/pl/plfit/package.nix { python = null; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 05598010be5c..99063ca44ce4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11804,6 +11804,8 @@ self: super: with self; { pendulum = callPackage ../development/python-modules/pendulum { }; + pentapy = callPackage ../development/python-modules/pentapy { }; + pep440 = callPackage ../development/python-modules/pep440 { }; pep517 = callPackage ../development/python-modules/pep517 { }; diff --git a/typst-packages-from-universe.toml b/typst-packages-from-universe.toml new file mode 100644 index 000000000000..8476180d30dd --- /dev/null +++ b/typst-packages-from-universe.toml @@ -0,0 +1,32541 @@ +[a2c-nums."0.0.1"] +url = "https://packages.typst.org/preview/a2c-nums-0.0.1.tar.gz" +hash = "sha256-pVziMcz9ubNuUaTm+s4nMb0d8dzwB+hb/DgnQKeKeWw=" +typstDeps = [] +description = "Convert a number to Chinese" +license = [ + "MIT", +] +homepage = "https://github.com/soarowl/a2c-nums.git" + +[abbr."0.3.0"] +url = "https://packages.typst.org/preview/abbr-0.3.0.tar.gz" +hash = "sha256-O8LntWQhCu6yWAJu9Gp/rz3Q/e6cOqesmYkICut/G38=" +typstDeps = [] +description = "An Abbreviations package" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~slowjo/typst-abbr" + +[abbr."0.2.3"] +url = "https://packages.typst.org/preview/abbr-0.2.3.tar.gz" +hash = "sha256-H4zgbFvX14uHH5o2WtCGMtOXxejzTUPgeaObwhy6eak=" +typstDeps = [] +description = "An Abbreviations package" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~slowjo/typst-abbr" + +[abbr."0.2.2"] +url = "https://packages.typst.org/preview/abbr-0.2.2.tar.gz" +hash = "sha256-fPVIInoFZ4NKyVJojIAH02NAit0CLyubzJh+iOiaPXc=" +typstDeps = [] +description = "An Abbreviations package" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~slowjo/typst-abbr" + +[abbr."0.2.1"] +url = "https://packages.typst.org/preview/abbr-0.2.1.tar.gz" +hash = "sha256-MrnZfinOhFIo8fbnkf481WkNStmncTeeosn1NAc9Wu0=" +typstDeps = [] +description = "An Abbreviations package" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~slowjo/typst-abbr" + +[abbr."0.1.1"] +url = "https://packages.typst.org/preview/abbr-0.1.1.tar.gz" +hash = "sha256-LzJlLKFEBA3p9dpy2UwiHD9n52+9iJ/hRWRs5nmsVtA=" +typstDeps = [] +description = "An Abbreviations package" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~slowjo/typst-abbr" + +[abbr."0.1.0"] +url = "https://packages.typst.org/preview/abbr-0.1.0.tar.gz" +hash = "sha256-WKJEK4TcSIuqPkHcPWB+zmiSZsinfJAy9IGdbXta0GQ=" +typstDeps = [] +description = "An Abbreviations package" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~slowjo/typst-abbr" + +[abiding-ifacconf."0.2.1"] +url = "https://packages.typst.org/preview/abiding-ifacconf-0.2.1.tar.gz" +hash = "sha256-2/ddqX3thtyv3FNzgJMR5BD50rqlx7VfZmTdojVuBHE=" +typstDeps = [ + "ctheorems_1_1_3", +] +description = "An IFAC-style paper template to publish at conferences for International Federation of Automatic Control" +license = [ + "MIT-0", +] +homepage = "https://github.com/avonmoll/ifacconf-typst" + +[abiding-ifacconf."0.2.0"] +url = "https://packages.typst.org/preview/abiding-ifacconf-0.2.0.tar.gz" +hash = "sha256-AxEtfnFBgRjYgn+PIw6uMES+VtXjDmfnH4NaGDdkFy8=" +typstDeps = [ + "ctheorems_1_1_3", +] +description = "An IFAC-style paper template to publish at conferences for International Federation of Automatic Control" +license = [ + "MIT-0", +] +homepage = "https://github.com/avonmoll/ifacconf-typst" + +[abiding-ifacconf."0.1.0"] +url = "https://packages.typst.org/preview/abiding-ifacconf-0.1.0.tar.gz" +hash = "sha256-Vmx78w1m78eX0tIoHZsyR/Kh61cP/l5YqlhSeWjwG28=" +typstDeps = [ + "ctheorems_1_1_0", +] +description = "An IFAC-style paper template to publish at conferences for International Federation of Automatic Control" +license = [ + "MIT-0", +] +homepage = "https://github.com/avonmoll/ifacconf-typst" + +[abyss-book."0.2.9"] +url = "https://packages.typst.org/preview/abyss-book-0.2.9.tar.gz" +hash = "sha256-mBsXJ5sW4w4UMpOS812ZQcz/DUoNEPLKx7H95tXiNoU=" +typstDeps = [ + "zh-kit_0_1_0", +] +description = "A dark-themed typst template" +license = [ + "MIT", +] +homepage = "https://github.com/CrossDark/AbyssBook" + +[academic-alt."0.1.0"] +url = "https://packages.typst.org/preview/academic-alt-0.1.0.tar.gz" +hash = "sha256-dxm2Mjwm3t+W593lg1JOZfACz/nwYx0kr7VhAFfN/o0=" +typstDeps = [] +description = "A flexible template for university assignments, labs, and homework with customizable details" +license = [ + "MIT", +] +homepage = "https://github.com/alessandromason/typst-university-assignment" + +[academic-conf-pre."0.1.0"] +url = "https://packages.typst.org/preview/academic-conf-pre-0.1.0.tar.gz" +hash = "sha256-12BrUly7fU/7c0ZB+OMY3UaV7ZpYUSWQUywc042ciL8=" +typstDeps = [ + "cuti_0_2_1", + "touying_0_4_2", + "unify_0_6_0", +] +description = "Slide Theme for Acadmic Presentations in Australia" +license = [ + "MIT", +] +homepage = "https://github.com/JL-ghcoder/Typst-Pre-Template" + +[academicv."1.1.0"] +url = "https://packages.typst.org/preview/academicv-1.1.0.tar.gz" +hash = "sha256-OzuK3FlqGPgFEoBz3J8zTJXfxG5qbO0oZFGVPofXqA0=" +typstDeps = [ + "academicv_1_0_0", +] +description = "A clean, flexible curriculum vitae (CV) template using Typst and YAML" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/roaldarbol/academicv" + +[academicv."1.0.0"] +url = "https://packages.typst.org/preview/academicv-1.0.0.tar.gz" +hash = "sha256-GHXDKGpD9JZIZbCmziNORHx4n6VjwY4R4nh8bUyGYQ4=" +typstDeps = [] +description = "A clean, flexible curriculum vitae (CV) template using Typst and YAML" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/roaldarbol/academicv" + +[accelerated-jacow."0.14.0"] +url = "https://packages.typst.org/preview/accelerated-jacow-0.14.0.tar.gz" +hash = "sha256-Lq9oWMItaB25qqDZiukAOJTCz/kpkci10JE8NN4Deas=" +typstDeps = [ + "glossy_0_7_0", + "lilaq_0_5_0", + "physica_0_9_7", + "unify_0_7_1", +] +description = "Paper template for conference proceedings in accelerator physics" +license = [ + "GPL-3.0-only", + "MIT-0", +] +homepage = "https://github.com/eltos/accelerated-jacow/" + +[accelerated-jacow."0.1.4"] +url = "https://packages.typst.org/preview/accelerated-jacow-0.1.4.tar.gz" +hash = "sha256-VQ6n3x5GFa/SHglDNlkN09xBoOYYrwTkfVeRSgjmt0I=" +typstDeps = [ + "glossy_0_7_0", + "lilaq_0_1_0", + "physica_0_9_5", + "unify_0_7_1", +] +description = "Paper template for conference proceedings in accelerator physics" +license = [ + "GPL-3.0-only", + "MIT-0", +] +homepage = "https://github.com/eltos/accelerated-jacow/" + +[accelerated-jacow."0.1.3"] +url = "https://packages.typst.org/preview/accelerated-jacow-0.1.3.tar.gz" +hash = "sha256-rdamQ3duwAyaQNJqdZ7QdOJ22fTs5l0aSVu5Ykv78bQ=" +typstDeps = [ + "glossy_0_7_0", + "lilaq_0_1_0", + "physica_0_9_5", + "unify_0_7_1", +] +description = "Paper template for conference proceedings in accelerator physics" +license = [ + "GPL-3.0-only", + "MIT-0", +] +homepage = "https://github.com/eltos/accelerated-jacow/" + +[accelerated-jacow."0.1.2"] +url = "https://packages.typst.org/preview/accelerated-jacow-0.1.2.tar.gz" +hash = "sha256-juQdPIDbJ6goVgn4HqgHp8gw+Ztx6QBjTo24jh6P3iw=" +typstDeps = [ + "glossy_0_4_0", + "unify_0_6_0", +] +description = "Paper template for conference proceedings in accelerator physics" +license = [ + "GPL-3.0-only", + "MIT-0", +] +homepage = "https://github.com/eltos/accelerated-jacow/" + +[accelerated-jacow."0.1.1"] +url = "https://packages.typst.org/preview/accelerated-jacow-0.1.1.tar.gz" +hash = "sha256-JzoBrYHlfZJiPGL6CRfskmyP0DL/qmb2q4anWD9ZhOc=" +typstDeps = [ + "unify_0_6_0", +] +description = "Paper template for conference proceedings in accelerator physics" +license = [ + "GPL-3.0-only", + "MIT-0", +] +homepage = "https://github.com/eltos/accelerated-jacow/" + +[accelerated-jacow."0.1.0"] +url = "https://packages.typst.org/preview/accelerated-jacow-0.1.0.tar.gz" +hash = "sha256-C64cbdHGiCJjMvmSuT+o7z2/+qGNXtjc+sAia7Uq5S8=" +typstDeps = [ + "unify_0_6_0", +] +description = "Paper template for conference proceedings in accelerator physics" +license = [ + "GPL-3.0-only", + "MIT-0", +] +homepage = "https://github.com/eltos/accelerated-jacow/" + +[acrostiche."0.7.0"] +url = "https://packages.typst.org/preview/acrostiche-0.7.0.tar.gz" +hash = "sha256-YQ6KGNc/v75uMJhG4y2ioV95tuuVG4CgUNtUaTEqPIQ=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.6.0"] +url = "https://packages.typst.org/preview/acrostiche-0.6.0.tar.gz" +hash = "sha256-/XY6OuGBYvx6+aXwg1EhMM04swOQ7asp3JgLk/JEMwM=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.5.2"] +url = "https://packages.typst.org/preview/acrostiche-0.5.2.tar.gz" +hash = "sha256-49mE2p7lh6AfiMcXQuPctfPoKuvN4f9/KMnUXe/o4uA=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.5.1"] +url = "https://packages.typst.org/preview/acrostiche-0.5.1.tar.gz" +hash = "sha256-Zh/Q9tMunWN6X4jU47r/c7WPafIHA/9lBtuGJSumGO8=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.5.0"] +url = "https://packages.typst.org/preview/acrostiche-0.5.0.tar.gz" +hash = "sha256-mZouqJU14WXv39afAqIjnqIehyke+h9nm0qfomBIluI=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.4.1"] +url = "https://packages.typst.org/preview/acrostiche-0.4.1.tar.gz" +hash = "sha256-g1IEOVKr/Lvd4kuG1h8uKSY0oZXN98mJFZ9bXKDbV7E=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.4.0"] +url = "https://packages.typst.org/preview/acrostiche-0.4.0.tar.gz" +hash = "sha256-c8m7W3YoD66+BcUkEDRvyOBlLarAoFGwc/Ut07raXwE=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.3.5"] +url = "https://packages.typst.org/preview/acrostiche-0.3.5.tar.gz" +hash = "sha256-8pKpRPaNLts5s53vVKGb4M8HEhvLMcP85i4+9uAtu4Y=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.3.4"] +url = "https://packages.typst.org/preview/acrostiche-0.3.4.tar.gz" +hash = "sha256-qqq69YomURNJZiP17I/N64QR5wGmRyZpNEMfA8gyE5I=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.3.3"] +url = "https://packages.typst.org/preview/acrostiche-0.3.3.tar.gz" +hash = "sha256-h9TG1q+ms+sZ+h4yLdYebwy2llVqy0m4h4KagXCx3eE=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.3.2"] +url = "https://packages.typst.org/preview/acrostiche-0.3.2.tar.gz" +hash = "sha256-ovSxtKCuN5Y2DCMPxZeYngOw+c4YwGcES5gLYog6Q0E=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.3.1"] +url = "https://packages.typst.org/preview/acrostiche-0.3.1.tar.gz" +hash = "sha256-OkUgSNg/NZwoAdqAVNjeLT6NGgPTnEcJorfMsX2U83A=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.3.0"] +url = "https://packages.typst.org/preview/acrostiche-0.3.0.tar.gz" +hash = "sha256-pRMAUavDeMDD7VIp14ACHOksMBRy1dofIk9MmJxXhcI=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + +[acrostiche."0.2.0"] +url = "https://packages.typst.org/preview/acrostiche-0.2.0.tar.gz" +hash = "sha256-ZMtEfY96MiyL0lnpVwqSDgSmudSpx/+ouBcFt5fboVs=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] + +[acrostiche."0.1.0"] +url = "https://packages.typst.org/preview/acrostiche-0.1.0.tar.gz" +hash = "sha256-Os6fdu9kkF3sDObR7kdNYGeegG/BT40twOd+JIMXx6Q=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] + +[acrotastic."0.1.1"] +url = "https://packages.typst.org/preview/acrotastic-0.1.1.tar.gz" +hash = "sha256-UNkf8v0Po0DQGiCzQGUzB/CrS7f8Jt8aG0EsmpwvYRU=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Julian702/typst-packages" + +[acrotastic."0.1.0"] +url = "https://packages.typst.org/preview/acrotastic-0.1.0.tar.gz" +hash = "sha256-eINTyj03/hnXWAIjClpR0tCaWkDSrW3XSOv+Un61W98=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Julian702/typst-packages" + +[adaptable-pset."0.2.0"] +url = "https://packages.typst.org/preview/adaptable-pset-0.2.0.tar.gz" +hash = "sha256-KmqIP2i8j9URZfKgTq4f1M91yeAfwJ4QXTrwUdHGsxE=" +typstDeps = [ + "showybox_2_0_2", +] +description = "A flexible problem set template, perfect for technical courses" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/adaptable-pset" + +[adaptable-pset."0.1.1"] +url = "https://packages.typst.org/preview/adaptable-pset-0.1.1.tar.gz" +hash = "sha256-DAb7eSgVZe5gW92GB5byfOn4qUuzMOTmMotJtWjxR/c=" +typstDeps = [ + "showybox_2_0_2", +] +description = "A flexible problem set template, perfect for technical courses" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/adaptable-pset" + +[adaptable-pset."0.1.0"] +url = "https://packages.typst.org/preview/adaptable-pset-0.1.0.tar.gz" +hash = "sha256-VXFpXVc+W2Di6usqM8LZ1zlnFsDXudUEnsZ3bNiDrHg=" +typstDeps = [ + "showybox_2_0_2", +] +description = "A flexible problem set template, perfect for technical courses" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/adaptable-pset" + +[aero-check."0.1.1"] +url = "https://packages.typst.org/preview/aero-check-0.1.1.tar.gz" +hash = "sha256-rf9pPBnsXdxLW9r7iePL7VU61JP05g1m9L1Q6rsdmZQ=" +typstDeps = [] +description = "A simple template to create checklists with an aviation inspired style" +license = [ + "MIT", +] +homepage = "https://github.com/TomVer99/Typst-checklist-template" + +[aero-check."0.1.0"] +url = "https://packages.typst.org/preview/aero-check-0.1.0.tar.gz" +hash = "sha256-sdeWSE+jgnGK1hAe3EMC7iKlryzTrp4keVWtVTlQYtc=" +typstDeps = [] +description = "A simple template to create checklists with an aviation inspired style" +license = [ + "MIT", +] +homepage = "https://github.com/TomVer99/Typst-checklist-template" + +[aero-navigator."0.1.0"] +url = "https://packages.typst.org/preview/aero-navigator-0.1.0.tar.gz" +hash = "sha256-dL1ZqZsWcAOuPIS2bVl94XqEEYIdX7RfM97lyhl/29g=" +typstDeps = [] +description = "A Navigation Log, developed to replace multiple pages of notes and provide a succinct template to manage all the information needed as a Cross Country Pilot" +license = [ + "Unlicense", +] +homepage = "https://github.com/tristanduncombe/aero-navigator" + +[agregyst."0.1.0"] +url = "https://packages.typst.org/preview/agregyst-0.1.0.tar.gz" +hash = "sha256-ejVmOx40ozuzVXhUf6nvnHm6Gg0be+RYT1uuMx7dNk0=" +typstDeps = [ + "cetz_0_4_1", + "jumble_0_0_1", +] +description = "Agregation Template for writting teaching lesson" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/agregyst" + +[ailab-isetbz."0.1.0"] +url = "https://packages.typst.org/preview/ailab-isetbz-0.1.0.tar.gz" +hash = "sha256-1VmymGotEYdX/RuIncMg7c61E3uC/KTgUNzFr0TWo7Q=" +typstDeps = [ + "octique_0_1_0", +] +description = "Typst template for lab reports tailored for engineering students at ISET Bizerte" +license = [ + "MIT", +] +homepage = "https://github.com/a-mhamdi/ailab-isetbz" + +[aio-studi-and-thesis."0.1.3"] +url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.3.tar.gz" +hash = "sha256-VsyMwnkTI1BnBczhxyRWc93tamvJ9sp4gAP0bOpsRIs=" +typstDeps = [] +description = "All-in-one template for students and theses" +license = [ + "MIT", +] +homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis" + +[aio-studi-and-thesis."0.1.2"] +url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.2.tar.gz" +hash = "sha256-b4ThVYZcKwjw2n2Fl2fGcyPJ0J+y6pkMMs+THxDsHv0=" +typstDeps = [] +description = "All-in-one template for students and theses" +license = [ + "MIT", +] +homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis" + +[aio-studi-and-thesis."0.1.1"] +url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.1.tar.gz" +hash = "sha256-k3w4PQ0GBP5g3WQ4mtv+M7L/S4wtcXrGEUPj7OiuZt4=" +typstDeps = [ + "codly_1_3_0", + "glossarium_0_5_4", + "linguify_0_4_2", +] +description = "All-in-one template for students and theses" +license = [ + "MIT", +] +homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis" + +[aio-studi-and-thesis."0.1.0"] +url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.0.tar.gz" +hash = "sha256-j7FkVDolCi+jb3y5mRKRzT3VshMs1aVV3fYVBbuNrRs=" +typstDeps = [ + "codly_1_0_0", + "glossarium_0_4_1", + "linguify_0_4_1", +] +description = "All-in-one template for students and theses" +license = [ + "MIT", +] +homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis" + +[alchemist."0.1.8"] +url = "https://packages.typst.org/preview/alchemist-0.1.8.tar.gz" +hash = "sha256-GGOJ9TxctfYABiDU9NwMNDUjEzPoheuVnggfzIvhk6E=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package to render skeletal formulas using CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/alchemist" + +[alchemist."0.1.7"] +url = "https://packages.typst.org/preview/alchemist-0.1.7.tar.gz" +hash = "sha256-PvuEbsV9aePaa6iPTZjJDVe5UF/iT+fZm6crLGrBSWc=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package to render skeletal formulas using CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/alchemist" + +[alchemist."0.1.6"] +url = "https://packages.typst.org/preview/alchemist-0.1.6.tar.gz" +hash = "sha256-+P34Ok62beVlxLq86Do3PWl7ispM4k3VvNxpEMEB/Ts=" +typstDeps = [ + "cetz_0_3_4", +] +description = "A package to render skeletal formulas using CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/alchemist" + +[alchemist."0.1.5"] +url = "https://packages.typst.org/preview/alchemist-0.1.5.tar.gz" +hash = "sha256-2gwsoRkHkcKr6Skvi41yq5y53kD8vRMAyvzBS1NRWZY=" +typstDeps = [ + "cetz_0_3_4", +] +description = "A package to render skeletal formulas using CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/alchemist" + +[alchemist."0.1.4"] +url = "https://packages.typst.org/preview/alchemist-0.1.4.tar.gz" +hash = "sha256-ZMcKmnCoVCgK3QM4UDz88RL8ng9f1boUq7Y6GbWSQqA=" +typstDeps = [ + "cetz_0_3_1", + "cetz_0_3_2", +] +description = "A package to render skeletal formulas using cetz" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/alchemist" + +[alchemist."0.1.3"] +url = "https://packages.typst.org/preview/alchemist-0.1.3.tar.gz" +hash = "sha256-5ISo43sBQUij+drAhp4SBb4KO4CDmnAVLtUf8X4ndgw=" +typstDeps = [ + "cetz_0_3_1", +] +description = "A package to render skeletal formulas using cetz" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/alchemist" + +[alchemist."0.1.2"] +url = "https://packages.typst.org/preview/alchemist-0.1.2.tar.gz" +hash = "sha256-ilt3DRxnIrl1Sa9/3HKpVmot0cWkbAgRfgRa6xrl+Uc=" +typstDeps = [ + "cetz_0_3_1", +] +description = "A package to render skeletal formulas using cetz" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/alchemist" + +[alchemist."0.1.1"] +url = "https://packages.typst.org/preview/alchemist-0.1.1.tar.gz" +hash = "sha256-/2mB7c8xBWY8qF9AX90980Gm+g370BhmwJ7zbtRniy0=" +typstDeps = [ + "cetz_0_2_2", +] +description = "A package to render skeletal formulas using cetz" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/alchemist" + +[alchemist."0.1.0"] +url = "https://packages.typst.org/preview/alchemist-0.1.0.tar.gz" +hash = "sha256-bst3ivSrzStuje2NqL7aVkKRZ8wrRTSqv0tIO4KnQb8=" +typstDeps = [ + "cetz_0_2_2", +] +description = "A package to render skeletal formulas using cetz" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/alchemist" + +[alexandria."0.2.1"] +url = "https://packages.typst.org/preview/alexandria-0.2.1.tar.gz" +hash = "sha256-bK+GyrEE0VXiKARCEy2oFEMkp6TTfQhQ+scM5i7+a8A=" +typstDeps = [] +description = "Use multiple bibliographies in a single Typst document " +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-alexandria" + +[alexandria."0.2.0"] +url = "https://packages.typst.org/preview/alexandria-0.2.0.tar.gz" +hash = "sha256-N8O9v1tD6CemqbJjX8yTMK2ZGFFASLchZSEie1v2Y3w=" +typstDeps = [] +description = "Use multiple bibliographies in a single Typst document " +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-alexandria" + +[alexandria."0.1.3"] +url = "https://packages.typst.org/preview/alexandria-0.1.3.tar.gz" +hash = "sha256-gYQFCxmSzEyhAFM70sKuTJIbS81IAS6g/Qy/DSR0irs=" +typstDeps = [] +description = "Use multiple bibliographies in a single Typst document " +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-alexandria" + +[alexandria."0.1.2"] +url = "https://packages.typst.org/preview/alexandria-0.1.2.tar.gz" +hash = "sha256-5nblagG8KIJw8qL/bgW2/4Ltedv3NK6eORUqR6UQ268=" +typstDeps = [] +description = "Use multiple bibliographies in a single Typst document " +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-alexandria" + +[alexandria."0.1.1"] +url = "https://packages.typst.org/preview/alexandria-0.1.1.tar.gz" +hash = "sha256-hZtp81RmNnP1SiVue81LJsV+XHvPZxBD0Av9JmVPpnE=" +typstDeps = [] +description = "Use multiple bibliographies in a single Typst document " +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-alexandria" + +[alexandria."0.1.0"] +url = "https://packages.typst.org/preview/alexandria-0.1.0.tar.gz" +hash = "sha256-kwwZzoRvG54tLFKA7RAK7IYJYfo3qGmUYREHWds7k1g=" +typstDeps = [] +description = "Use multiple bibliographies in a single Typst document " +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-alexandria" + +[algo."0.3.6"] +url = "https://packages.typst.org/preview/algo-0.3.6.tar.gz" +hash = "sha256-n3qtUwnUdv5Xcm1FwlRRorKkhDKPFT5t3p8NMMLmb7k=" +typstDeps = [] +description = "Beautifully typeset algorithms" +license = [ + "MIT", +] +homepage = "https://github.com/platformer/typst-algorithms" + +[algo."0.3.5"] +url = "https://packages.typst.org/preview/algo-0.3.5.tar.gz" +hash = "sha256-rNhxgkz7Wh4R5BfHaLmRpLIkxIZAmIViNPD5wh5E3Kg=" +typstDeps = [] +description = "Beautifully typeset algorithms" +license = [ + "MIT", +] +homepage = "https://github.com/platformer/typst-algorithms" + +[algo."0.3.4"] +url = "https://packages.typst.org/preview/algo-0.3.4.tar.gz" +hash = "sha256-FAUfCdgE7wORCS+V7IvsUfsIzvhJxqqed4SrIyLK0uY=" +typstDeps = [] +description = "Beautifully typeset algorithms" +license = [ + "MIT", +] +homepage = "https://github.com/platformer/typst-algorithms" + +[algo."0.3.3"] +url = "https://packages.typst.org/preview/algo-0.3.3.tar.gz" +hash = "sha256-3VUCgUg/a9iMQn+Qf8lUYgAQzeTr1kUka419hoGk4sQ=" +typstDeps = [] +description = "Beautifully typeset algorithms" +license = [ + "MIT", +] +homepage = "https://github.com/platformer/typst-algorithms" + +[algo."0.3.2"] +url = "https://packages.typst.org/preview/algo-0.3.2.tar.gz" +hash = "sha256-TlGOK/i8l6loDziVoU/V00/OBvzvNQQN2Omiaodesh0=" +typstDeps = [] +description = "Beautifully typeset algorithms" +license = [ + "MIT", +] +homepage = "https://github.com/platformer/typst-algorithms" + +[algo."0.3.1"] +url = "https://packages.typst.org/preview/algo-0.3.1.tar.gz" +hash = "sha256-53EvArSUnCKZPTxBC0iOC3s+O55r5hTO24hqwwGwOUM=" +typstDeps = [] +description = "Beautifully typeset algorithms" +license = [ + "MIT", +] +homepage = "https://github.com/platformer/typst-algorithms" + +[algo."0.3.0"] +url = "https://packages.typst.org/preview/algo-0.3.0.tar.gz" +hash = "sha256-v7iLmW4LHnalEgBC7p3bguclj9kXLZoEwZ3U2efXb3Y=" +typstDeps = [] +description = "Beautifully typeset algorithms" +license = [ + "MIT", +] +homepage = "https://github.com/platformer/typst-algorithms" + +[algorithmic."1.0.6"] +url = "https://packages.typst.org/preview/algorithmic-1.0.6.tar.gz" +hash = "sha256-mfKZfgNI0YIz+BpR5hdTTeqlfGGY6cUdHU+bMoFySr8=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.5"] +url = "https://packages.typst.org/preview/algorithmic-1.0.5.tar.gz" +hash = "sha256-FM7k3Rkmwm0HKWqF3iI+79k+0AB84/t3aOfnW20VPjg=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.4"] +url = "https://packages.typst.org/preview/algorithmic-1.0.4.tar.gz" +hash = "sha256-yjGUubK5gClOug/r9ffg0kv2Z6N3moRZ7uBdYvkOwqA=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.3"] +url = "https://packages.typst.org/preview/algorithmic-1.0.3.tar.gz" +hash = "sha256-/wXKu7z+Z6aLhrjEdJzHyAgY47DQxea8yINSbf1M/gs=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.2"] +url = "https://packages.typst.org/preview/algorithmic-1.0.2.tar.gz" +hash = "sha256-crawgOMqisxSpBcqtzZIEYrmFULACaG9i4EiolOwB1I=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.0"] +url = "https://packages.typst.org/preview/algorithmic-1.0.0.tar.gz" +hash = "sha256-PANFP/4IuLSVMn6SbECdEvSsyYc9KHJn7Ztqfl6DA4c=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."0.1.0"] +url = "https://packages.typst.org/preview/algorithmic-0.1.0.tar.gz" +hash = "sha256-oN5Yl0cWJ5QgzdNIePdQd2hD+uFL+DWcAdPilQ+oM6U=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/lf-/typst-algorithmic" + +[almost-tud-letter."0.1.0"] +url = "https://packages.typst.org/preview/almost-tud-letter-0.1.0.tar.gz" +hash = "sha256-92+hJJRON4bktPx9JhLPbYeYBKZe3RX9QfAv3F0Uy6M=" +typstDeps = [] +description = "A template that (almost!) replicates the TUDelft letter" +license = [ + "MIT", +] +homepage = "https://github.com/hugoledoux/almost-tud-letter" + +[aloecius-aip."0.0.1"] +url = "https://packages.typst.org/preview/aloecius-aip-0.0.1.tar.gz" +hash = "sha256-Z2+ibMjXWOoyNgZyoBRd0KsObc0IVwZezhMz2lHg97M=" +typstDeps = [ + "cetz_0_2_2", + "physica_0_9_3", + "whalogen_0_2_0", +] +description = "Typst template for reproducing AIP - Journal of Chemical Physics paper (draft" +license = [ + "MIT", +] +homepage = "https://github.com/Raunak12775/aloecius-aip" + +[alterlang."1.0.0"] +url = "https://packages.typst.org/preview/alterlang-1.0.0.tar.gz" +hash = "sha256-5FmtkZaDePj9DjPqYdMdmzWdjMVM4CNm6NtuxS5Xrks=" +typstDeps = [] +description = "Translate math operators" +license = [ + "MIT", +] +homepage = "https://github.com/RodAlc24/typst-alterlang" + +[amlos."0.2.1"] +url = "https://packages.typst.org/preview/amlos-0.2.1.tar.gz" +hash = "sha256-dKIik7BOkCBjAphoTnO+cz/+HBLaaLu8mPrs/41AoS0=" +typstDeps = [] +description = "Amlos makes list of symbols" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/uwni/Amlos" + +[amlos."0.2.0"] +url = "https://packages.typst.org/preview/amlos-0.2.0.tar.gz" +hash = "sha256-/d38oaKwHyI8iPaMFNKR8DtrlkOlYmpSASkUfh5rYnw=" +typstDeps = [] +description = "Amlos makes list of symbols" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/uwni/Amlos" + +[amlos."0.1.0"] +url = "https://packages.typst.org/preview/amlos-0.1.0.tar.gz" +hash = "sha256-3VbQ6MFPCLhEwaRMSRQQxRyrSplZiH4zycHPL8cO57I=" +typstDeps = [] +description = "Amlos makes list of symbols" +license = [ + "MPL-2.0", +] + +[amsterdammetje-article."0.1.1"] +url = "https://packages.typst.org/preview/amsterdammetje-article-0.1.1.tar.gz" +hash = "sha256-q+shUXY1t9GuJOd6UaDWgqN4eDEQUZgVfpwixTWKxlg=" +typstDeps = [ + "cetz_0_3_4", + "wordometer_0_1_4", +] +description = "University of Amsterdam Computer Science article template" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/qu1ncyk/amsterdammetje-article-typst" + +[amsterdammetje-article."0.1.0"] +url = "https://packages.typst.org/preview/amsterdammetje-article-0.1.0.tar.gz" +hash = "sha256-yuWd9g4lgXuIiaI4VedPdNPyzQZhav85Lul05x0KWqQ=" +typstDeps = [ + "cetz_0_3_4", + "wordometer_0_1_4", +] +description = "University of Amsterdam Computer Science article template" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/qu1ncyk/amsterdammetje-article-typst" + +[anatomy."0.1.1"] +url = "https://packages.typst.org/preview/anatomy-0.1.1.tar.gz" +hash = "sha256-s9Efy1fAoZOfE+BTMe/bE8Z6J7e1+wQTwxASs7yV8cc=" +typstDeps = [] +description = "Anatomy of a Font. Visualise metrics" +license = [ + "MIT", +] + +[anatomy."0.1.0"] +url = "https://packages.typst.org/preview/anatomy-0.1.0.tar.gz" +hash = "sha256-Oz1kh1s6ozZ6OHBMiqkcBoXx8NHaMFX4hBF5bTQfjQk=" +typstDeps = [] +description = "Anatomy of a Font. Visualise metrics" +license = [ + "MIT", +] + +[anr-aapg-fanmade."0.1.0"] +url = "https://packages.typst.org/preview/anr-aapg-fanmade-0.1.0.tar.gz" +hash = "sha256-wUiQczOQwvzZtXHd6uPuezMRyuF6mXQEYWs6TBtmBn0=" +typstDeps = [] +description = "Typst templates for ANR AAPG: grant proposals for the French National Research Agency" +license = [ + "ISC", +] +homepage = "https://gitlab.com/gasche/anr-aapg-fanmade-typst-template/" + +[ansi-render."0.8.0"] +url = "https://packages.typst.org/preview/ansi-render-0.8.0.tar.gz" +hash = "sha256-JAtWsp1lvhY+J9OIf5x+4ihEN2kcCoXg2R5HFI9r0nY=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.7.0"] +url = "https://packages.typst.org/preview/ansi-render-0.7.0.tar.gz" +hash = "sha256-TloscU5zmdvK1Mr91ZENQKtBKqBsO1OjtO+iTl0vkFw=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.6.1"] +url = "https://packages.typst.org/preview/ansi-render-0.6.1.tar.gz" +hash = "sha256-gQ4nrQfb492cN10LtfIFpRsYo+SBKLb8Uk2G5wApT0Y=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.6.0"] +url = "https://packages.typst.org/preview/ansi-render-0.6.0.tar.gz" +hash = "sha256-fLHm/ZP8uCrnmzUTrP/EipRuC71YH391pu3kpRDMEjM=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.5.1"] +url = "https://packages.typst.org/preview/ansi-render-0.5.1.tar.gz" +hash = "sha256-0SYxjhvXfOyHjRE5sWMG8uWt1DMbs+DFDY67EvEsd9o=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.5.0"] +url = "https://packages.typst.org/preview/ansi-render-0.5.0.tar.gz" +hash = "sha256-mLJ/jyCc2DTUGRc+YUpiI3/xU4Qx4GF3QpzOCNcP0Ps=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.4.2"] +url = "https://packages.typst.org/preview/ansi-render-0.4.2.tar.gz" +hash = "sha256-OYL675sQnr6PrhvOPj8Z1Fm8/FPzRBBACDcBonTlmjg=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.4.1"] +url = "https://packages.typst.org/preview/ansi-render-0.4.1.tar.gz" +hash = "sha256-4HdBgr9ao+nEzvAEmScFFdoWsTiHqutkEr6thzY0k80=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.4.0"] +url = "https://packages.typst.org/preview/ansi-render-0.4.0.tar.gz" +hash = "sha256-JyoQ2akR+CNKey0KQIHfqiwxG/5fP3LCrv66wOm6AZ8=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.3.0"] +url = "https://packages.typst.org/preview/ansi-render-0.3.0.tar.gz" +hash = "sha256-FVs/KtkDQ/zy7C9lWI4vd8FrtKPW6bY1hTt0n9X3kaM=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.2.0"] +url = "https://packages.typst.org/preview/ansi-render-0.2.0.tar.gz" +hash = "sha256-OAgUDNqXVFBiRgVMIZiTxPPaSyOYXWfkru30q5C0MqA=" +typstDeps = [] +description = "provides a simple way to render text with ANSI escape sequences in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi-render" + +[ansi-render."0.1.0"] +url = "https://packages.typst.org/preview/ansi-render-0.1.0.tar.gz" +hash = "sha256-foAzhIQPs64y+HQpuJRA5a87mXFyCrs+jMq+G/45Xtw=" +typstDeps = [] +description = "A simple way to render text with ANSI escape sequences in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-ansi_render" + +[anti-matter."0.1.1"] +url = "https://packages.typst.org/preview/anti-matter-0.1.1.tar.gz" +hash = "sha256-VtBqori+QENdbj3irQP7nhA7dUHJDS0v6k04z0hNH3w=" +typstDeps = [ + "hydra_0_2_0", + "oxifmt_0_2_0", + "tidy_0_1_0", +] +description = "Simple page numbering of front and back matter" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/anti-matter" + +[anti-matter."0.1.0"] +url = "https://packages.typst.org/preview/anti-matter-0.1.0.tar.gz" +hash = "sha256-1xQ14oJjYdcu6J2KqD/Id/WEn4Lnccw6XpROdviBBuw=" +typstDeps = [ + "hydra_0_2_0", + "oxifmt_0_2_0", + "tidy_0_1_0", +] +description = "Simple page numbering of front and back matter" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/anti-matter" + +[anti-matter."0.0.2"] +url = "https://packages.typst.org/preview/anti-matter-0.0.2.tar.gz" +hash = "sha256-mUUXp4h1iRo2jV/KnnD/QXLzFKcnLbaJ3CzfWhpBTZA=" +typstDeps = [] +description = "Simple page numbering of front and back matter" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/typst-anti-matter" + +[anti-matter."0.0.1"] +url = "https://packages.typst.org/preview/anti-matter-0.0.1.tar.gz" +hash = "sha256-eW9yS9bi6NO+vUKL9DXAfrpGIbNJGmmq18HKTxNEwMU=" +typstDeps = [] +description = "Simple page numbering of front and back matter" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/typst-anti-matter" + +[aoran."0.1.0"] +url = "https://packages.typst.org/preview/aoran-0.1.0.tar.gz" +hash = "sha256-DMcRGpjHcTY4AOSeb3zFQZdVGMq6/b+SX0plaCJH4p0=" +typstDeps = [] +description = "Helper to determine proper articles, like 'a or an" +license = [ + "MIT", +] +homepage = "https://github.com/swaits-typst-packages/aoran" + +[apa7-ish."0.2.2"] +url = "https://packages.typst.org/preview/apa7-ish-0.2.2.tar.gz" +hash = "sha256-o/iWSpiCWnJwtPhNkkWAoLK+NrHRR//RoHI30PP6RI4=" +typstDeps = [] +description = "Manuscript template that (mostly) complies with APA7 Style (Work in Progress" +license = [ + "MIT", +] +homepage = "https://github.com/mrwunderbar666/typst-apa7ish" + +[apa7-ish."0.2.1"] +url = "https://packages.typst.org/preview/apa7-ish-0.2.1.tar.gz" +hash = "sha256-yvVrefdVGh8S4CCIs64SQxUDzulLcZAlWGIvzhif0dE=" +typstDeps = [] +description = "Typst Template that (mostly) complies with APA7 Style (Work in Progress" +license = [ + "MIT", +] +homepage = "https://github.com/mrwunderbar666/typst-apa7ish" + +[apa7-ish."0.2.0"] +url = "https://packages.typst.org/preview/apa7-ish-0.2.0.tar.gz" +hash = "sha256-v9wA1y7hwjfF3yxwaSETM7ifymTT/HasN02vE+0dMFo=" +typstDeps = [] +description = "Typst Template that (mostly) complies with APA7 Style (Work in Progress" +license = [ + "MIT", +] +homepage = "https://github.com/mrwunderbar666/typst-apa7ish" + +[apa7-ish."0.1.0"] +url = "https://packages.typst.org/preview/apa7-ish-0.1.0.tar.gz" +hash = "sha256-5YNCD7VkJ69/3idnZsw/GAFLoxrjzU2mFkcoGa7dQ4w=" +typstDeps = [] +description = "Typst Template that (mostly) complies with APA7 Style (Work in Progress" +license = [ + "MIT", +] +homepage = "https://github.com/mrwunderbar666/typst-apa7ish" + +[ape."0.4.2"] +url = "https://packages.typst.org/preview/ape-0.4.2.tar.gz" +hash = "sha256-sYXxxZStirvbGrkGtF7QalmHsU1O1sioudRi2ZlhxDY=" +typstDeps = [ + "cetz_0_3_2", + "cetz-plot_0_1_1", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[ape."0.4.1"] +url = "https://packages.typst.org/preview/ape-0.4.1.tar.gz" +hash = "sha256-ngFhXySkHryy+mTGP4dFgNtnPC9NdpBsbZMhoRda0eM=" +typstDeps = [ + "cetz_0_3_2", + "cetz-plot_0_1_1", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[ape."0.4.0"] +url = "https://packages.typst.org/preview/ape-0.4.0.tar.gz" +hash = "sha256-rlOMgzE9+1OrwLA4ng6gZQoa/oceq4IUKF8TbgOnPVc=" +typstDeps = [ + "cetz_0_3_2", + "cetz-plot_0_1_1", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[ape."0.3.2"] +url = "https://packages.typst.org/preview/ape-0.3.2.tar.gz" +hash = "sha256-XY+eBfWembY260n2YHH6xS+Nv/O2Z/XQNNafOXkinmg=" +typstDeps = [ + "cetz_0_3_2", + "cetz-plot_0_1_1", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[ape."0.3.1"] +url = "https://packages.typst.org/preview/ape-0.3.1.tar.gz" +hash = "sha256-0xi7RR0JrATYGKnShguD4dXzStGGg6dkrxRhuwUCerE=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[ape."0.3.0"] +url = "https://packages.typst.org/preview/ape-0.3.0.tar.gz" +hash = "sha256-al4N3HPbHfAEFvLKfCYJanhsm+rzFBK7HCfN8jjcfD8=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[ape."0.2.0"] +url = "https://packages.typst.org/preview/ape-0.2.0.tar.gz" +hash = "sha256-86xONC374bMptXF8tbobMs42yWsKStD7RCIRRVbCV5Y=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[ape."0.1.0"] +url = "https://packages.typst.org/preview/ape-0.1.0.tar.gz" +hash = "sha256-9/Rdz1iL4Vw26e3JvaW6BTnyvArxZFttlsVB3deijmg=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + +[appreciated-letter."0.1.0"] +url = "https://packages.typst.org/preview/appreciated-letter-0.1.0.tar.gz" +hash = "sha256-iDU0x6Hvs/S21MyOTtZf0IlUXo19Kkm4ry1M48F1yUY=" +typstDeps = [] +description = "Correspond with business associates and your friends via mail" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[arborly."0.3.2"] +url = "https://packages.typst.org/preview/arborly-0.3.2.tar.gz" +hash = "sha256-q50izXGjCGEmik54xQ72wxRTk1WU5DWnG2RD9YLzOBQ=" +typstDeps = [ + "mantys_1_0_2", +] +description = "A library for producing beautiful syntax tree graphs" +license = [ + "MIT", +] +homepage = "https://github.com/pearcebasmanm/arborly" + +[arborly."0.3.1"] +url = "https://packages.typst.org/preview/arborly-0.3.1.tar.gz" +hash = "sha256-c+7milmTqT1pjCkWvXY9vOZ1M7ZhOn25uHESzWo7NqY=" +typstDeps = [ + "mantys_1_0_1", +] +description = "A library for producing beautiful syntax tree graphs" +license = [ + "MIT", +] +homepage = "https://github.com/pearcebasmanm/arborly" + +[arborly."0.3.0"] +url = "https://packages.typst.org/preview/arborly-0.3.0.tar.gz" +hash = "sha256-/5uZL6VbHbNkof5ffFuqnzl1EALCaZ4wdxrYn+IjdSU=" +typstDeps = [ + "mantys_1_0_1", +] +description = "A library for producing beautiful syntax tree graphs" +license = [ + "MIT", +] +homepage = "https://github.com/pearcebasmanm/arborly" + +[arborly."0.2.0"] +url = "https://packages.typst.org/preview/arborly-0.2.0.tar.gz" +hash = "sha256-PotA4XfhbE8qPcPUgq4dtbwrGPnP1dT7i4bRqgj4SY4=" +typstDeps = [ + "mantys_1_0_0", +] +description = "A library for producing beautiful syntax tree graphs" +license = [ + "MIT", +] +homepage = "https://github.com/pearcebasmanm/arborly" + +[arborly."0.1.1"] +url = "https://packages.typst.org/preview/arborly-0.1.1.tar.gz" +hash = "sha256-KlOYYCAwJDxh/tL4DuhcZj+WIMI/yRggYFM01IA+Oik=" +typstDeps = [ + "mantys_1_0_0", +] +description = "A library for producing beautiful syntax tree graphs" +license = [ + "MIT", +] +homepage = "https://github.com/pearcebasmanm/arborly" + +[arborly."0.1.0"] +url = "https://packages.typst.org/preview/arborly-0.1.0.tar.gz" +hash = "sha256-RjjMMlT4bwmpUYOmMlct4R0PKgCcS/vxmNa4G0os2fw=" +typstDeps = [ + "mantys_1_0_0", +] +description = "A library for producing beautiful syntax tree graphs" +license = [ + "MIT", +] +homepage = "https://github.com/pearcebasmanm/arborly" + +[arkheion."0.1.1"] +url = "https://packages.typst.org/preview/arkheion-0.1.1.tar.gz" +hash = "sha256-lPz7n7UtbC18rG6UJfXrt925IFrZg+KbcMcVEsxIGng=" +typstDeps = [] +description = "A simple template reproducing popular arXiv templates" +license = [ + "MIT", +] +homepage = "https://github.com/mgoulao/arkheion" + +[arkheion."0.1.0"] +url = "https://packages.typst.org/preview/arkheion-0.1.0.tar.gz" +hash = "sha256-6GxMbR4HDMCWsQDYWZnlcjcb5gpWtyMxReJ9BfGoCbM=" +typstDeps = [] +description = "A simple template reproducing popular arXiv templates" +license = [ + "MIT", +] +homepage = "https://github.com/mgoulao/arkheion" + +[articulate-coderscompass."0.1.7"] +url = "https://packages.typst.org/preview/articulate-coderscompass-0.1.7.tar.gz" +hash = "sha256-XyH0cQZHBNGCN8Abq95anO9nGt5bS8e7tC2AknVIiuY=" +typstDeps = [ + "cmarker_0_1_6", + "mitex_0_2_5", + "zebraw_0_5_5", +] +description = "" +license = [ + "MIT", +] +homepage = "https://github.com/Coders-Compass/articulate-coderscompass" + +[ascii-ipa."2.0.0"] +url = "https://packages.typst.org/preview/ascii-ipa-2.0.0.tar.gz" +hash = "sha256-E/ookDGdRJh0Ac29xnNV+AJVALUW/uM7MyztcFJlKdg=" +typstDeps = [] +description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA" +license = [ + "MIT", +] +homepage = "https://github.com/imatpot/typst-ascii-ipa" + +[ascii-ipa."1.1.1"] +url = "https://packages.typst.org/preview/ascii-ipa-1.1.1.tar.gz" +hash = "sha256-vrL1t4gc4Yw7smxqGmONzs7icjtduUOhbJn2pQEd1IE=" +typstDeps = [] +description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA" +license = [ + "MIT", +] +homepage = "https://github.com/imatpot/typst-ascii-ipa" + +[ascii-ipa."1.1.0"] +url = "https://packages.typst.org/preview/ascii-ipa-1.1.0.tar.gz" +hash = "sha256-ME7AdjI+75c5LVATeYTXgULpQJmOx60tJXR8jypPwRw=" +typstDeps = [] +description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA" +license = [ + "MIT", +] +homepage = "https://github.com/imatpot/typst-ascii-ipa" + +[ascii-ipa."1.0.0"] +url = "https://packages.typst.org/preview/ascii-ipa-1.0.0.tar.gz" +hash = "sha256-f88ysIeQS82G4849aBlbpS5MI2O1+q+JXYHgS4mCpVU=" +typstDeps = [] +description = "Converter for ASCII representations of the International Phonetic Alphabet (IPA" +license = [ + "MIT", +] +homepage = "https://github.com/imatpot/typst-ascii-ipa" + +[asciim."0.1.0"] +url = "https://packages.typst.org/preview/asciim-0.1.0.tar.gz" +hash = "sha256-UXJiGffdHPLMl7NwKWavNvzPiFljne3M1v9jjcJWrpE=" +typstDeps = [ + "cetz_0_4_1", +] +description = "Displaying ASCII tables with a 16x16 grid and overlays on elements" +license = [ + "MIT", +] +homepage = "https://github.com/waterlens/ascii-matrix" + +[aspirationally."0.1.0"] +url = "https://packages.typst.org/preview/aspirationally-0.1.0.tar.gz" +hash = "sha256-yjigsQIk7EYckbdlL3rr2yL5L65lprkllo9ULrheVcA=" +typstDeps = [ + "blinky_0_2_0", +] +description = "A clean and minimal template for academic cover letters, teaching statements, or research statements" +license = [ + "MIT-0", +] +homepage = "https://github.com/breezykermo/aspirationally" + +[athena-tu-darmstadt-exercise."0.2.0"] +url = "https://packages.typst.org/preview/athena-tu-darmstadt-exercise-0.2.0.tar.gz" +hash = "sha256-dtDAL9DwtJStoXylWkSWIfYJcV24lB5kw9fC9YXwJME=" +typstDeps = [] +description = "Exercise template for TU Darmstadt (Technische Universität Darmstadt" +license = [ + "MIT", +] +homepage = "https://github.com/JeyRunner/tuda-typst-templates" + +[athena-tu-darmstadt-exercise."0.1.0"] +url = "https://packages.typst.org/preview/athena-tu-darmstadt-exercise-0.1.0.tar.gz" +hash = "sha256-xZafuXAwXLTvpJvzjeFwSCla1rJZGsBSJjNkZgIJzQY=" +typstDeps = [] +description = "Exercise template for TU Darmstadt (Technische Universität Darmstadt" +license = [ + "MIT", +] +homepage = "https://github.com/JeyRunner/tuda-typst-templates" + +[athena-tu-darmstadt-thesis."0.1.1"] +url = "https://packages.typst.org/preview/athena-tu-darmstadt-thesis-0.1.1.tar.gz" +hash = "sha256-z9ZlsCzidynlnCPaQrniwAhS71lcOYv61mvCy8oczss=" +typstDeps = [ + "i-figured_0_2_3", +] +description = "Thesis template for TU Darmstadt (Technische Universität Darmstadt" +license = [ + "MIT", +] +homepage = "https://github.com/JeyRunner/tuda-typst-templates" + +[athena-tu-darmstadt-thesis."0.1.0"] +url = "https://packages.typst.org/preview/athena-tu-darmstadt-thesis-0.1.0.tar.gz" +hash = "sha256-xp2+xdOvfp4W49CAx7FAASLUMmwJ8YBx01m/zmdicO8=" +typstDeps = [ + "i-figured_0_2_3", +] +description = "Thesis template for TU Darmstadt (Technische Universität Darmstadt" +license = [ + "MIT", +] +homepage = "https://github.com/JeyRunner/tuda-typst-templates" + +[atomic."1.0.0"] +url = "https://packages.typst.org/preview/atomic-1.0.0.tar.gz" +hash = "sha256-HCigoT3cX1iZkC/2+WZl+1vIx9KKz7Uxm8k9LP121j4=" +typstDeps = [ + "cetz_0_3_2", +] +description = "Draw Atoms, their electron configurations, shells and orbitals in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/aargar1/atomic" + +[ats-friendly-resume."0.1.1"] +url = "https://packages.typst.org/preview/ats-friendly-resume-0.1.1.tar.gz" +hash = "sha256-8lsTVodasic/r6cZGcXdkk5uVpX8/oRQqDT3vVkFHgM=" +typstDeps = [] +description = "A simple ats friendly resume built for developers" +license = [ + "Unlicense", +] +homepage = "https://github.com/aybangueco/ats-friendly-resume" + +[ats-friendly-resume."0.1.0"] +url = "https://packages.typst.org/preview/ats-friendly-resume-0.1.0.tar.gz" +hash = "sha256-S8fMM5dDx48PfVVPufsPAGiB/oQdsczhl1e3ILin95c=" +typstDeps = [] +description = "A simple ats friendly resume built for developers" +license = [ + "Unlicense", +] +homepage = "https://github.com/aybangueco/ats-friendly-resume" + +[auto-div."0.1.0"] +url = "https://packages.typst.org/preview/auto-div-0.1.0.tar.gz" +hash = "sha256-nQk0gdBfX95TKBS3LFAORTX6/3tL8iBMx+TetMH+HCA=" +typstDeps = [ + "fractus_0_1_0", +] +description = "Automatic polynomial division" +license = [ + "MIT", +] +homepage = "https://github.com/euwbah/typst-packages/tree/auto-div" + +[autofletcher."0.1.1"] +url = "https://packages.typst.org/preview/autofletcher-0.1.1.tar.gz" +hash = "sha256-ELyFlfYqV8unjzWmNs9FfDOifSAUYBOgt4R7ZzCQRdg=" +typstDeps = [ + "autofletcher_0_1_0", + "fletcher_0_4_3", + "fletcher_0_4_5", + "tidy_0_2_0", +] +description = "Easier diagrams with fletcher" +license = [ + "MIT", +] +homepage = "https://github.com/3akev/autofletcher" + +[autofletcher."0.1.0"] +url = "https://packages.typst.org/preview/autofletcher-0.1.0.tar.gz" +hash = "sha256-Sit9pzyCSJnZ858GorkIU3ji3bQb/RoGwb6xlMxJW7k=" +typstDeps = [ + "fletcher_0_4_3", + "tidy_0_2_0", +] +description = "Easier diagrams with fletcher" +license = [ + "MIT", +] +homepage = "https://github.com/3akev/autofletcher" + +[babble-bubbles."0.1.0"] +url = "https://packages.typst.org/preview/babble-bubbles-0.1.0.tar.gz" +hash = "sha256-orOm67ydNPmIangnUNiiHiPU6Y5ivQ4KEmCWkFdwdw0=" +typstDeps = [] +description = "A package to create callouts" +license = [ + "MIT", +] +homepage = "https://github.com/ShadowMitia/typst-babble-bubbles" + +[babel."0.1.1"] +url = "https://packages.typst.org/preview/babel-0.1.1.tar.gz" +hash = "sha256-quGTOatlxmnn5mzjvX+AcMBvYc4z4Rc/1IXjhURBJq8=" +typstDeps = [ + "fontawesome_0_4_0", + "mantys_0_1_4", + "metalogo_1_0_2", + "suiji_0_3_0", + "wrap-it_0_1_0", +] +description = "Redact text by replacing it with random characters" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/afiaith/babel" + +[backtrack."1.0.0"] +url = "https://packages.typst.org/preview/backtrack-1.0.0.tar.gz" +hash = "sha256-1r7+26JZm3w47iqKH25jfIPe4J8hqP5PLDmZzoaMm+k=" +typstDeps = [] +description = "A version-agnostic library for checking the compiler version" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/TheLukeGuy/backtrack" + +[badformer."0.1.0"] +url = "https://packages.typst.org/preview/badformer-0.1.0.tar.gz" +hash = "sha256-8UBr9Puw+5+/zyLyPZQG5Tqph5takTynIro1UT8jB6Y=" +typstDeps = [ + "cetz_0_1_2", +] +description = "Retro-gaming in Typst. Reach the goal and complete the mission" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[badgery."0.1.1"] +url = "https://packages.typst.org/preview/badgery-0.1.1.tar.gz" +hash = "sha256-JFTQJnp2uAng8rSAN7zERqj+kYze0j5YjxRYPalyDec=" +typstDeps = [] +description = "Adds styled badges, boxes and menu actions" +license = [ + "MIT", +] +homepage = "https://github.com/dogezen/badgery" + +[badgery."0.1.0"] +url = "https://packages.typst.org/preview/badgery-0.1.0.tar.gz" +hash = "sha256-efIgFA4s3Gdh8wLc9ovcmjufxSj2lRX2vszvnr1KdW0=" +typstDeps = [] +description = "Adds styled badges, boxes and menu actions" +license = [ + "MIT", +] +homepage = "https://github.com/dogezen/badgery" + +[bamdone-aiaa."0.1.2"] +url = "https://packages.typst.org/preview/bamdone-aiaa-0.1.2.tar.gz" +hash = "sha256-xamtt+nwE9up9i9I2R3ObIgdSq/HiCPfCYVM19rmq4Q=" +typstDeps = [ + "droplet_0_3_1", +] +description = "An American Institute of Aeronautics and Astronautics (AIAA) template for conferences" +license = [ + "MIT-0", +] +homepage = "https://github.com/isaacew/aiaa-typst" + +[bamdone-aiaa."0.1.1"] +url = "https://packages.typst.org/preview/bamdone-aiaa-0.1.1.tar.gz" +hash = "sha256-M7P3peIFeZcKTQmh6grRAVt4rdj8eNZfx7TOptJmvsU=" +typstDeps = [ + "bamdone-aiaa_0_1_0", + "droplet_0_2_0", +] +description = "An American Institute of Aeronautics and Astronautics (AIAA) template for conferences" +license = [ + "MIT-0", +] +homepage = "https://github.com/isaacew/aiaa-typst" + +[bamdone-aiaa."0.1.0"] +url = "https://packages.typst.org/preview/bamdone-aiaa-0.1.0.tar.gz" +hash = "sha256-U8pX27DywfWhIoqtFBzO2atEJF6b1dUyEt2aXiAIAFQ=" +typstDeps = [ + "droplet_0_2_0", +] +description = "An American Institute of Aeronautics and Astronautics (AIAA) template for conferences" +license = [ + "MIT-0", +] +homepage = "https://github.com/isaacew/aiaa-typst" + +[bamdone-ieeeconf."0.1.1"] +url = "https://packages.typst.org/preview/bamdone-ieeeconf-0.1.1.tar.gz" +hash = "sha256-X+LDenUMKXHY1F+cTomrprPA2HmP5YsD96XoApNG3uU=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[bamdone-ieeeconf."0.1.0"] +url = "https://packages.typst.org/preview/bamdone-ieeeconf-0.1.0.tar.gz" +hash = "sha256-1pMnfSDHiRONxtUiJwXTpGJwMAyeXyMoGtaArb0bFnQ=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/isaacew/bamdone-ieeeconf" + +[bamdone-rebuttal."0.1.2"] +url = "https://packages.typst.org/preview/bamdone-rebuttal-0.1.2.tar.gz" +hash = "sha256-q8CzTorSifqbqPDF9xhYyYNG3nNxRIRXRIguuLPopew=" +typstDeps = [] +description = "Rebuttal/response letter template that allows authors to respond to feedback given by reviewers in a peer-review process on a point-by-point basis" +license = [ + "MIT-0", +] +homepage = "https://github.com/avonmoll/bamdone-rebuttal" + +[bamdone-rebuttal."0.1.1"] +url = "https://packages.typst.org/preview/bamdone-rebuttal-0.1.1.tar.gz" +hash = "sha256-0bLWbhrVzFBC95gE6eNeRbMjh3mYHQyXQSBE+5gecIM=" +typstDeps = [] +description = "Rebuttal/response letter template that allows authors to respond to feedback given by reviewers in a peer-review process on a point-by-point basis" +license = [ + "MIT-0", +] +homepage = "https://github.com/avonmoll/bamdone-rebuttal" + +[bamdone-rebuttal."0.1.0"] +url = "https://packages.typst.org/preview/bamdone-rebuttal-0.1.0.tar.gz" +hash = "sha256-2Y5T94C/sSWWcn+WMQfASeDLgfpkKGceRhpd+CO9f+I=" +typstDeps = [] +description = "Rebuttal/response letter template that allows authors to respond to feedback given by reviewers in a peer-review process on a point-by-point basis" +license = [ + "MIT-0", +] +homepage = "https://github.com/avonmoll/bamdone-rebuttal" + +[bananote."0.1.0"] +url = "https://packages.typst.org/preview/bananote-0.1.0.tar.gz" +hash = "sha256-8ktfRrHFLJVJNCRFhEWkJ4duxJIpmI4/huo+LSu/R8Q=" +typstDeps = [ + "pergamon_0_5_0", +] +description = "Nice template for research notes with splashes of yellow" +license = [ + "MIT", +] +homepage = "https://github.com/coli-saar/bananote" + +[barcala."0.2.0"] +url = "https://packages.typst.org/preview/barcala-0.2.0.tar.gz" +hash = "sha256-UCYioY6njOABEM6xNCwxcPa4TL7xQCt3yJnM66sZJY8=" +typstDeps = [ + "lilaq_0_5_0", + "physica_0_9_6", + "valkyrie_0_2_2", + "zero_0_5_0", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[barcala."0.1.5"] +url = "https://packages.typst.org/preview/barcala-0.1.5.tar.gz" +hash = "sha256-1tOfpPRLS7QOnvROecqzEy3Q//E/pB+xjF6I2tgdvsQ=" +typstDeps = [ + "lilaq_0_5_0", + "physica_0_9_6", + "valkyrie_0_2_2", + "zero_0_5_0", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[barcala."0.1.4"] +url = "https://packages.typst.org/preview/barcala-0.1.4.tar.gz" +hash = "sha256-yRzq6t8JJLc9+BJeBuSxLyBBm6Z9jTcHuVMUE6r6pX4=" +typstDeps = [ + "lilaq_0_4_0", + "physica_0_9_5", + "valkyrie_0_2_2", + "zero_0_5_0", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[barcala."0.1.3"] +url = "https://packages.typst.org/preview/barcala-0.1.3.tar.gz" +hash = "sha256-dzreqfQe6lME5w/huud3TcehZSSPE1sR2gVjVI6Vfps=" +typstDeps = [ + "fancy-units_0_1_1", + "lilaq_0_2_0", + "physica_0_9_5", + "valkyrie_0_2_2", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[barcala."0.1.2"] +url = "https://packages.typst.org/preview/barcala-0.1.2.tar.gz" +hash = "sha256-TrQa+i1lZP7CF7pHLF1BvTIzaYGimIiyVp5/S8/ZCYo=" +typstDeps = [ + "fancy-units_0_1_1", + "lilaq_0_2_0", + "physica_0_9_5", + "valkyrie_0_2_2", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[barcala."0.1.1"] +url = "https://packages.typst.org/preview/barcala-0.1.1.tar.gz" +hash = "sha256-CrtqR7G1X0Uert3ZILtxBn50feB6VtgyR3DoJFvDkok=" +typstDeps = [ + "fancy-units_0_1_1", + "lilaq_0_2_0", + "physica_0_9_5", + "valkyrie_0_2_2", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[barcala."0.1.0"] +url = "https://packages.typst.org/preview/barcala-0.1.0.tar.gz" +hash = "sha256-DcG8bHqYciFELaKKXqS4/wOT9EwlWh/sihySjwBKV8I=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[basalt-backlinks."0.1.1"] +url = "https://packages.typst.org/preview/basalt-backlinks-0.1.1.tar.gz" +hash = "sha256-ynoLsV664bY6MyJF5BXM3/tBXO28g3ZxW567MKg1SgY=" +typstDeps = [] +description = "Generate and get backlinks" +license = [ + "MIT", +] +homepage = "https://github.com/GabrielDTB/basalt-backlinks" + +[basalt-backlinks."0.1.0"] +url = "https://packages.typst.org/preview/basalt-backlinks-0.1.0.tar.gz" +hash = "sha256-Zj2opKg06Dq+PUn4B89Q3FVVL+JEIUE8G6fTEAGax70=" +typstDeps = [] +description = "Generate and get backlinks" +license = [ + "MIT", +] +homepage = "https://github.com/GabrielDTB/basalt-backlinks" + +[basalt-lib."1.1.0"] +url = "https://packages.typst.org/preview/basalt-lib-1.1.0.tar.gz" +hash = "sha256-iB6KV62vA6IAl8r5LuKohUOVc35oyyhsMrLUeU/H21A=" +typstDeps = [] +description = "Note taking utilities / Zettelkasten framework" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/GabrielDTB/basalt-lib" + +[basalt-lib."1.0.0"] +url = "https://packages.typst.org/preview/basalt-lib-1.0.0.tar.gz" +hash = "sha256-zZg+aIQ+7lEVlRfa8Twi+lOzkgaDJ4lwUl+IY+1UyIg=" +typstDeps = [] +description = "Note taking utilities / Zettelkasten framework" +license = [ + "AGPL-3.0-only", +] +homepage = "https://github.com/GabrielDTB/basalt-lib" + +[based."0.2.0"] +url = "https://packages.typst.org/preview/based-0.2.0.tar.gz" +hash = "sha256-UNk8tieGvuGY8Ue9T7r2eCb8Sb1lEe7s4fyV6iX4KYo=" +typstDeps = [] +description = "Encoder and decoder for base64, base32, and base16" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-based" + +[based."0.1.0"] +url = "https://packages.typst.org/preview/based-0.1.0.tar.gz" +hash = "sha256-5ojwPRdiFM/5r7MN05a1rWh8NRWR7zYh+liM2wNTTS4=" +typstDeps = [] +description = "Encoder and decoder for base64, base32, and base16" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-based" + +[basic-document-props."0.1.0"] +url = "https://packages.typst.org/preview/basic-document-props-0.1.0.tar.gz" +hash = "sha256-7gHvmsHDUtFNELBPzr2bqGYh+FTk2aI98i2f6n9+SZM=" +typstDeps = [] +description = "Simple document with header, footer, page numbering and mail-adress" +license = [ + "MIT", +] +homepage = "https://github.com/Notme112/typst-packages/" + +[basic-polylux."0.1.0"] +url = "https://packages.typst.org/preview/basic-polylux-0.1.0.tar.gz" +hash = "sha256-7ZhOZgiktjdN536BmRqx5QUtZvImXHkBUNP/lvVaLwM=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Starter template for Polylux" +license = [ + "Unlicense", +] +homepage = "https://github.com/polylux-typ/basic" + +[basic-report."0.3.1"] +url = "https://packages.typst.org/preview/basic-report-0.3.1.tar.gz" +hash = "sha256-HXEA2FpnVTicdOSkCggH2i0JLx5ENxQCSaUhcCzEncs=" +typstDeps = [ + "hydra_0_6_2", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + +[basic-report."0.3.0"] +url = "https://packages.typst.org/preview/basic-report-0.3.0.tar.gz" +hash = "sha256-AMmfXmqp4ckLYl4tF0Rm9C5AqYuWSq5jQw6xqo20xNc=" +typstDeps = [ + "hydra_0_6_1", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + +[basic-report."0.2.0"] +url = "https://packages.typst.org/preview/basic-report-0.2.0.tar.gz" +hash = "sha256-WXemvfXuIw/fBgJ9adUjcbovK797F1lPXvcKLELrs00=" +typstDeps = [ + "hydra_0_6_0", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + +[basic-report."0.1.2"] +url = "https://packages.typst.org/preview/basic-report-0.1.2.tar.gz" +hash = "sha256-1gyKqdnYu/T7bJahuonb/f8N3tc+w8k3eVLAWo4SmFs=" +typstDeps = [ + "hydra_0_6_0", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + +[basic-report."0.1.1"] +url = "https://packages.typst.org/preview/basic-report-0.1.1.tar.gz" +hash = "sha256-kybjfPOj9fgI31fME8v36jsUYYD5deZxZUG9/MBL1sc=" +typstDeps = [ + "hydra_0_5_1", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + +[basic-report."0.1.0"] +url = "https://packages.typst.org/preview/basic-report-0.1.0.tar.gz" +hash = "sha256-1+pvstMEer6OjfiJN0D7u4hH6w6pZS+bHcmFykNgrDA=" +typstDeps = [ + "hydra_0_5_1", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + +[basic-resume."0.2.9"] +url = "https://packages.typst.org/preview/basic-resume-0.2.9.tar.gz" +hash = "sha256-iRPfdb+68aSFQNZ5D7YRx3O4zAFoVEo4wmgJTXJZahs=" +typstDeps = [ + "scienceicons_0_1_0", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.2.8"] +url = "https://packages.typst.org/preview/basic-resume-0.2.8.tar.gz" +hash = "sha256-L2+gbjKcciwj/2xAGiKhkU6Uj8cXahP1ZrX+um1RgmA=" +typstDeps = [ + "scienceicons_0_1_0", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.2.7"] +url = "https://packages.typst.org/preview/basic-resume-0.2.7.tar.gz" +hash = "sha256-qKv8c853nKkPEzW04MEoa4wK0/6dm0lDG6rKU+f6OpI=" +typstDeps = [ + "scienceicons_0_1_0", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.2.4"] +url = "https://packages.typst.org/preview/basic-resume-0.2.4.tar.gz" +hash = "sha256-5j37vf3Xa3Js6uf4z8/KldWbnxfzMz6kBlQ3gWxcw/o=" +typstDeps = [ + "scienceicons_0_0_6", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.2.3"] +url = "https://packages.typst.org/preview/basic-resume-0.2.3.tar.gz" +hash = "sha256-hiviO4tvUzChP+7PcGbswL5EKQ5USWCs2hdQbRIygog=" +typstDeps = [ + "scienceicons_0_0_6", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.2.2"] +url = "https://packages.typst.org/preview/basic-resume-0.2.2.tar.gz" +hash = "sha256-rH5FUHNt4HF+PCRkcavapTpmf+P3D5b8BnTsocswQwY=" +typstDeps = [ + "scienceicons_0_0_6", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.2.1"] +url = "https://packages.typst.org/preview/basic-resume-0.2.1.tar.gz" +hash = "sha256-mr/U5o2XsWwJx1/iMqDSqpgs3tv4Nci3bsDJbkNX5MY=" +typstDeps = [ + "scienceicons_0_0_6", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.2.0"] +url = "https://packages.typst.org/preview/basic-resume-0.2.0.tar.gz" +hash = "sha256-Wc8SSm0D4qf4s/UxSNYczdG8pyrVAmRyviYUXlakeug=" +typstDeps = [] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.1.4"] +url = "https://packages.typst.org/preview/basic-resume-0.1.4.tar.gz" +hash = "sha256-AgKKQ9hmyQGbTC6HyE8y5A0O4QFezibOLRgpXxQHbfY=" +typstDeps = [] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.1.3"] +url = "https://packages.typst.org/preview/basic-resume-0.1.3.tar.gz" +hash = "sha256-0+XSchadFrSRcFKlmQrlUVX3h/esIdsPoWkUkwIuAkM=" +typstDeps = [] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.1.2"] +url = "https://packages.typst.org/preview/basic-resume-0.1.2.tar.gz" +hash = "sha256-670UlPwj8JuCp0/DOCK/dgkTBfyzuf6dqs4phCIOK8Y=" +typstDeps = [ + "basic-resume_0_1_0", +] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[basic-resume."0.1.0"] +url = "https://packages.typst.org/preview/basic-resume-0.1.0.tar.gz" +hash = "sha256-O/a7vafRcwzB2wJCU0m69OlkU1KyS7DNLeEzLx2VEHw=" +typstDeps = [] +description = "A simple, standard resume, designed to work well with ATS" +license = [ + "Unlicense", +] +homepage = "https://github.com/stuxf/basic-typst-resume-template" + +[bean-upm."0.1.0"] +url = "https://packages.typst.org/preview/bean-upm-0.1.0.tar.gz" +hash = "sha256-WOhY8YuDqZELAz4+WDN6Ojltt7igcGYL9zw6mVdnc10=" +typstDeps = [] +description = "Universidad Politécnica de Madrid thesis/report template" +license = [ + "MIT", +] +homepage = "https://github.com/Tikitikitikidesuka/typst-upm-report" + +[beautiful-abs."0.1.0"] +url = "https://packages.typst.org/preview/beautiful-abs-0.1.0.tar.gz" +hash = "sha256-UEOg8aoRaKZRIJxU+UO8dwnDJQ0jR9rmUwNB9M8t8ak=" +typstDeps = [] +description = "A package for creating beautiful standard abbreviations like i.e. or e.g" +license = [ + "MIT", +] +homepage = "https://github.com/judgeNotFound/beautiful-abs" + +[bei-report."0.1.2"] +url = "https://packages.typst.org/preview/bei-report-0.1.2.tar.gz" +hash = "sha256-RSiylTKCCUKpDOlZu5qGuyO2ChADopYXNn7dU8FY1o8=" +typstDeps = [] +description = "An unofficial Typst template for ENSIMAG internship report" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/beatussum/typst-bei-report-template" + +[bei-report."0.1.1"] +url = "https://packages.typst.org/preview/bei-report-0.1.1.tar.gz" +hash = "sha256-b1Sa3TubVcJiA0vYnoJuelN4ZqsJoa4KCoWL+gcMERY=" +typstDeps = [] +description = "An unofficial Typst template for ENSIMAG internship report" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/beatussum/typst-bei-report-template" + +[bei-report."0.1.0"] +url = "https://packages.typst.org/preview/bei-report-0.1.0.tar.gz" +hash = "sha256-LQ4gvAXLWGX0F3p3wos9tpln1wKofaAy52dJTpoTHPw=" +typstDeps = [] +description = "An unofficial Typst template for ENSIMAG internship report" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/beatussum/typst-bei-report-template" + +[bellbird-udesc-paper."0.0.1"] +url = "https://packages.typst.org/preview/bellbird-udesc-paper-0.0.1.tar.gz" +hash = "sha256-Olx+u3MjRjS4SaAoDxcMiRQpmMXrmepDLI7bRORtQYI=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "physica_0_9_5", +] +description = "An Udesc-style academic paper template" +license = [ + "LGPL-2.1-only", +] +homepage = "https://github.com/lucas-bublitz/bellbird-udesc-paper" + +[biceps."0.0.1"] +url = "https://packages.typst.org/preview/biceps-0.0.1.tar.gz" +hash = "sha256-w72oSOKuw72q7hK5mF78nwRsWVnI/mAXQvFWtdp89KM=" +typstDeps = [] +description = "Layout algorithm for CSS-style flex-wrap behavior. 💪" +license = [ + "MIT", +] +homepage = "https://github.com/pikaju/typst-biceps" + +[big-rati."0.1.0"] +url = "https://packages.typst.org/preview/big-rati-0.1.0.tar.gz" +hash = "sha256-g5YmNTI6FpHbGIOkexiBXVkZOWiw2ylvhmFyNhkVE+I=" +typstDeps = [] +description = "Utilities to work with big rational numbers in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/DanikVitek/typst-plugin-bigrational" + +[big-todo."0.2.0"] +url = "https://packages.typst.org/preview/big-todo-0.2.0.tar.gz" +hash = "sha256-0EFS2Uxzvcklih6cfaw9PNl0TfvEy/wHcbQm7ruqf3g=" +typstDeps = [] +description = "Package to insert clear TODOs, optionally with an outline" +license = [ + "Unlicense", +] + +[big-todo."0.1.0"] +url = "https://packages.typst.org/preview/big-todo-0.1.0.tar.gz" +hash = "sha256-7cw1KllbTWb2OUAIFl42p8rmrHbxRAB5+qEXck6qud8=" +typstDeps = [] +description = "Package to insert clear TODOs. Optionallay with an outline" +license = [ + "Unlicense", +] + +[blind-cvpr."0.5.0"] +url = "https://packages.typst.org/preview/blind-cvpr-0.5.0.tar.gz" +hash = "sha256-TQT7Zj0n7OJVfI9btjb/IRzS/1kXzETm6QGM0B5ldwI=" +typstDeps = [] +description = "CVPR-style paper template to publish at the Computer Vision and Pattern\nRecognition (CVPR) conferences" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[blindex."0.1.0"] +url = "https://packages.typst.org/preview/blindex-0.1.0.tar.gz" +hash = "sha256-/yYkghkgeF6yTm6fVK2Qj5HEf/XDeJ2oQ7M1jIW6TDU=" +typstDeps = [] +description = "Index-making of Biblical literature citations in Typst" +license = [ + "MIT", +] + +[blinky."0.2.0"] +url = "https://packages.typst.org/preview/blinky-0.2.0.tar.gz" +hash = "sha256-R00jeUxy1y/OwiDbknFbjxnxbD0JT1MnTIkkeeQTpa0=" +typstDeps = [] +description = "Typesets paper titles in bibliographies as hyperlinks" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/typst-blinky" + +[blinky."0.1.1"] +url = "https://packages.typst.org/preview/blinky-0.1.1.tar.gz" +hash = "sha256-k3tKYhqvwH2Q85Wj+S8Pb6UHSKe8FqCbnlNjuAHPG78=" +typstDeps = [] +description = "Typesets paper titles in bibliographies as hyperlinks" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/typst-blinky" + +[blinky."0.1.0"] +url = "https://packages.typst.org/preview/blinky-0.1.0.tar.gz" +hash = "sha256-2sSEMYDQuvdiTyXGM9wL5oda9h+fMFUvrhMAuUCSNU0=" +typstDeps = [] +description = "Typesets paper titles in bibliographies as hyperlinks" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/typst-blinky" + +[bloated-neurips."0.7.0"] +url = "https://packages.typst.org/preview/bloated-neurips-0.7.0.tar.gz" +hash = "sha256-9keS/3dURmiljmkXje5HEnrGRclAPsclMFry8IEEA54=" +typstDeps = [] +description = "NeurIPS-style paper template to publish at the Conference and Workshop on\nNeural Information Processing Systems" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[bloated-neurips."0.5.1"] +url = "https://packages.typst.org/preview/bloated-neurips-0.5.1.tar.gz" +hash = "sha256-pTfWQlVy1bs1rYDpFKxSH2ZqMGJbg4yKUUAIHv2j/+0=" +typstDeps = [] +description = "NeurIPS-style paper template to publish at the Conference and Workshop on\nNeural Information Processing Systems" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[bloated-neurips."0.5.0"] +url = "https://packages.typst.org/preview/bloated-neurips-0.5.0.tar.gz" +hash = "sha256-Q9LFcl0BDic8LFxPAU1BOrBkifPjR/ssEMb5EFMmMwE=" +typstDeps = [] +description = "NeurIPS-style paper template to publish at the Conference and Workshop on\nNeural Information Processing Systems" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[bloated-neurips."0.2.1"] +url = "https://packages.typst.org/preview/bloated-neurips-0.2.1.tar.gz" +hash = "sha256-F140Gsyh0fqzEJMKo0+au1d19bwWxHmer5LvWA9M3fI=" +typstDeps = [ + "tablex_0_0_8", +] +description = "NeurIPS-style paper template to publish at the Conference and Workshop on Neural Information Processing Systems" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[board-n-pieces."0.7.0"] +url = "https://packages.typst.org/preview/board-n-pieces-0.7.0.tar.gz" +hash = "sha256-7ji0N0Kp4MA/DLs26rGfEgNfZZQsQ+YjUmr8EgrQW3g=" +typstDeps = [] +description = "Display chessboards" +license = [ + "MIT", + "GPL-2.0-only", +] +homepage = "https://github.com/MDLC01/board-n-pieces" + +[board-n-pieces."0.6.0"] +url = "https://packages.typst.org/preview/board-n-pieces-0.6.0.tar.gz" +hash = "sha256-x2qB8ydJQeyLWmbaC+GGc8+OmLqzAXTS/jI7BVTp3AE=" +typstDeps = [] +description = "Display chessboards" +license = [ + "MIT", + "GPL-2.0-only", +] +homepage = "https://github.com/MDLC01/board-n-pieces" + +[board-n-pieces."0.5.0"] +url = "https://packages.typst.org/preview/board-n-pieces-0.5.0.tar.gz" +hash = "sha256-hAEH1xhOd5JIJNbxaBm6t07LCMTv7chkfCUArJCPD1I=" +typstDeps = [] +description = "Display chessboards" +license = [ + "MIT", + "GPL-2.0-only", +] +homepage = "https://github.com/MDLC01/board-n-pieces" + +[board-n-pieces."0.4.0"] +url = "https://packages.typst.org/preview/board-n-pieces-0.4.0.tar.gz" +hash = "sha256-ecnWsR8245TByY861tfNFIYqWl2ZZaMpcgOIOIKdtDw=" +typstDeps = [] +description = "Display chessboards" +license = [ + "MIT", + "GPL-2.0-only", +] +homepage = "https://github.com/MDLC01/board-n-pieces" + +[board-n-pieces."0.3.0"] +url = "https://packages.typst.org/preview/board-n-pieces-0.3.0.tar.gz" +hash = "sha256-A7xnWwYU9SBCC0YusEYeloMg1+LvKTGj4S2Im2CFUT4=" +typstDeps = [] +description = "Display chessboards in Typst" +license = [ + "MIT", + "GPL-2.0-only", +] +homepage = "https://github.com/MDLC01/board-n-pieces" + +[board-n-pieces."0.2.0"] +url = "https://packages.typst.org/preview/board-n-pieces-0.2.0.tar.gz" +hash = "sha256-Mpck3H4PG+xaWQRKThRXzNvIUKJJsCRJbn8+nSXLjYs=" +typstDeps = [] +description = "Display chessboards in Typst" +license = [ + "MIT", + "GPL-2.0-only", +] +homepage = "https://github.com/MDLC01/board-n-pieces" + +[board-n-pieces."0.1.0"] +url = "https://packages.typst.org/preview/board-n-pieces-0.1.0.tar.gz" +hash = "sha256-s9qRve872no4iYUQf7sqISZ9F5MeARHf90YBWApnCH0=" +typstDeps = [] +description = "Display chessboards in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/MDLC01/board-n-pieces" + +[bob-draw."0.1.1"] +url = "https://packages.typst.org/preview/bob-draw-0.1.1.tar.gz" +hash = "sha256-NVQEcDtCTA3ZjuzhYJX3syWWnAfPDlY3Qusk3ipehR0=" +typstDeps = [] +description = "svgbob for typst, powered by wasm" +license = [ + "MIT", +] +homepage = "https://github.com/LucaCiucci/bob-typ" + +[bob-draw."0.1.0"] +url = "https://packages.typst.org/preview/bob-draw-0.1.0.tar.gz" +hash = "sha256-cIMRYn4olOWSMeG7Y7YuF28jx0J1HJv8ZocJ8GJiygc=" +typstDeps = [] +description = "svgbob for typst, powered by wasm" +license = [ + "MIT", +] +homepage = "https://github.com/LucaCiucci/bob-typ" + +[bone-resume."0.3.1"] +url = "https://packages.typst.org/preview/bone-resume-0.3.1.tar.gz" +hash = "sha256-ExZTdl1lFzyqLs8hyV55awurZ7ITRo5bHuc++YpYM7A=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "A colorful resume template for chinese" +license = [ + "Apache-2.0", +] + +[bone-resume."0.3.0"] +url = "https://packages.typst.org/preview/bone-resume-0.3.0.tar.gz" +hash = "sha256-xZHJwcR0HZxwHBIntpc1IXChrpKZ1faDV6U6IEgdhio=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "A colorful resume template for chinese" +license = [ + "Apache-2.0", +] + +[bone-resume."0.2.0"] +url = "https://packages.typst.org/preview/bone-resume-0.2.0.tar.gz" +hash = "sha256-QFKP+J3kdewBeevrlGmVnY5yPcvdclCeM9zcNqYnZB8=" +typstDeps = [] +description = "A colorful resume template for chinese" +license = [ + "Apache-2.0", +] + +[bone-resume."0.1.0"] +url = "https://packages.typst.org/preview/bone-resume-0.1.0.tar.gz" +hash = "sha256-7KEayyZt2MgFKDL9uUnqyNS7IeAqfYrBsRec4bD8RSQ=" +typstDeps = [] +description = "A colorful resume template for chinese" +license = [ + "Apache-2.0", +] + +[bookletic."0.3.2"] +url = "https://packages.typst.org/preview/bookletic-0.3.2.tar.gz" +hash = "sha256-Z5fErCreMD0IEJGQ3PtDHbtEtS8vKz081gB+Z1OolNA=" +typstDeps = [] +description = "Create beautiful booklets with ease" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/harrellbm/Bookletic.git" + +[bookletic."0.3.0"] +url = "https://packages.typst.org/preview/bookletic-0.3.0.tar.gz" +hash = "sha256-U6mNxN+NdcUFcfF+b//TTFaOotLj9xM8KpCsI4snAlw=" +typstDeps = [] +description = "Create beautiful booklets with ease" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/harrellbm/Bookletic.git" + +[bookletic."0.2.0"] +url = "https://packages.typst.org/preview/bookletic-0.2.0.tar.gz" +hash = "sha256-HeDucS52jnzXuh4e8e7JiJoHBT4sVc4L+pmViEE9mgA=" +typstDeps = [] +description = "Create beautiful booklets with ease" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/harrellbm/Bookletic.git" + +[bookletic."0.1.0"] +url = "https://packages.typst.org/preview/bookletic-0.1.0.tar.gz" +hash = "sha256-aq4JGmoZFnAIxy9+l/WC1piuPfacLiCJhFO9Hj/V2ps=" +typstDeps = [] +description = "Create beautiful booklets with ease" +license = [ + "Apache-2.0", +] + +[bookly."1.1.0"] +url = "https://packages.typst.org/preview/bookly-1.1.0.tar.gz" +hash = "sha256-pDRNwpALRhhoDWN2JtZbXehLLJ0rJulDetUy50k5ZPY=" +typstDeps = [ + "drafting_0_2_2", + "equate_0_3_2", + "hydra_0_6_2", + "showybox_2_0_4", + "suboutline_0_3_0", + "subpar_0_2_2", +] +description = "Book template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/book_template" + +[bookly."1.0.0"] +url = "https://packages.typst.org/preview/bookly-1.0.0.tar.gz" +hash = "sha256-tiL29zkIbVdLBB77WRoj2HSWOuwRgQERVVa6QqutHEU=" +typstDeps = [ + "drafting_0_2_2", + "equate_0_3_2", + "hydra_0_6_2", + "showybox_2_0_4", + "suboutline_0_3_0", + "subpar_0_2_2", +] +description = "Book template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/book_template" + +[bookly."0.1.0"] +url = "https://packages.typst.org/preview/bookly-0.1.0.tar.gz" +hash = "sha256-ZetbnU+1w8fTchWOHbj6rnLpDD0wZw0QKIZEwLsg1W8=" +typstDeps = [ + "equate_0_3_2", + "hydra_0_6_2", + "showybox_2_0_4", + "suboutline_0_3_0", + "subpar_0_2_2", +] +description = "Book template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/bookly" + +[booktabs."0.0.4"] +url = "https://packages.typst.org/preview/booktabs-0.0.4.tar.gz" +hash = "sha256-EEJk86YztAFJixGvuMQ1fSgY7uiULgFZZ9f/kTS68eM=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/booktabs" + +[booktabs."0.0.3"] +url = "https://packages.typst.org/preview/booktabs-0.0.3.tar.gz" +hash = "sha256-f9J2kIj7gnihkFoFF2OBLV+M/OCIvVFeQq6Z9TUgLcU=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/booktabs" + +[booktabs."0.0.2"] +url = "https://packages.typst.org/preview/booktabs-0.0.2.tar.gz" +hash = "sha256-GkBxfqvi21C4wtE6Y/Ze5zia+wAZEAUK2UkZU+bLLhg=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/typst-packages" + +[booktabs."0.0.1"] +url = "https://packages.typst.org/preview/booktabs-0.0.1.tar.gz" +hash = "sha256-Glnax8JCr50n8Khwa7ZOR8uy5RIa7UGDaRvMI0bSQKs=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/typst-packages" + +[boxed-sheet."0.1.0"] +url = "https://packages.typst.org/preview/boxed-sheet-0.1.0.tar.gz" +hash = "sha256-Es5jOwqOPhtbE3vZJKEoH2W/WFJyRdOLVS/fJ7pVcMc=" +typstDeps = [] +description = "A automatical colored and well organised cheatsheet template for writing daily notes with colored bounding box and line titles" +license = [ + "MIT", +] +homepage = "https://github.com/LZHMS/CheatSheet.git" + +[boxr."0.1.0"] +url = "https://packages.typst.org/preview/boxr-0.1.0.tar.gz" +hash = "sha256-7/BI8so0a2VnjP99d7FR9SiMKN2MXrcH8gPX8UvV6Gg=" +typstDeps = [] +description = "A modular, and easy to use, package for creating cardboard cutouts in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Lypsilonx/boxr" + +[brain-transplant."0.1.0"] +url = "https://packages.typst.org/preview/brain-transplant-0.1.0.tar.gz" +hash = "sha256-8kPaIV5h/xOrwMuLSyO0uFEw8mk89+GZDB8zMMZKgJg=" +typstDeps = [] +description = "Transpile Brainfuck code to Typst" +license = [ + "MIT-0", +] +homepage = "https://app.radicle.xyz/nodes/seed.radicle.garden/rad:z3bYXx6FurPtAURke7sUV8ktrtFNt" + +[briefs."0.1.0"] +url = "https://packages.typst.org/preview/briefs-0.1.0.tar.gz" +hash = "sha256-tPO3dxvDOWccaXLbwGr2rtVKMU5q8c00obGSiiAmG9A=" +typstDeps = [] +description = "A simple Typst template for letters" +license = [ + "MIT", +] +homepage = "https://github.com/tndrle/briefs" + +[brilliant-cv."2.0.7"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.7.tar.gz" +hash = "sha256-uy3oUMZzKA2tNsZE+fEMqrAM4I3HcFnSUwCZc6oAFJQ=" +typstDeps = [ + "brilliant-cv_2_0_6", + "fontawesome_0_6_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/yunanwg/brilliant-CV" + +[brilliant-cv."2.0.6"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.6.tar.gz" +hash = "sha256-kcu3pxuMNlsNIvBed4Q9PEnCT9/y7NPcQNfHc5ZvaoQ=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/yunanwg/brilliant-CV" + +[brilliant-cv."2.0.5"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.5.tar.gz" +hash = "sha256-55ldsGnrsDowYYz1mxIlcLXIna8gRteDikv6K56aXDo=" +typstDeps = [ + "fontawesome_0_2_1", + "tidy_0_3_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/yunanwg/brilliant-CV" + +[brilliant-cv."2.0.4"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.4.tar.gz" +hash = "sha256-Pbsw/lH5VDsCbFRrlG6Yqxyp0yIkfDHr+NsPf7Df8ms=" +typstDeps = [ + "fontawesome_0_2_1", + "tidy_0_3_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mintyfrankie/brilliant-CV" + +[brilliant-cv."2.0.3"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.3.tar.gz" +hash = "sha256-t7jvJ5itN0YZDdP7Qpd5/vYsKxgDZsfbXlGqL8G5HDw=" +typstDeps = [ + "fontawesome_0_2_1", + "tidy_0_3_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mintyfrankie/brilliant-CV" + +[brilliant-cv."2.0.2"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.2.tar.gz" +hash = "sha256-bkP17C9TRbpHT5x6UOf8bUuP3wTBYnFrPgn5kpPKCwk=" +typstDeps = [ + "fontawesome_0_2_1", + "tidy_0_3_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mintyfrankie/brilliant-CV" + +[brilliant-cv."2.0.1"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.1.tar.gz" +hash = "sha256-bTF80A4Aaq+e8rch7SyzbtyhdbL9j6S4bkPqq1XbwKk=" +typstDeps = [ + "fontawesome_0_2_1", + "tidy_0_3_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mintyfrankie/brilliant-CV" + +[brilliant-cv."2.0.0"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.0.tar.gz" +hash = "sha256-xMA/JuuKdCcr6Nik8RebMYElOgoAOhUpu0h4FPgYilQ=" +typstDeps = [ + "fontawesome_0_2_1", + "tidy_0_3_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mintyfrankie/brilliant-CV" + +[bubble."0.2.2"] +url = "https://packages.typst.org/preview/bubble-0.2.2.tar.gz" +hash = "sha256-XbhNC2LTKnWwtV4wvlAMcVlqcnnwDWxTawI1Wr9vsTQ=" +typstDeps = [] +description = "Simple and colorful template for Typst" +license = [ + "MIT-0", +] +homepage = "https://github.com/hzkonor/bubble-template" + +[bubble."0.2.1"] +url = "https://packages.typst.org/preview/bubble-0.2.1.tar.gz" +hash = "sha256-Andpw7TqPSbX606dVtKfhCN+6D1qlSsjFyJGc26nfpw=" +typstDeps = [ + "codelst_2_0_1", +] +description = "Simple and colorful template for Typst" +license = [ + "MIT-0", +] +homepage = "https://github.com/hzkonor/bubble-template" + +[bubble."0.2.0"] +url = "https://packages.typst.org/preview/bubble-0.2.0.tar.gz" +hash = "sha256-QfQFGzNvh6EDJ02El/c2iTj745uIFdpUpQwEkNz5/UU=" +typstDeps = [ + "codelst_2_0_0", +] +description = "Simple and colorful template for Typst" +license = [ + "MIT-0", +] +homepage = "https://github.com/hzkonor/bubble-template" + +[bubble."0.1.0"] +url = "https://packages.typst.org/preview/bubble-0.1.0.tar.gz" +hash = "sha256-/LgM9GSbbRPYjuTRFN/DpucMKgit2rfWP9/5NzvnGKY=" +typstDeps = [ + "codelst_2_0_0", +] +description = "Simple and colorful template for Typst" +license = [ + "MIT-0", +] +homepage = "https://github.com/hzkonor/bubble-template" + +[bubble-zju."0.1.0"] +url = "https://packages.typst.org/preview/bubble-zju-0.1.0.tar.gz" +hash = "sha256-AjBPrxEEk6OhhyFkXEBkXNobhWf1QzfR7xrrN8N3XHQ=" +typstDeps = [ + "fletcher_0_5_8", + "note-me_0_5_0", +] +description = "Modern Zhejiang Univerisity report" +license = [ + "MIT-0", +] +homepage = "https://github.com/inuEbisu/bubble-zju" + +[bullseye."0.1.0"] +url = "https://packages.typst.org/preview/bullseye-0.1.0.tar.gz" +hash = "sha256-L9eFegLTTCE/Vf38KzirwHqSRk1vHRHqnv+wOrQolV4=" +typstDeps = [] +description = "Hit the target (HTML or paged/PDF) when styling your Typst document" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-bullseye" + +[burik."0.1.0"] +url = "https://packages.typst.org/preview/burik-0.1.0.tar.gz" +hash = "sha256-m7+iJFQv3vXz78f8Ncr9uNe6SaSrVJltRTSWtY0KWas=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Visualization of 3x3 Rubik's Cube Algorithms for easier tutorials edition" +license = [ + "MIT", +] + +[bye-ubc."0.2.3"] +url = "https://packages.typst.org/preview/bye-ubc-0.2.3.tar.gz" +hash = "sha256-tFqwzWsS69SWdP9j5rnpB1fCIgzhoBh1FpPPrkNbkm4=" +typstDeps = [] +description = "A template for theses at the University of British Columbia" +license = [ + "MIT", +] +homepage = "https://github.com/DJDuque/bye-ubc" + +[bye-ubc."0.2.2"] +url = "https://packages.typst.org/preview/bye-ubc-0.2.2.tar.gz" +hash = "sha256-LOCUeu61I++mdCKZWEJQEZpKPCDheD58qd6858jpGA4=" +typstDeps = [] +description = "A template for theses at the University of British Columbia" +license = [ + "MIT", +] +homepage = "https://github.com/DJDuque/bye-ubc" + +[bye-ubc."0.2.1"] +url = "https://packages.typst.org/preview/bye-ubc-0.2.1.tar.gz" +hash = "sha256-QWVdNzxyf0C4oeH4X5P0tAWtg5eAtDbIwJyZRTbO9Pc=" +typstDeps = [] +description = "A template for theses at the University of British Columbia" +license = [ + "MIT", +] +homepage = "https://github.com/DJDuque/bye-ubc" + +[bytefield."0.0.7"] +url = "https://packages.typst.org/preview/bytefield-0.0.7.tar.gz" +hash = "sha256-9DfhrwSRR/W/YC5N0IdYyh/ILP+2n+C88tWdCekWnt0=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "A package to create network protocol headers, memory map, register definitions and more" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-bytefield" + +[bytefield."0.0.6"] +url = "https://packages.typst.org/preview/bytefield-0.0.6.tar.gz" +hash = "sha256-GlyGBt5J6Dtzku/0/9yN+3uvmJNpCaylDO0AF1+2B5U=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "A package to create network protocol headers, memory map, register definitions and more" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-bytefield" + +[bytefield."0.0.5"] +url = "https://packages.typst.org/preview/bytefield-0.0.5.tar.gz" +hash = "sha256-f/6NwbSO/fCV2MnKFJxR5ezdrC82MVcvqXYIOz5V1Aw=" +typstDeps = [ + "oxifmt_0_2_0", + "tablex_0_0_8", +] +description = "A package to create network protocol headers, memory map, register definitions and more" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-bytefield" + +[bytefield."0.0.4"] +url = "https://packages.typst.org/preview/bytefield-0.0.4.tar.gz" +hash = "sha256-09kDW0seiKYi0Na18ehhURhinpE61NaSBVQMvex0R3A=" +typstDeps = [ + "oxifmt_0_2_0", + "tablex_0_0_8", +] +description = "A package to create network protocol headers, memory map, register definitions and more" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-bytefield" + +[bytefield."0.0.3"] +url = "https://packages.typst.org/preview/bytefield-0.0.3.tar.gz" +hash = "sha256-zf06BmYkdSVUQqONPwXj6mJOjcPSX9Lszr5KtkIcZhw=" +typstDeps = [ + "tablex_0_0_6", +] +description = "A package to create network protocol headers" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-bytefield" + +[bytefield."0.0.2"] +url = "https://packages.typst.org/preview/bytefield-0.0.2.tar.gz" +hash = "sha256-QOlQaJ3k4fUkHKW1dN8E2npBchHbC7IPkljxKou5GzQ=" +typstDeps = [ + "tablex_0_0_4", +] +description = "A package to create network protocol headers" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-bytefield" + +[bytefield."0.0.1"] +url = "https://packages.typst.org/preview/bytefield-0.0.1.tar.gz" +hash = "sha256-OOLcy7PwmB4E903HoQ27FPaGYFpIsAwnyF6jC03vREo=" +typstDeps = [ + "tablex_0_0_4", +] +description = "A package to create network protocol headers" +license = [ + "MIT", +] + +[cades."0.3.1"] +url = "https://packages.typst.org/preview/cades-0.3.1.tar.gz" +hash = "sha256-v1N0a8AxvtT+9Oxj+8o8JgvwcTzqFGMlYCThIEK8bkw=" +typstDeps = [ + "jogs_0_2_4", +] +description = "Generate QR codes in typst" +license = [ + "MIT", +] +homepage = "https://github.com/Midbin/cades" + +[cades."0.3.0"] +url = "https://packages.typst.org/preview/cades-0.3.0.tar.gz" +hash = "sha256-zoBTB6qqLMwGqmSGb4TalcWpUwyt1ZG/GOHy8V/pmDA=" +typstDeps = [ + "jogs_0_2_0", +] +description = "Generate QR codes in typst" +license = [ + "MIT", +] +homepage = "https://github.com/Midbin/cades" + +[cades."0.2.0"] +url = "https://packages.typst.org/preview/cades-0.2.0.tar.gz" +hash = "sha256-JdW95eiWCeydfmg4nGY5BDYFB4CSef9HMyvY2BhdiIQ=" +typstDeps = [ + "jogs_0_2_0", +] +description = "Generate QR codes in typst" +license = [ + "MIT", +] +homepage = "https://github.com/Midbin/cades" + +[caidan."0.1.0"] +url = "https://packages.typst.org/preview/caidan-0.1.0.tar.gz" +hash = "sha256-W20oZOScx7dewZw4ee854jfhabq2cn1K3+sjS1JCvnI=" +typstDeps = [] +description = "A clean and minimal food menu template" +license = [ + "MIT", +] +homepage = "https://github.com/cu1ch3n/caidan" + +[callisto."0.2.4"] +url = "https://packages.typst.org/preview/callisto-0.2.4.tar.gz" +hash = "sha256-tXrlQemxWFQlIdr6Hv4wn74gZz+kkohFhafosxGfi0c=" +typstDeps = [ + "based_0_2_0", + "cmarker_0_1_3", + "mitex_0_2_5", +] +description = "Import Jupyter notebooks" +license = [ + "MIT", +] +homepage = "https://github.com/knuesel/callisto" + +[callisto."0.2.3"] +url = "https://packages.typst.org/preview/callisto-0.2.3.tar.gz" +hash = "sha256-E68idAY+E49HaOV11V0C/AiSVms2OU9/vm8Sp1A40Yo=" +typstDeps = [ + "based_0_2_0", + "cmarker_0_1_3", + "mitex_0_2_5", +] +description = "Import Jupyter notebooks" +license = [ + "MIT", +] +homepage = "https://github.com/knuesel/callisto" + +[callisto."0.2.2"] +url = "https://packages.typst.org/preview/callisto-0.2.2.tar.gz" +hash = "sha256-uX1REI/dk8FlXAE7mGGOI6IuJQh73gWNd5ZOhjrd/gw=" +typstDeps = [ + "based_0_2_0", + "cmarker_0_1_3", + "mitex_0_2_5", +] +description = "Import Jupyter notebooks" +license = [ + "MIT", +] +homepage = "https://github.com/knuesel/callisto" + +[callisto."0.1.0"] +url = "https://packages.typst.org/preview/callisto-0.1.0.tar.gz" +hash = "sha256-NFM3r0abms6sKHF5YEAm2DaxaN+Wo6UcclZviMAFTdc=" +typstDeps = [ + "based_0_2_0", + "cmarker_0_1_3", + "mitex_0_2_5", +] +description = "Import Jupyter notebooks" +license = [ + "MIT", +] +homepage = "https://github.com/knuesel/callisto" + +[canonical-nthu-thesis."0.2.0"] +url = "https://packages.typst.org/preview/canonical-nthu-thesis-0.2.0.tar.gz" +hash = "sha256-W58iv2XIWSUmMSjNzrW8fV0ZwDvaGZ4StHM3kEmMUW4=" +typstDeps = [] +description = "A template for master theses and doctoral dissertations for NTHU (National Tsing Hua University" +license = [ + "MIT", +] +homepage = "https://codeberg.org/kotatsuyaki/canonical-nthu-thesis" + +[canonical-nthu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/canonical-nthu-thesis-0.1.0.tar.gz" +hash = "sha256-R08S8+CTNOlQuRPeDhWf9wmbMiScDAi3zTwF0VhE7oA=" +typstDeps = [] +description = "A template for master theses and doctoral dissertations for NTHU (National Tsing Hua University" +license = [ + "MIT", +] +homepage = "https://codeberg.org/kotatsuyaki/canonical-nthu-thesis" + +[cartao."0.2.0"] +url = "https://packages.typst.org/preview/cartao-0.2.0.tar.gz" +hash = "sha256-EN47shdewOszij89m1kqWciX9C27PGTIfpJsV29zA+s=" +typstDeps = [] +description = "Dead simple, printable, flashcards with Typst" +license = [ + "MIT", +] + +[cartao."0.1.0"] +url = "https://packages.typst.org/preview/cartao-0.1.0.tar.gz" +hash = "sha256-x1KHuXZo1e1OX3ZjGSVwnQmjSUGeOsaq37gywsUP0wY=" +typstDeps = [] +description = "Dead simple flashcards with Typst" +license = [ + "MIT", +] + +[casson-uom-thesis."0.1.1"] +url = "https://packages.typst.org/preview/casson-uom-thesis-0.1.1.tar.gz" +hash = "sha256-K7J3knhLJtA7SZzC7KWCTksBps9B9sxRVkEuAQbb0sU=" +typstDeps = [ + "wordometer_0_1_4", +] +description = "Typst template based upon The University of Manchester Presentation of Theses Policy which relates to the examination of doctoral and MPhil degrees at The University of Manchester and applies to full-time and part-time postgraduate research students of the following degrees: Doctoral degrees: Doctor of Philosophy (PhD); Doctor of Medicine (MD) Doctor of Business Administration (DBA); Professional, Engineering and Enterprise Doctorates; Master of Philosophy (MPhil). This template has been checked to be compliant with the 2024 requirements. Responsibility for ensuring compliance with the University of Manchester Presentation of Theses Policy remains with the candidate" +license = [ + "MIT-0", +] +homepage = "https://github.com/ALEX-CASSON-LAB/uom_phd_thesis_typst_template" + +[casson-uom-thesis."0.1.0"] +url = "https://packages.typst.org/preview/casson-uom-thesis-0.1.0.tar.gz" +hash = "sha256-MskcdQvh8V3WhwTvKkm9rRKJ5fsvn8JoJwbCjLgMaVQ=" +typstDeps = [ + "wordometer_0_1_4", +] +description = "Typst template based upon The University of Manchester Presentation of Theses Policy. Responsibility for ensuring compliance with the presentation policy remains with the candidate" +license = [ + "MIT-0", +] +homepage = "https://github.com/ALEX-CASSON-LAB/uom_phd_thesis_typst_template" + +[casual-szu-report."0.1.0"] +url = "https://packages.typst.org/preview/casual-szu-report-0.1.0.tar.gz" +hash = "sha256-LCjN8DrVfS6Gvp+RciJ4Mlf9f1udc93OFBByFf0bDQU=" +typstDeps = [] +description = "A template for SZU course reports" +license = [ + "MIT", +] +homepage = "https://github.com/jiang131072/casual-szu-report" + +[catppuccin."1.0.1"] +url = "https://packages.typst.org/preview/catppuccin-1.0.1.tar.gz" +hash = "sha256-JU3+A+B9c3FexVtdrMUaPIt2S0HM8EEDzI8mTWBEkdE=" +typstDeps = [ + "tidy_0_4_3", + "valkyrie_0_2_2", +] +description = "🪶 Soothing pastel theme for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/catppuccin/typst" + +[catppuccin."1.0.0"] +url = "https://packages.typst.org/preview/catppuccin-1.0.0.tar.gz" +hash = "sha256-/CwHqCb4TTtto9NNn7SqKtC2L/L1ZqqRkczOGTFkxeg=" +typstDeps = [ + "tidy_0_4_3", + "valkyrie_0_2_2", +] +description = "🪶 Soothing pastel theme for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/catppuccin/typst" + +[ccicons."1.0.1"] +url = "https://packages.typst.org/preview/ccicons-1.0.1.tar.gz" +hash = "sha256-A0ANuek+bbtQKOlW39RVvTonfum33Cl3KEhhlWwRwmw=" +typstDeps = [] +description = "A port of the ccicon LaTeX package for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-ccicons" + +[ccicons."1.0.0"] +url = "https://packages.typst.org/preview/ccicons-1.0.0.tar.gz" +hash = "sha256-qQBHl8+XLP4YzU3d1HL31oykP7G6F0ADX1FBlatLcck=" +typstDeps = [] +description = "A port of the ccicon LaTeX package for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-ccicons" + +[cellpress-unofficial."0.1.1"] +url = "https://packages.typst.org/preview/cellpress-unofficial-0.1.1.tar.gz" +hash = "sha256-tcztgYuJ2aezrNldO2A15GA/uYXh7bcKxon0byhDTUY=" +typstDeps = [] +description = "Unofficial Cell Press template for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/cellpress-unofficial" + +[cellpress-unofficial."0.1.0"] +url = "https://packages.typst.org/preview/cellpress-unofficial-0.1.0.tar.gz" +hash = "sha256-ZCR1iYidFEGUO868TXkR0BicnvhFsy9KM8EimrU08MM=" +typstDeps = [] +description = "Unofficial Cell Press styles for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/cellpress-unofficial" + +[celluloid."0.1.0"] +url = "https://packages.typst.org/preview/celluloid-0.1.0.tar.gz" +hash = "sha256-MIR1y575oBcufXUDNL4I8D1LwHLqBVLW5iU+1QbU4PM=" +typstDeps = [] +description = "A template for writting screenplays based on AMPAS guidelines" +license = [ + "Apache-2.0", +] + +[cereal-words."0.1.0"] +url = "https://packages.typst.org/preview/cereal-words-0.1.0.tar.gz" +hash = "sha256-nfAUTurQid40lvLFmAZzEbVOaCLYVzcH32nEidrMTpU=" +typstDeps = [] +description = "Time to kill? Search for words in a box of letters" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[cetramed-polylux."0.1.0"] +url = "https://packages.typst.org/preview/cetramed-polylux-0.1.0.tar.gz" +hash = "sha256-Dk1efofj8t49L2j751VYLviTJ0TX8FJCfGRFphz3iwQ=" +typstDeps = [ + "polylux_0_4_0", +] +description = "CeTraMed template for Polylux" +license = [ + "Unlicense", +] +homepage = "https://github.com/andreasKroepelin/cetramed-polylux" + +[cetz."0.4.2"] +url = "https://packages.typst.org/preview/cetz-0.4.2.tar.gz" +hash = "sha256-fbYS5HNKNKF7JYAdG0xFMLryFoLAv4Kd3kV3rqiKWVo=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.4.1"] +url = "https://packages.typst.org/preview/cetz-0.4.1.tar.gz" +hash = "sha256-OhoYtv7j2//FT6qYlCw4ISuXwMOGEgMyiN/Mpwq2saM=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.4.0"] +url = "https://packages.typst.org/preview/cetz-0.4.0.tar.gz" +hash = "sha256-f4x0/Bm2ivGu17hsYcly2K7R00gJNhbYckAjbczqM8I=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.3.4"] +url = "https://packages.typst.org/preview/cetz-0.3.4.tar.gz" +hash = "sha256-UvHEY4klR5Wi0Pk8DYVcfUmLsOnxEGOcjNu6B9/Nr9s=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.3.3"] +url = "https://packages.typst.org/preview/cetz-0.3.3.tar.gz" +hash = "sha256-F3Uyklc8haiSBHQfk9Xiq0L0NuoO8aEy7/xxoSypfuo=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.3.2"] +url = "https://packages.typst.org/preview/cetz-0.3.2.tar.gz" +hash = "sha256-coMtQPXnloQ7PgxEhPSmRoiUUKl55mcjgioCu0UUgnQ=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.3.1"] +url = "https://packages.typst.org/preview/cetz-0.3.1.tar.gz" +hash = "sha256-B2tDHVweLoNo6Iv6fX6NgVXc0upxI95RRd0DUp2/PaE=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.3.0"] +url = "https://packages.typst.org/preview/cetz-0.3.0.tar.gz" +hash = "sha256-7fB7i4h/869yrpFVz9JSrPBpFPFXHY9Ez7+tNeiU6rM=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.2.2"] +url = "https://packages.typst.org/preview/cetz-0.2.2.tar.gz" +hash = "sha256-4hjOUG21gKZ4rwJ49OJ/NlT8/2eG+EQpMe+Vb9tYbdA=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz" + +[cetz."0.2.1"] +url = "https://packages.typst.org/preview/cetz-0.2.1.tar.gz" +hash = "sha256-zwbUwa3e/ZofblYKvqy4em0B1DW3I5VeTPNQ4WywgI4=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz" + +[cetz."0.2.0"] +url = "https://packages.typst.org/preview/cetz-0.2.0.tar.gz" +hash = "sha256-BV1KgRCHSAdoTzpQc6utPMUoNr1VHBFHFoqEkUZ7KUw=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz" + +[cetz."0.1.2"] +url = "https://packages.typst.org/preview/cetz-0.1.2.tar.gz" +hash = "sha256-fDTg4Lq+uMNkPW9B8iSBALnFL4XTH62Wti3SAz0QnM8=" +typstDeps = [] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz" + +[cetz."0.1.1"] +url = "https://packages.typst.org/preview/cetz-0.1.1.tar.gz" +hash = "sha256-EFjojMkHmJXX5MpSS0jU+6kuoyRdM7q0b1J3Rn3MqAo=" +typstDeps = [ + "cetz_0_1_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/typst-canvas" + +[cetz."0.1.0"] +url = "https://packages.typst.org/preview/cetz-0.1.0.tar.gz" +hash = "sha256-HMoYoty4VR+MUmU9jQPgQg9v3CGdLttC4d56zfhzxBI=" +typstDeps = [] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/typst-canvas" + +[cetz."0.0.2"] +url = "https://packages.typst.org/preview/cetz-0.0.2.tar.gz" +hash = "sha256-W+Sa+Go1rxTFKOMmYRzv37E2jnO7evHYLS4BEKu7iBE=" +typstDeps = [] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/typst-canvas" + +[cetz."0.0.1"] +url = "https://packages.typst.org/preview/cetz-0.0.1.tar.gz" +hash = "sha256-lktrteyeK5/87rzF2B+AhgTTmDI4fNZS+pHtg0VNTxw=" +typstDeps = [] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/typst-canvas" + +[cetz-plot."0.1.3"] +url = "https://packages.typst.org/preview/cetz-plot-0.1.3.tar.gz" +hash = "sha256-xBGfCTiSkHyVcP4WFYj2kfIbowA8YEuHFe18oSg9LDY=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Plotting module for CeTZ" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz-plot" + +[cetz-plot."0.1.2"] +url = "https://packages.typst.org/preview/cetz-plot-0.1.2.tar.gz" +hash = "sha256-k1spRdo3xHv7NZfFzeXqCQz6lUGogFEkE33LwsYZmuU=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Plotting module for CeTZ" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz-plot" + +[cetz-plot."0.1.1"] +url = "https://packages.typst.org/preview/cetz-plot-0.1.1.tar.gz" +hash = "sha256-Avs6kQAhaxY2OfnJgBx1Ywyo26Y+MUiE6/7aVd/12Ic=" +typstDeps = [ + "cetz_0_3_2", +] +description = "Plotting module for CeTZ" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz-plot" + +[cetz-plot."0.1.0"] +url = "https://packages.typst.org/preview/cetz-plot-0.1.0.tar.gz" +hash = "sha256-Y6oLpLh8/MDbaDNyADpJ1zT1rE68RGQ0+E1UYioYVYg=" +typstDeps = [ + "cetz_0_3_1", +] +description = "Plotting module for CeTZ" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz-plot" + +[cetz-venn."0.1.4"] +url = "https://packages.typst.org/preview/cetz-venn-0.1.4.tar.gz" +hash = "sha256-opsDdUB3F5mpo3185Zyt20bCT0Qb/t8zWRg+PFa/Xk4=" +typstDeps = [ + "cetz_0_4_0", +] +description = "CeTZ library for drawing venn diagrams for two or three sets" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz-venn" + +[cetz-venn."0.1.3"] +url = "https://packages.typst.org/preview/cetz-venn-0.1.3.tar.gz" +hash = "sha256-eoVVTVaKLn3qiRngQ4RYIE0yrDLawVr7KMx3NPqdfv4=" +typstDeps = [ + "cetz_0_3_2", +] +description = "CeTZ library for drawing venn diagrams for two or three sets" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz-venn" + +[cetz-venn."0.1.2"] +url = "https://packages.typst.org/preview/cetz-venn-0.1.2.tar.gz" +hash = "sha256-o9rkI/qTcRPIayNZ6X0UDTQxgPqc8s9qtRc4PAYWCqI=" +typstDeps = [ + "cetz_0_3_1", +] +description = "CeTZ library for drawing venn diagrams for two or three sets" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz-venn" + +[cetz-venn."0.1.1"] +url = "https://packages.typst.org/preview/cetz-venn-0.1.1.tar.gz" +hash = "sha256-AdStBAZrnPyea+/VNpUEmHqH0l4Sh9oVjk/omQkF9QA=" +typstDeps = [ + "cetz_0_2_2", +] +description = "CeTZ library for drawing venn diagrams for two or three sets" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz-venn" + +[cetz-venn."0.1.0"] +url = "https://packages.typst.org/preview/cetz-venn-0.1.0.tar.gz" +hash = "sha256-7qVLFa82pFHNygxo3DtUC9DKgQtp1hyvvKlefo6UQn0=" +typstDeps = [ + "cetz_0_2_1", +] +description = "CeTZ library for drawing venn diagrams for two or three sets" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/johannes-wolf/cetz-venn" + +[charged-ieee."0.1.4"] +url = "https://packages.typst.org/preview/charged-ieee-0.1.4.tar.gz" +hash = "sha256-sMm8mundrBeSU/FiFOvA/4Uu2S0vYRdpFO+vbudkf+A=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[charged-ieee."0.1.3"] +url = "https://packages.typst.org/preview/charged-ieee-0.1.3.tar.gz" +hash = "sha256-Ry2Xnw6YpWS9I3PzE+dj9ZRdZhtXDBLnVJKDAJY4au8=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[charged-ieee."0.1.2"] +url = "https://packages.typst.org/preview/charged-ieee-0.1.2.tar.gz" +hash = "sha256-mCaM0nH3ly/cbKGFb9rdqttV1XBij+wdAXd14QwUWjU=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[charged-ieee."0.1.1"] +url = "https://packages.typst.org/preview/charged-ieee-0.1.1.tar.gz" +hash = "sha256-bh0BxAHbb8p8MiASRRb+DJJJ+9/iRphHm9S4I12FJqg=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[charged-ieee."0.1.0"] +url = "https://packages.typst.org/preview/charged-ieee-0.1.0.tar.gz" +hash = "sha256-5omVDYmvuC7rZ20YVZUFIRTVnmLz0XHpseqbp5qqLNg=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[charged-vde."1.0.0"] +url = "https://packages.typst.org/preview/charged-vde-1.0.0.tar.gz" +hash = "sha256-2ybxBUcgdltcmFZSZHNWsbDXjaK0UsYxWfyLaVVWFqg=" +typstDeps = [ + "linguify_0_4_2", +] +description = "An inofficial VDE-style paper template to publish at VDE Conferences" +license = [ + "MIT-0", +] +homepage = "https://github.com/CEJMU/vde.typst" + +[chatter."0.1.0"] +url = "https://packages.typst.org/preview/chatter-0.1.0.tar.gz" +hash = "sha256-WIVKpYwXsjAMF5Lc0pyPsLzo1IScpoJVV0qRr8WZNHA=" +typstDeps = [] +description = "Write dialog between any number of characters quickly and cleanly. Great for translations or short assignments" +license = [ + "MIT-0", +] +homepage = "https://github.com/sylvanfranklin/chatter" + +[cheda-seu-thesis."0.3.4"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.4.tar.gz" +hash = "sha256-PguusfcdtPd1RZ0cLORjsLaPGDFpD7z/GqEaPqbShNw=" +typstDeps = [ + "a2c-nums_0_0_1", + "codelst_2_0_2", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[cheda-seu-thesis."0.3.3"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.3.tar.gz" +hash = "sha256-AkY3KcLDVSODiFyCFCFbC7PiUTYyqL2j8PBvvKTFj0U=" +typstDeps = [ + "a2c-nums_0_0_1", + "codelst_2_0_2", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[cheda-seu-thesis."0.3.2"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.2.tar.gz" +hash = "sha256-LvDjUjYyVWiFZjjlA/TemBiHf6F86tq+euBGAGlhkrc=" +typstDeps = [ + "a2c-nums_0_0_1", + "codelst_2_0_2", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[cheda-seu-thesis."0.3.1"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.1.tar.gz" +hash = "sha256-vbpbI1lu87MemMucjf1tSBsMjZ8SeobIjZDSwXUD7ZQ=" +typstDeps = [ + "a2c-nums_0_0_1", + "codelst_2_0_2", + "cuti_0_3_0", + "i-figured_0_2_4", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[cheda-seu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.3.0.tar.gz" +hash = "sha256-mpPCAhjTcYPXEiu6UN6ALLujZZST9oLI5j4q8mwy77A=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_2_1", + "i-figured_0_2_4", + "sourcerer_0_2_1", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[cheda-seu-thesis."0.2.2"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.2.2.tar.gz" +hash = "sha256-DwoLvvVlUaH6uuHfGzpDSmB+jCaQvLVlkpSlN7rOviU=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_2_1", + "sourcerer_0_2_1", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[cheda-seu-thesis."0.2.1"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.2.1.tar.gz" +hash = "sha256-rrAJ4jHZh08M22nKw4bV1MFy1eJWg3KQXdGBNMNjFYM=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_2_1", + "sourcerer_0_2_1", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[cheda-seu-thesis."0.2.0"] +url = "https://packages.typst.org/preview/cheda-seu-thesis-0.2.0.tar.gz" +hash = "sha256-jX+Hf3e64ZuH4Ke3FzDDRa/9aACdZoOND8afI8Dh+XI=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_2_1", + "i-figured_0_2_4", + "sourcerer_0_2_1", + "tablex_0_0_8", +] +description = "东南大学本科毕设与研究生学位论文模板。UNOFFICIAL Southeast University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/SEU-Typst-Template" + +[chem-par."0.0.1"] +url = "https://packages.typst.org/preview/chem-par-0.0.1.tar.gz" +hash = "sha256-wcoZAnaDvGbhPjXFd/8kHVbHwWvMPv/YFjwc8Y7fpXI=" +typstDeps = [] +description = "Display chemical formulae and IUPAC nomenclature with ease" +license = [ + "MIT", +] +homepage = "https://github.com/JamesxX/typst-chem-par" + +[chemformula."0.1.0"] +url = "https://packages.typst.org/preview/chemformula-0.1.0.tar.gz" +hash = "sha256-yjcPTBo+z2ZXMW2tXoxyhKH5IyKtZDDm9VHY1+C79G8=" +typstDeps = [] +description = "Extensible chemical formula formatter" +license = [ + "MIT", +] +homepage = "https://github.com/pacaunt/chemformula" + +[chemicoms-paper."0.1.0"] +url = "https://packages.typst.org/preview/chemicoms-paper-0.1.0.tar.gz" +hash = "sha256-7wdGjTwZm+6Sf4WyHS6Nyht519sgao6mPE8rTuta9vw=" +typstDeps = [ + "chic-hdr_0_4_0", + "fontawesome_0_1_0", + "valkyrie_0_2_0", +] +description = "An RSC-style paper template to publish at conferences and journals" +license = [ + "MIT-0", +] +homepage = "https://github.com/JamesxX/chemicoms-paper" + +[cheq."0.3.0"] +url = "https://packages.typst.org/preview/cheq-0.3.0.tar.gz" +hash = "sha256-v/iuiH/dHNHTXRF9beWMQ61GCyo1qBh6/mSbrjhYUxw=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + +[cheq."0.2.3"] +url = "https://packages.typst.org/preview/cheq-0.2.3.tar.gz" +hash = "sha256-mVnZgQndN5dIBKN+ICyOi/3C6GVAzW1ppcOAQ+hS9e4=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + +[cheq."0.2.2"] +url = "https://packages.typst.org/preview/cheq-0.2.2.tar.gz" +hash = "sha256-YtoXDJaC3CdggMpuT8WeWmo+adyOag9SMrQ6P20XypI=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + +[cheq."0.2.1"] +url = "https://packages.typst.org/preview/cheq-0.2.1.tar.gz" +hash = "sha256-ItxPDfZX0idr1tqaE7aITKvTrHktY3zNHD8McA6UYkQ=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + +[cheq."0.2.0"] +url = "https://packages.typst.org/preview/cheq-0.2.0.tar.gz" +hash = "sha256-C7cGzmO1dOgInRqlaKdCY/AAojFHewWz/gIz3cy2ZEM=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + +[cheq."0.1.0"] +url = "https://packages.typst.org/preview/cheq-0.1.0.tar.gz" +hash = "sha256-WyJoZEEgjukKD5I6KNjUWFBtGVs5RWUYkTR/PtZgCsE=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + +[chiandiau."0.1.0"] +url = "https://packages.typst.org/preview/chiandiau-0.1.0.tar.gz" +hash = "sha256-njVIUUdUcoTPMZZyAJ0p0AheptYfwzuZbnubdB6k5DY=" +typstDeps = [] +description = "Display tone-based jumpy pronunciations" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/OverflowCat/chiandiau" + +[chic-hdr."0.5.0"] +url = "https://packages.typst.org/preview/chic-hdr-0.5.0.tar.gz" +hash = "sha256-tS5Cnu+1Lmkgzq9jklvui5vLFvlYuQg6pfEre0pf7gE=" +typstDeps = [] +description = "Typst package for creating elegant headers and footers" +license = [ + "MIT", +] +homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package" + +[chic-hdr."0.4.0"] +url = "https://packages.typst.org/preview/chic-hdr-0.4.0.tar.gz" +hash = "sha256-rhdAS81nkPwQTWnmp5niPja7S9EJ6zXdPyhEsCmRMGQ=" +typstDeps = [ + "codelst_1_0_0", + "showybox_2_0_1", +] +description = "Typst package for creating elegant headers and footers" +license = [ + "MIT", +] +homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package" + +[chic-hdr."0.3.0"] +url = "https://packages.typst.org/preview/chic-hdr-0.3.0.tar.gz" +hash = "sha256-zppJQ2wHID0BTZQGUhrT2er0bc4TjD8VIj9PSdmokDY=" +typstDeps = [] +description = "Typst package for creating elegant headers and footers" +license = [ + "MIT", +] +homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package" + +[chic-hdr."0.2.0"] +url = "https://packages.typst.org/preview/chic-hdr-0.2.0.tar.gz" +hash = "sha256-0un0K/bOrw6h82eaeCN7MLoYrm136dnDb50DlchP44g=" +typstDeps = [] +description = "Typst package for creating elegant headers and footers" +license = [ + "MIT", +] +homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package" + +[chic-hdr."0.1.0"] +url = "https://packages.typst.org/preview/chic-hdr-0.1.0.tar.gz" +hash = "sha256-jymXx4/eCazAOcc1qeXDjqJ0wC54petaXtTz2KIHIXI=" +typstDeps = [] +description = "Typst package for creating elegant headers and footers" +license = [ + "MIT", +] +homepage = "https://github.com/Pablo-Gonzalez-Calderon/chic-header-package" + +[chicv."0.1.0"] +url = "https://packages.typst.org/preview/chicv-0.1.0.tar.gz" +hash = "sha256-vBav/o7zVRFWADuw3mUXjhkQclQfwzrU6hA/92Qwp68=" +typstDeps = [] +description = "A minimal and fully-customizable CV template" +license = [ + "MIT", +] +homepage = "https://github.com/skyzh/chicv" + +[chordish."0.2.0"] +url = "https://packages.typst.org/preview/chordish-0.2.0.tar.gz" +hash = "sha256-s9uPjFDe86t68jLqTD6eXvzjmq3mAPDDkCosxVF1TPs=" +typstDeps = [ + "conchord_0_3_0", +] +description = "A simple template for creating guitar and ukulele chord sheets" +license = [ + "MIT", +] +homepage = "https://github.com/soxfox42/chordish" + +[chordish."0.1.0"] +url = "https://packages.typst.org/preview/chordish-0.1.0.tar.gz" +hash = "sha256-cFVTV04jyU5vCjwlrvskI3nbclYZWv3ctjNvyQBDeJ8=" +typstDeps = [ + "conchord_0_2_0", +] +description = "A simple template for creating guitar and ukulele chord sheets" +license = [ + "MIT", +] +homepage = "https://github.com/soxfox42/chordish" + +[chordx."0.6.1"] +url = "https://packages.typst.org/preview/chordx-0.6.1.tar.gz" +hash = "sha256-qmXQLHMDGw98RjjzJnKPXTJTjjtRB1aR9teNeI4UEdE=" +typstDeps = [] +description = "A package to write song lyrics with chord diagrams in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ljgago/typst-chords" + +[chordx."0.6.0"] +url = "https://packages.typst.org/preview/chordx-0.6.0.tar.gz" +hash = "sha256-O65TggkpQmS4GkoO/SYMDSfwdF5J/NnMAGcPUoKZm2c=" +typstDeps = [] +description = "A package to write song lyrics with chord diagrams in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ljgago/typst-chords" + +[chordx."0.5.0"] +url = "https://packages.typst.org/preview/chordx-0.5.0.tar.gz" +hash = "sha256-RkCVGlJafPrr6IKbpKL73yZOtdfJNva4afwdoFvrKZM=" +typstDeps = [] +description = "A package to write song lyrics with chord diagrams in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ljgago/typst-chords" + +[chordx."0.4.0"] +url = "https://packages.typst.org/preview/chordx-0.4.0.tar.gz" +hash = "sha256-NYpCu9rRjIK7941kYHJnux444MmJjyEt9w21AOSlv0Q=" +typstDeps = [] +description = "A package to write song lyrics with chord diagrams in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ljgago/typst-chords" + +[chordx."0.3.0"] +url = "https://packages.typst.org/preview/chordx-0.3.0.tar.gz" +hash = "sha256-uQbOVMsa6dGl2iQDi3DkdxEFATgx+vCNuh0cBDwzqJ4=" +typstDeps = [] +description = "A package to write song lyrics with chord diagrams in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ljgago/typst-chords" + +[chordx."0.2.0"] +url = "https://packages.typst.org/preview/chordx-0.2.0.tar.gz" +hash = "sha256-LDe/W4RAqiW9zTfQcWVDePGNSIN9LGNN1NcIX6KxX10=" +typstDeps = [] +description = "A package to write song lyrics with chord diagrams in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ljgago/typst-chords" + +[chordx."0.1.0"] +url = "https://packages.typst.org/preview/chordx-0.1.0.tar.gz" +hash = "sha256-no3xDZiroQghV591FPQnRrCFYa5h9EG803xmVdqB/nQ=" +typstDeps = [ + "cetz_0_0_1", +] +description = "A library to write song lyrics with chord diagrams in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ljgago/typst-chords" + +[chribel."1.1.0"] +url = "https://packages.typst.org/preview/chribel-1.1.0.tar.gz" +hash = "sha256-w/DXHuHtAZJTRcGuYbHSE9ABXdALsWW3tCbURTjMVVw=" +typstDeps = [ + "chribel_1_0_0", + "tableau-icons_0_334_1", +] +description = "A compact summary template with custom callouts" +license = [ + "EUPL-1.2", +] +homepage = "https://codeberg.org/joelvonrotz/typst-chribel-template" + +[chribel."1.0.0"] +url = "https://packages.typst.org/preview/chribel-1.0.0.tar.gz" +hash = "sha256-bgyOuNPJRo4XNVnIpXdXwcVRvCXcEePIgiIJBo1Qmf8=" +typstDeps = [ + "tableau-icons_0_334_1", +] +description = "A compact summary template with custom callouts" +license = [ + "EUPL-1.2", +] +homepage = "https://codeberg.org/joelvonrotz/typst-chribel-template" + +[chromo."0.1.0"] +url = "https://packages.typst.org/preview/chromo-0.1.0.tar.gz" +hash = "sha256-oNDEPTHeTtnnfkhL2C0ewNLnBJJWqpWp7wyG4A+xrVM=" +typstDeps = [] +description = "Generate printer tests (likely CMYK) in typst" +license = [ + "MIT", +] +homepage = "https://github.com/julien-cpsn/typst-chromo" + +[chronos."0.2.1"] +url = "https://packages.typst.org/preview/chronos-0.2.1.tar.gz" +hash = "sha256-84RpRKxW2Vtnsrw90TR4IlQmXIf3ICnVsF3CaMLujZk=" +typstDeps = [ + "cetz_0_3_4", + "codly_1_2_0", + "codly-languages_0_1_8", + "tidy_0_4_2", +] +description = "A package to draw sequence diagrams with CeTZ" +license = [ + "Apache-2.0", +] +homepage = "https://git.kb28.ch/HEL/chronos" + +[chronos."0.2.0"] +url = "https://packages.typst.org/preview/chronos-0.2.0.tar.gz" +hash = "sha256-Mo40pqiXbuYU0TM1BaLgdC8XRK1nCctv6DQ+7x+uqJw=" +typstDeps = [ + "cetz_0_3_1", + "chronos_0_1_0", + "tidy_0_3_0", +] +description = "A package to draw sequence diagrams with CeTZ" +license = [ + "Apache-2.0", +] +homepage = "https://git.kb28.ch/HEL/chronos" + +[chronos."0.1.0"] +url = "https://packages.typst.org/preview/chronos-0.1.0.tar.gz" +hash = "sha256-qWrSOedzxmCGo9SWbl+a3mcJq6MvAIgxWVtJy/X+H/w=" +typstDeps = [ + "cetz_0_2_2", +] +description = "A package to draw sequence diagrams with CeTZ" +license = [ + "Apache-2.0", +] +homepage = "https://git.kb28.ch/HEL/chronos" + +[chuli-cv."0.1.0"] +url = "https://packages.typst.org/preview/chuli-cv-0.1.0.tar.gz" +hash = "sha256-DsawPi/T7MQbGqPXOAqyagn3Sswtqiic6mjMBpb/7CQ=" +typstDeps = [ + "cetz_0_2_2", + "fontawesome_0_1_0", +] +description = "Minimalistic and modern CV and cover letter templates" +license = [ + "MIT", +] +homepage = "https://github.com/npujol/chuli-cv" + +[cineca."0.5.0"] +url = "https://packages.typst.org/preview/cineca-0.5.0.tar.gz" +hash = "sha256-BFfN80r+0rn9HhJUTqP8ytcQxby12GHeSvtxZ8Xd5jE=" +typstDeps = [] +description = "A package to create calendar with events" +license = [ + "MIT", +] +homepage = "https://github.com/HPdell/typst-cineca" + +[cineca."0.4.0"] +url = "https://packages.typst.org/preview/cineca-0.4.0.tar.gz" +hash = "sha256-3jInINMVewI9RoyfrvGzTZV2rWytsvtOYkl8hR+WHJw=" +typstDeps = [] +description = "A package to create calendar with events" +license = [ + "MIT", +] +homepage = "https://github.com/HPdell/typst-cineca" + +[cineca."0.3.0"] +url = "https://packages.typst.org/preview/cineca-0.3.0.tar.gz" +hash = "sha256-mpuiSe3qfb/7d4kpL4M5uUUK2GunfKOa1h6jYtpqhcw=" +typstDeps = [] +description = "A package to create calendar with events" +license = [ + "MIT", +] +homepage = "https://github.com/HPdell/typst-cineca" + +[cineca."0.2.1"] +url = "https://packages.typst.org/preview/cineca-0.2.1.tar.gz" +hash = "sha256-kmogrKoLDMT0E65Kxo8iTjsGtJ20zu4+P0YYEYgpRpc=" +typstDeps = [] +description = "A package to create calendar with events" +license = [ + "MIT", +] +homepage = "https://github.com/HPdell/typst-cineca" + +[cineca."0.2.0"] +url = "https://packages.typst.org/preview/cineca-0.2.0.tar.gz" +hash = "sha256-BDIiMsATDgyrHum7ItGgH0xi5OG3fw0jZ+NNJco0NNk=" +typstDeps = [] +description = "A package to create calendar with events" +license = [ + "MIT", +] +homepage = "https://github.com/HPdell/typst-cineca" + +[cineca."0.1.0"] +url = "https://packages.typst.org/preview/cineca-0.1.0.tar.gz" +hash = "sha256-hfpXIeyRahvCLSNcynnerVMK4CgLuIxquABXpKrCyYU=" +typstDeps = [] +description = "A package to create calendar with events" +license = [ + "MIT", +] +homepage = "https://github.com/HPdell/typst-cineca" + +[circuiteria."0.2.0"] +url = "https://packages.typst.org/preview/circuiteria-0.2.0.tar.gz" +hash = "sha256-Ql3l9XV6sf94x2O6OJaedRusptFRINuNnCPF9DQDC84=" +typstDeps = [ + "cetz_0_3_2", + "tidy_0_3_0", + "tidy_0_4_1", +] +description = "Drawing block circuits with Typst made easy, using CeTZ" +license = [ + "Apache-2.0", +] +homepage = "https://git.kb28.ch/HEL/circuiteria" + +[circuiteria."0.1.0"] +url = "https://packages.typst.org/preview/circuiteria-0.1.0.tar.gz" +hash = "sha256-sMjfqvesHdjEhnC0qnuZKRiBhrk3X3j3ZENTlq+rIcM=" +typstDeps = [ + "cetz_0_2_2", + "tidy_0_3_0", +] +description = "Drawing block circuits with Typst made easy, using CeTZ" +license = [ + "Apache-2.0", +] +homepage = "https://git.kb28.ch/HEL/circuiteria" + +[citegeist."0.2.0"] +url = "https://packages.typst.org/preview/citegeist-0.2.0.tar.gz" +hash = "sha256-4bvuLxM+h82wS/VroIksuwtC36nW2PRqvp23l7ny1uI=" +typstDeps = [] +description = "Makes a Bibtex bibliography available as a Typst dictionary" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/typst-citegeist" + +[citegeist."0.1.0"] +url = "https://packages.typst.org/preview/citegeist-0.1.0.tar.gz" +hash = "sha256-3tESfy/IyQSo2ubvAvm2BHwWPZQJVlJULndLjlVeSZo=" +typstDeps = [] +description = "Makes a Bibtex bibliography available as a Typst dictionary" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/typst-citegeist" + +[cjk-unbreak."0.2.1"] +url = "https://packages.typst.org/preview/cjk-unbreak-0.2.1.tar.gz" +hash = "sha256-f20yye3QpWzyGCvruICJcLsKHjYwMAG2ruHWSD6hNLU=" +typstDeps = [ + "touying_0_6_1", +] +description = "Remove spaces caused by line breaks around CJK" +license = [ + "MIT", +] +homepage = "https://github.com/KZNS/cjk-unbreak" + +[cjk-unbreak."0.2.0"] +url = "https://packages.typst.org/preview/cjk-unbreak-0.2.0.tar.gz" +hash = "sha256-M6R3NaJ1bFMGPj7Ro8aMbwrVXe0aDr0iP8BYv2woL4Q=" +typstDeps = [ + "touying_0_6_1", +] +description = "Remove spaces caused by line breaks around CJK" +license = [ + "MIT", +] +homepage = "https://github.com/KZNS/cjk-unbreak" + +[cjk-unbreak."0.1.1"] +url = "https://packages.typst.org/preview/cjk-unbreak-0.1.1.tar.gz" +hash = "sha256-if3e285Aj86MpsgHI0tyS4NlRH3W5A4VhLl/Yp+vTpc=" +typstDeps = [ + "touying_0_6_1", +] +description = "Remove spaces caused by line breaks around CJK" +license = [ + "MIT", +] +homepage = "https://github.com/KZNS/cjk-unbreak" + +[cjk-unbreak."0.1.0"] +url = "https://packages.typst.org/preview/cjk-unbreak-0.1.0.tar.gz" +hash = "sha256-i4Rql1otEyJZW1ib987ZACP9u8fx7S8wvMlrZFvLLrI=" +typstDeps = [ + "touying_0_6_1", +] +description = "Remove spaces caused by line breaks around CJK" +license = [ + "MIT", +] +homepage = "https://github.com/KZNS/cjk-unbreak" + +[classic-aau-report."0.3.1"] +url = "https://packages.typst.org/preview/classic-aau-report-0.3.1.tar.gz" +hash = "sha256-kDy0Z0f2ifKOdKa/PaPP608qXzmw1E6NTL40dIUY0iQ=" +typstDeps = [ + "glossy_0_8_0", + "headcount_0_1_0", + "hydra_0_6_2", + "subpar_0_2_2", +] +description = "A report template for students at Aalborg University (AAU" +license = [ + "MIT", +] +homepage = "https://github.com/Tinggaard/classic-aau-report" + +[classic-aau-report."0.3.0"] +url = "https://packages.typst.org/preview/classic-aau-report-0.3.0.tar.gz" +hash = "sha256-SqWI3LPyvv5nGWeLfrMD3rLOMXer2UT2djt/iA9NlSE=" +typstDeps = [ + "glossy_0_7_0", + "headcount_0_1_0", + "hydra_0_6_0", + "subpar_0_2_1", +] +description = "A report template for students at Aalborg University (AAU" +license = [ + "MIT", +] +homepage = "https://github.com/Tinggaard/classic-aau-report" + +[classic-aau-report."0.2.1"] +url = "https://packages.typst.org/preview/classic-aau-report-0.2.1.tar.gz" +hash = "sha256-aYw7r6pzMjS0jD1zIv+aT8Lrfp0697JFRWz5Y60B3Ow=" +typstDeps = [ + "glossy_0_5_2", + "headcount_0_1_0", + "hydra_0_5_2", + "subpar_0_2_0", + "subpar_0_2_1", + "t4t_0_4_1", +] +description = "A report template for students at Aalborg University (AAU" +license = [ + "MIT", +] +homepage = "https://github.com/Tinggaard/classic-aau-report" + +[classic-aau-report."0.2.0"] +url = "https://packages.typst.org/preview/classic-aau-report-0.2.0.tar.gz" +hash = "sha256-5M8qOlbGcCh0C+EUrp9SrkT3l9vhVYW+lTVqRDzbpz0=" +typstDeps = [ + "glossy_0_5_2", + "headcount_0_1_0", + "hydra_0_5_2", + "subpar_0_2_0", + "t4t_0_4_1", +] +description = "A report template for students at Aalborg University (AAU" +license = [ + "MIT", +] +homepage = "https://github.com/Tinggaard/classic-aau-report" + +[classic-aau-report."0.1.1"] +url = "https://packages.typst.org/preview/classic-aau-report-0.1.1.tar.gz" +hash = "sha256-2snVjrAOgKP+vkwSv7HlGh7WzRw1JkJrYNawt2zBpBg=" +typstDeps = [ + "hydra_0_5_1", + "t4t_0_3_2", +] +description = "A report template for students at Aalborg University (AAU" +license = [ + "MIT", +] +homepage = "https://github.com/Tinggaard/classic-aau-report" + +[classic-aau-report."0.1.0"] +url = "https://packages.typst.org/preview/classic-aau-report-0.1.0.tar.gz" +hash = "sha256-A27tEt6573poCF92/7MqrAWvzEiNAhds6h+4v4WhJsk=" +typstDeps = [ + "hydra_0_5_1", + "t4t_0_3_2", +] +description = "An example package" +license = [ + "MIT", +] +homepage = "https://github.com/Tinggaard/classic-aau-report" + +[classic-jmlr."0.4.0"] +url = "https://packages.typst.org/preview/classic-jmlr-0.4.0.tar.gz" +hash = "sha256-ataZOhYJA0GGAzZkY4jtLt0y0X5LoziBLPMLz9UodMM=" +typstDeps = [] +description = "Paper template for submission to Journal of Machine Learning Research (JMLR" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[classic-tud-math-thesis."0.1.0"] +url = "https://packages.typst.org/preview/classic-tud-math-thesis-0.1.0.tar.gz" +hash = "sha256-X4uqbg+mWkXzX/fgO+knjwvTTSqnzcNYC14fU9782T4=" +typstDeps = [ + "great-theorems_0_1_2", + "hydra_0_6_2", + "rich-counters_0_2_2", +] +description = "Unofficial template for writing a thesis at the Faculty of Mathematics at TUD" +license = [ + "MIT", +] +homepage = "https://github.com/tibirius24/classic-tud-math-thesis" + +[classy-german-invoice."0.3.1"] +url = "https://packages.typst.org/preview/classy-german-invoice-0.3.1.tar.gz" +hash = "sha256-y7DUXmWHEjlRK3YxECtgaGGVidaA88piuLNDcJg96Mo=" +typstDeps = [ + "cades_0_3_0", + "ibanator_0_1_0", +] +description = "Minimalistic invoice for germany based freelancers" +license = [ + "MIT-0", +] +homepage = "https://github.com/erictapen/typst-invoice" + +[classy-german-invoice."0.3.0"] +url = "https://packages.typst.org/preview/classy-german-invoice-0.3.0.tar.gz" +hash = "sha256-TEmN13L7pfEjeWTvyqClJgeAx38VBLV+aoUw/WLY2eQ=" +typstDeps = [ + "cades_0_3_0", + "ibanator_0_1_0", + "tablex_0_0_8", +] +description = "Minimalistic invoice for germany based freelancers" +license = [ + "MIT-0", +] +homepage = "https://github.com/erictapen/typst-invoice" + +[classy-german-invoice."0.2.0"] +url = "https://packages.typst.org/preview/classy-german-invoice-0.2.0.tar.gz" +hash = "sha256-d+6LsAHRRYGvfbH7iAARBIPueaswI6uqufrME4xaa1Y=" +typstDeps = [ + "cades_0_3_0", + "ibanator_0_1_0", + "tablex_0_0_8", +] +description = "Minimalistic invoice for germany based freelancers" +license = [ + "MIT-0", +] +homepage = "https://github.com/erictapen/typst-invoice" + +[classy-tudelft-thesis."0.1.0"] +url = "https://packages.typst.org/preview/classy-tudelft-thesis-0.1.0.tar.gz" +hash = "sha256-jerypvYjea5uXairbedKf+uCDVNpyvn8zGyPvHmsbRA=" +typstDeps = [ + "equate_0_3_2", + "physica_0_9_6", + "unify_0_7_1", + "wrap-it_0_1_1", + "zero_0_5_0", +] +description = "A classy thesis report in TU Delft style" +license = [ + "MIT-0", +] +homepage = "https://github.com/Vector04/tudelft-thesis-template" + +[clatter."0.1.0"] +url = "https://packages.typst.org/preview/clatter-0.1.0.tar.gz" +hash = "sha256-us5EekkEvGF6K0VS71EtjcCTGFAi+ilqM+iQJ5Icg1g=" +typstDeps = [] +description = "Just the PDF417 generator from rxing" +license = [ + "MIT", +] +homepage = "https://github.com/Gowee/typst-clatter" + +[clean-acmart."0.0.1"] +url = "https://packages.typst.org/preview/clean-acmart-0.0.1.tar.gz" +hash = "sha256-2xb7rRpMwA0FEIgZwzTUia1DoOQDU3Otc48Qc9YZe3U=" +typstDeps = [] +description = "Simple and clean Typst paper template for ACM conferences following the original acmart style" +license = [ + "MIT", +] +homepage = "https://github.com/vtta/clean-acmart" + +[clean-agh-thesis."0.1.0"] +url = "https://packages.typst.org/preview/clean-agh-thesis-0.1.0.tar.gz" +hash = "sha256-dFhLL2pFSYtizKGoKpegQppBdFsai9TQUPJWVdFOmtQ=" +typstDeps = [] +description = "AGH-compliant thesis template" +license = [ + "MIT-0", +] +homepage = "https://github.com/matisiekpl/agh-typst" + +[clean-cnam-template."1.2.0"] +url = "https://packages.typst.org/preview/clean-cnam-template-1.2.0.tar.gz" +hash = "sha256-/BECU/XWnGR4rdwfcXpuP7NNi7rVei0uRRySVKdAb5w=" +typstDeps = [ + "great-theorems_0_1_2", + "headcount_0_1_0", + "i-figured_0_2_4", +] +description = "A modular and organized template for creating professional documents using CNAM branding and styling" +license = [ + "MIT", +] +homepage = "https://github.com/TomPlanche/clean-cnam-template" + +[clean-cnam-template."1.1.0"] +url = "https://packages.typst.org/preview/clean-cnam-template-1.1.0.tar.gz" +hash = "sha256-LkzJa06bcbML07ZymjSG+bJaUIDziPhTMU73SnSFNCY=" +typstDeps = [ + "great-theorems_0_1_2", + "headcount_0_1_0", + "i-figured_0_2_4", +] +description = "A modular and organized template for creating professional documents using CNAM branding and styling" +license = [ + "MIT", +] +homepage = "https://github.com/TomPlanche/clean-cnam-template" + +[clean-cnam-template."1.0.0"] +url = "https://packages.typst.org/preview/clean-cnam-template-1.0.0.tar.gz" +hash = "sha256-JFbOcMEAC3WPCpbIJjbehSyhUq0yoixW79Usfx1Fubk=" +typstDeps = [ + "great-theorems_0_1_2", + "headcount_0_1_0", + "i-figured_0_2_4", +] +description = "A modular and organized TYPST template for creating professional documents using CNAM branding and styling" +license = [ + "MIT", +] +homepage = "https://github.com/TomPlanche/clean-cnam-template" + +[clean-dhbw."0.3.1"] +url = "https://packages.typst.org/preview/clean-dhbw-0.3.1.tar.gz" +hash = "sha256-aJkpx80Hh56YvrPHSpPW1hYP8UZsbPBwJvq9vlROROM=" +typstDeps = [ + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "A Typst Template for DHBW" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" + +[clean-dhbw."0.3.0"] +url = "https://packages.typst.org/preview/clean-dhbw-0.3.0.tar.gz" +hash = "sha256-LlBM2JdHYtjYaca9aAIuHAlbYl9YvbrNxeuLi/waUhE=" +typstDeps = [ + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "A Typst Template for DHBW" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" + +[clean-dhbw."0.2.1"] +url = "https://packages.typst.org/preview/clean-dhbw-0.2.1.tar.gz" +hash = "sha256-JAF0qUnqAlKzVU2g8XYrRJRDX2whTeS5rq8Jfo/upk4=" +typstDeps = [ + "codelst_2_0_2", + "hydra_0_6_0", +] +description = "A Typst Template for DHBW" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" + +[clean-dhbw."0.1.1"] +url = "https://packages.typst.org/preview/clean-dhbw-0.1.1.tar.gz" +hash = "sha256-8m19RwBBzX+WW8THNa1BCJWSF8t3B24Rv53UNlTwTBI=" +typstDeps = [ + "codelst_2_0_2", + "hydra_0_5_1", +] +description = "A Typst Template for DHBW" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" + +[clean-dhbw."0.1.0"] +url = "https://packages.typst.org/preview/clean-dhbw-0.1.0.tar.gz" +hash = "sha256-kBcdm964UAOC/YZqVyK32vx15/vDiReHSPpg/Ceq2+c=" +typstDeps = [ + "codelst_2_0_2", + "hydra_0_5_1", +] +description = "A Typst Template for DHBW" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" + +[clean-hda."0.2.0"] +url = "https://packages.typst.org/preview/clean-hda-0.2.0.tar.gz" +hash = "sha256-6B+DQmhUw6m8gGH5QEqJKSt1c4vPgaJZeiIkoxEZMfc=" +typstDeps = [ + "abbr_0_3_0", + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "Computer Science Thesis for Hochschule Darmstadt (h_da" +license = [ + "MIT", +] +homepage = "https://github.com/stefan-ctrl/clean-hda-typst-template" + +[clean-hda."0.1.0"] +url = "https://packages.typst.org/preview/clean-hda-0.1.0.tar.gz" +hash = "sha256-P94SIGHfF+KmFSfOsUQFcsgLqUWjplsAQMevPa96SSw=" +typstDeps = [ + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "Computer Science Thesis for Hochschule Darmstadt (h_da" +license = [ + "MIT", +] +homepage = "https://github.com/stefan-ctrl/clean-hda-typst-template" + +[clean-hwr."0.1.4"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.4.tar.gz" +hash = "sha256-1/Bi1Vkr4fO+2f/U8RyX8UMukFmV6pdFcOVIvhbqnao=" +typstDeps = [ + "acrostiche_0_6_0", + "glossarium_0_5_8", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + +[clean-hwr."0.1.3"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.3.tar.gz" +hash = "sha256-dnWXMoYUBeTszSGyp234LhpF5+S47LJVPQsxt396hqM=" +typstDeps = [ + "acrostiche_0_6_0", + "glossarium_0_5_8", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + +[clean-hwr."0.1.2"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.2.tar.gz" +hash = "sha256-Jvki1+ZnoYgP4aryIt6Kqm131ZrtNn7UlUfik/iBung=" +typstDeps = [ + "acrostiche_0_6_0", + "glossarium_0_5_8", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + +[clean-hwr."0.1.1"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.1.tar.gz" +hash = "sha256-FxkyyaJmLoV43mSRz9Ns/uMGlXB/dSPHWjUlx+MjxUc=" +typstDeps = [ + "acrostiche_0_5_2", + "glossarium_0_5_6", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + +[clean-hwr."0.1.0"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.0.tar.gz" +hash = "sha256-on5VP/Qrk2rpn2t3YoEhcs9qgaG/Dyu4S7pkqFvvd1c=" +typstDeps = [ + "acrostiche_0_5_2", + "glossarium_0_5_6", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr-template" + +[clean-math-paper."0.2.5"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.5.tar.gz" +hash = "sha256-PsQGRUPo52lju3ARmY2C9oKWCc4merfRkDEgON3YgPQ=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.2.4"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.4.tar.gz" +hash = "sha256-stmqMjEBgbeQTLrBo3Gdi8lP6rOrm3saOV23WYibCu4=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.2.3"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.3.tar.gz" +hash = "sha256-f/ECy7LyeDxjamQ0Wwcmr/CnnWQgp71aqmgPT5IOj40=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.2.2"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.2.tar.gz" +hash = "sha256-6V9d+JByXXDVTC8jCY25D8EkbLyOBmYRdVieDy+4AoI=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.2.1"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.1.tar.gz" +hash = "sha256-DyXu46y/WFZPZeCLkrX/piFhy6lmZZm0ZuTB6CHf6iE=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.2.0"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.0.tar.gz" +hash = "sha256-c3pc80WKoTPUmavlZ8BLg/iU89wvuwiI4d0ousSY7oM=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.1.1"] +url = "https://packages.typst.org/preview/clean-math-paper-0.1.1.tar.gz" +hash = "sha256-6Uur+X4J9p0vFV9OR5NTB+po0tiEg7YaNVgdcf/xQw8=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.1.0"] +url = "https://packages.typst.org/preview/clean-math-paper-0.1.0.tar.gz" +hash = "sha256-J4EbmU5j/TuR+IK/bXUEEIFmrwQfgYYB06q4ayT8+dI=" +typstDeps = [ + "great-theorems_0_1_1", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-presentation."0.1.1"] +url = "https://packages.typst.org/preview/clean-math-presentation-0.1.1.tar.gz" +hash = "sha256-IW0HQxjCrEseAIkgQPD0lrwzzeoFU62rh13BIzESxH8=" +typstDeps = [ + "great-theorems_0_1_1", + "touying_0_5_5", +] +description = "A simple and good looking template for mathematical presentations" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-presentation" + +[clean-math-presentation."0.1.0"] +url = "https://packages.typst.org/preview/clean-math-presentation-0.1.0.tar.gz" +hash = "sha256-0axOzXVqeWsS7IlQrMyHewFA1z3W+kytX77YY7DuDsk=" +typstDeps = [ + "great-theorems_0_1_1", + "touying_0_5_3", +] +description = "A simple and good looking template for mathematical presentations" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-presentation" + +[clean-math-thesis."0.4.0"] +url = "https://packages.typst.org/preview/clean-math-thesis-0.4.0.tar.gz" +hash = "sha256-J7HoM4aC3FTdKSZDrz2OlmtCwMzQSKJ0qjU+E0BKzCA=" +typstDeps = [ + "equate_0_3_2", + "great-theorems_0_1_2", + "hydra_0_6_1", + "i-figured_0_2_4", + "lovelace_0_3_0", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical theses" +license = [ + "MIT", +] +homepage = "https://github.com/sebaseb98/clean-math-thesis" + +[clean-math-thesis."0.3.0"] +url = "https://packages.typst.org/preview/clean-math-thesis-0.3.0.tar.gz" +hash = "sha256-67E7/gEnO9z7lnDLqcsEysCtVtbw5VA4BXVmG/QmpvQ=" +typstDeps = [ + "equate_0_3_1", + "great-theorems_0_1_2", + "hydra_0_5_2", + "i-figured_0_2_4", + "lovelace_0_3_0", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical theses" +license = [ + "MIT", +] +homepage = "https://github.com/sebaseb98/clean-math-thesis" + +[clean-math-thesis."0.2.0"] +url = "https://packages.typst.org/preview/clean-math-thesis-0.2.0.tar.gz" +hash = "sha256-so0jiG9PYQ3LY66w+C4sT33OFL2tzK1VysIePk28OMo=" +typstDeps = [ + "equate_0_2_1", + "great-theorems_0_1_1", + "hydra_0_5_1", + "i-figured_0_2_4", + "lovelace_0_3_0", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical theses" +license = [ + "MIT", +] +homepage = "https://github.com/sebaseb98/clean-math-thesis" + +[clean-math-thesis."0.1.0"] +url = "https://packages.typst.org/preview/clean-math-thesis-0.1.0.tar.gz" +hash = "sha256-MgFd4jY23ypujTnuOYLuxqCZFQj4L9YWbV/WH0vtcmY=" +typstDeps = [ + "great-theorems_0_1_1", + "headcount_0_1_0", + "hydra_0_5_1", + "lovelace_0_3_0", +] +description = "A simple and good looking template for mathematical theses" +license = [ + "MIT", +] +homepage = "https://github.com/sebaseb98/clean-math-thesis" + +[clean-uoft-thesis."0.1.0"] +url = "https://packages.typst.org/preview/clean-uoft-thesis-0.1.0.tar.gz" +hash = "sha256-r+ojrTHkXSjQJD0nyQXbu8YgybLcP8Zr4LZPU/Zcwsg=" +typstDeps = [ + "wordometer_0_1_4", +] +description = "Unofficial formatting-compliant masters and doctoral thesese for the School of Graduate Studies at the University of Toronto" +license = [ + "MIT", +] +homepage = "https://github.com/pvelayudhan/clean-uoft-thesis" + +[cleanified-hpi-research-proposal."0.1.0"] +url = "https://packages.typst.org/preview/cleanified-hpi-research-proposal-0.1.0.tar.gz" +hash = "sha256-/n21OXWns8xee8gscLjsmZhshKZFuflY0XA+FgF+IPs=" +typstDeps = [ + "biceps_0_0_1", +] +description = "Clean-Asthetic HPI Research Proposal" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-research-proposal-template/" + +[cleanified-hpi-research-proposal."0.0.2"] +url = "https://packages.typst.org/preview/cleanified-hpi-research-proposal-0.0.2.tar.gz" +hash = "sha256-VjirzYDxEL03o3sAcY7+Iv3Skb7cuxxuqSPPXKKDNts=" +typstDeps = [ + "biceps_0_0_1", +] +description = "Clean-Asthetic HPI Research Proposal" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-research-proposal-template/" + +[cleanified-hpi-research-proposal."0.0.1"] +url = "https://packages.typst.org/preview/cleanified-hpi-research-proposal-0.0.1.tar.gz" +hash = "sha256-rQcyLHCAZE42YbBvr4B/YTy8N+caDL6D8z/Tlgyo+7s=" +typstDeps = [] +description = "Clean-Asthetic HPI Research Proposal" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-research-proposal-template/" + +[cleanified-hpi-thesis."0.0.1"] +url = "https://packages.typst.org/preview/cleanified-hpi-thesis-0.0.1.tar.gz" +hash = "sha256-g4gquvnBSVczNbu5dg7xcO9QcVHfDWQ28e231INWAN8=" +typstDeps = [] +description = "Clean-Asthetic Bachelor's and Master's thesis for HPI, University of Potsdam" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-thesis-template/" + +[clear-iclr."0.7.0"] +url = "https://packages.typst.org/preview/clear-iclr-0.7.0.tar.gz" +hash = "sha256-d5Jv1xtNJllFK6nC56jU6xmfMZa2tp2GvNwspDLxW6c=" +typstDeps = [] +description = "Paper template for submission to International Conference on Learning\nRepresentations (ICLR" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[clear-iclr."0.4.0"] +url = "https://packages.typst.org/preview/clear-iclr-0.4.0.tar.gz" +hash = "sha256-hpHIcxCB5ZE8ZJITOzUYuiFEuV/Fs2UiSVhrX86r6MQ=" +typstDeps = [] +description = "Paper template for submission to International Conference on Learning Representations (ICLR" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[clickworthy-resume."1.0.1"] +url = "https://packages.typst.org/preview/clickworthy-resume-1.0.1.tar.gz" +hash = "sha256-pTBkOTg2dpwyp19lP73AVasB2mQUhb8ZnBcbJHXDmgw=" +typstDeps = [] +description = "A simple, flexible, responsive, ATS-friendly, and click-worthy resume. Extra cover letter and extendable to a CV" +license = [ + "MIT", +] +homepage = "https://github.com/AbdullahHendy/clickworthy-resume" + +[clickworthy-resume."1.0.0"] +url = "https://packages.typst.org/preview/clickworthy-resume-1.0.0.tar.gz" +hash = "sha256-YcSLT+J5y24eDbba5qCTC4J5kjbvXCR6b/vboWTVs98=" +typstDeps = [] +description = "A simple, flexible, responsive, ATS-friendly, and click-worthy resume. Extra cover letter and extendable to a CV" +license = [ + "MIT", +] +homepage = "https://github.com/AbdullahHendy/clickworthy-resume" + +[cloudy."0.1.1"] +url = "https://packages.typst.org/preview/cloudy-0.1.1.tar.gz" +hash = "sha256-5Y78gTdnKnxjTD1uy0FnLUXjnv3p6BcL8+9H+Zhv2XI=" +typstDeps = [ + "testyfy_0_2_0", +] +description = "Create clouds of words" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://gitlab.com/hartang/typst/cloudy" + +[cmarker."0.1.7"] +url = "https://packages.typst.org/preview/cmarker-0.1.7.tar.gz" +hash = "sha256-ws+3x8u6nUOYZlXJzKJbFIHNUM9gdPYgSvOs+NfgclY=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cmarker."0.1.6"] +url = "https://packages.typst.org/preview/cmarker-0.1.6.tar.gz" +hash = "sha256-L/lp2Skb/MUxNYmLL1D2MXW/pkQK8Rw6WgkmBIfnc74=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cmarker."0.1.5"] +url = "https://packages.typst.org/preview/cmarker-0.1.5.tar.gz" +hash = "sha256-5Y9ucv5QfjvrHG8ZxypW88XjjjB8XWqxm5Y2pwFgQDA=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cmarker."0.1.4"] +url = "https://packages.typst.org/preview/cmarker-0.1.4.tar.gz" +hash = "sha256-TVbvfBOivVXn9sFMswRptRhNXasTKLy3GtDFGDOhE1A=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cmarker."0.1.3"] +url = "https://packages.typst.org/preview/cmarker-0.1.3.tar.gz" +hash = "sha256-0DdRW8WuX4kLZrPyWZOe7yhm77oX8IwrqrhOkbSjyKc=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cmarker."0.1.2"] +url = "https://packages.typst.org/preview/cmarker-0.1.2.tar.gz" +hash = "sha256-fSKjCjOr8Nr62CYu6osgimjdWVUc/9w6UULicNhElDs=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cmarker."0.1.1"] +url = "https://packages.typst.org/preview/cmarker-0.1.1.tar.gz" +hash = "sha256-snvSN81IPOQ7/x5Ju3l5x4oJZ08b6c/uSE9yJhijkqY=" +typstDeps = [ + "mitex_0_2_4", +] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cmarker."0.1.0"] +url = "https://packages.typst.org/preview/cmarker-0.1.0.tar.gz" +hash = "sha256-CI6suOtBN0klUN5/MUlLnmOq0gTHfOrIMTwfhXxIJHE=" +typstDeps = [] +description = "Transpile CommonMark Markdown to Typst, from within Typst" +license = [ + "MIT", +] +homepage = "https://github.com/SabrinaJewson/cmarker.typ" + +[cob-unofficial."0.1.1"] +url = "https://packages.typst.org/preview/cob-unofficial-0.1.1.tar.gz" +hash = "sha256-nsh2cpLyoXF9cHbTmSi9kPp2eQTG6i8HAOtEduXqToA=" +typstDeps = [ + "hallon_0_1_2", +] +description = "Unofficial CoB (The Company of Biologists) template for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/cob-unofficial" + +[cob-unofficial."0.1.0"] +url = "https://packages.typst.org/preview/cob-unofficial-0.1.0.tar.gz" +hash = "sha256-gIsw3tI15T62pBPUqESOfhr3JyZzZhuTKOcLcxbckKU=" +typstDeps = [ + "hallon_0_1_2", +] +description = "Unofficial CoB (The Company of Biologists) template for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/cob-unofficial" + +[codedis."0.2.0"] +url = "https://packages.typst.org/preview/codedis-0.2.0.tar.gz" +hash = "sha256-9NUrP9sxPjnH5b+5aL6cZyB25XmL/OonS3K0rlGXW0I=" +typstDeps = [] +description = "A simple package for displaying code" +license = [ + "MIT", +] +homepage = "https://github.com/AugustinWinther/codedis" + +[codedis."0.1.0"] +url = "https://packages.typst.org/preview/codedis-0.1.0.tar.gz" +hash = "sha256-SWQUciVv3d7LY65zCYMq88JVnWWJsWV0WhW5wIf+UGw=" +typstDeps = [] +description = "A simple package for displaying code" +license = [ + "MIT", +] +homepage = "https://github.com/AugustinWinther/codedis" + +[codelst."2.0.2"] +url = "https://packages.typst.org/preview/codelst-2.0.2.tar.gz" +hash = "sha256-nroAmdKRY2YqxCC+/E+Ql/FxxFugPjjbOW3BwPBZLVU=" +typstDeps = [ + "showybox_2_0_1", +] +description = "A typst package to render sourcecode" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codelst" + +[codelst."2.0.1"] +url = "https://packages.typst.org/preview/codelst-2.0.1.tar.gz" +hash = "sha256-It8DLusbRfujjaOigBMGc9NAqhe4Px+xuIVgmvF7ijo=" +typstDeps = [] +description = "A typst package to render sourcecode" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codelst" + +[codelst."2.0.0"] +url = "https://packages.typst.org/preview/codelst-2.0.0.tar.gz" +hash = "sha256-TOT4hnyNWet0l8S3ndLevT8jpkz3aIxsJaWilO4c358=" +typstDeps = [] +description = "A typst package to render sourcecode" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codelst" + +[codelst."1.0.0"] +url = "https://packages.typst.org/preview/codelst-1.0.0.tar.gz" +hash = "sha256-yG817BzNcQ1FAWPInAVWXLUY6WlNTLbW+4fStUmtrHI=" +typstDeps = [] +description = "A typst package to render sourcecode" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codelst" + +[codelst."0.0.3"] +url = "https://packages.typst.org/preview/codelst-0.0.3.tar.gz" +hash = "sha256-6h5AbxkzcAWPVFqoMkJsDqNcYjVJUAw5IXMJCW3Z4uY=" +typstDeps = [] +description = "A typst package to render sourcecode" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codelst" + +[codetastic."0.2.2"] +url = "https://packages.typst.org/preview/codetastic-0.2.2.tar.gz" +hash = "sha256-I5UEcPe76Ud5gYVfaTkZBpKYgZFFnIEvyv3Qn8wqe7s=" +typstDeps = [] +description = "Generate all sorts of codes in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codetastic" + +[codetastic."0.2.0"] +url = "https://packages.typst.org/preview/codetastic-0.2.0.tar.gz" +hash = "sha256-FmY6+ZiSIzrxJWQuZa4D0dgO4KSFtBjIcJohubBwG6A=" +typstDeps = [] +description = "Generate all sorts of codes in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codetastic" + +[codetastic."0.1.0"] +url = "https://packages.typst.org/preview/codetastic-0.1.0.tar.gz" +hash = "sha256-f6yhTgLtOfY9zRgP8Gwa+LZpMU4DFTAJDlmquTAt/JA=" +typstDeps = [ + "cetz_0_1_1", +] +description = "Generate all sorts of codes in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-codetastic" + +[codex-woltiensis."0.2.0"] +url = "https://packages.typst.org/preview/codex-woltiensis-0.2.0.tar.gz" +hash = "sha256-GTw6eEMD27YS1vU1AolE7Jax2Dip4fm6m79WmmJXkws=" +typstDeps = [] +description = "Create student song books like the Codex Woltiensis. Full layout of classical songbook" +license = [ + "MIT", +] + +[codex-woltiensis."0.1.0"] +url = "https://packages.typst.org/preview/codex-woltiensis-0.1.0.tar.gz" +hash = "sha256-lNBYW8K+UDCKtLTkjg/WZ0AqGJEB+CKZiZpJVRJGvTE=" +typstDeps = [] +description = "Create student song books like the Codex Woltiensis. Full layout of classical songbook" +license = [ + "MIT", +] + +[codly."1.3.0"] +url = "https://packages.typst.org/preview/codly-1.3.0.tar.gz" +hash = "sha256-rbwurMz3kfF4+MJmpyjLHeW88RPclvqnGRfiTJVm5us=" +typstDeps = [ + "codly_1_2_0", +] +description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly."1.2.0"] +url = "https://packages.typst.org/preview/codly-1.2.0.tar.gz" +hash = "sha256-OCuNt4TV/wfZgt+7LZs3liC5KlpYO//il8yzlX3/Pqs=" +typstDeps = [] +description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly."1.1.1"] +url = "https://packages.typst.org/preview/codly-1.1.1.tar.gz" +hash = "sha256-GhTtNAHOqrJ6supZldy8qfygoGD/XSzl5LlQY03XCn4=" +typstDeps = [] +description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly."1.1.0"] +url = "https://packages.typst.org/preview/codly-1.1.0.tar.gz" +hash = "sha256-R90vm9NZ+iIDljHuSwm8kl9/sw7cZ8FjG8fsbj/aGcs=" +typstDeps = [] +description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly."1.0.0"] +url = "https://packages.typst.org/preview/codly-1.0.0.tar.gz" +hash = "sha256-MVNLsvkMZNKBaJol3WEjmFTK6HXKUarAimdwIkCdrqU=" +typstDeps = [] +description = "Codly is a beautiful code presentation template with many features like smart indentation, line numbering, highlighting, etc" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly."0.2.1"] +url = "https://packages.typst.org/preview/codly-0.2.1.tar.gz" +hash = "sha256-6V3A8MmMzTcClGfHWgEwTIIJ5OY2ZjKXncDMZmAJZFQ=" +typstDeps = [] +description = "Codly is a beautiful code presentation template" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly."0.2.0"] +url = "https://packages.typst.org/preview/codly-0.2.0.tar.gz" +hash = "sha256-AGEE/CuUnHnG0Jqr0YpkpI9cXKbGjn5FBH9Me4xyDSA=" +typstDeps = [] +description = "Codly is a beautiful code presentation template" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly."0.1.0"] +url = "https://packages.typst.org/preview/codly-0.1.0.tar.gz" +hash = "sha256-qbJTEQu2fF/aUR/uNLb7H2vnfdoucPGteNY+i1OTddE=" +typstDeps = [] +description = "Codly is a beautiful code presentation template" +license = [ + "MIT", +] +homepage = "https://github.com/Dherse/codly" + +[codly-languages."0.1.10"] +url = "https://packages.typst.org/preview/codly-languages-0.1.10.tar.gz" +hash = "sha256-aKt44jNF9+ozbfs6QopwapvfUVH4jmyDrb+Mjr+lkZw=" +typstDeps = [] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.9"] +url = "https://packages.typst.org/preview/codly-languages-0.1.9.tar.gz" +hash = "sha256-fzZKPLEPHiwoCpfSmxNNIurf+w3/jhTsXiz8NSM/hyw=" +typstDeps = [] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.8"] +url = "https://packages.typst.org/preview/codly-languages-0.1.8.tar.gz" +hash = "sha256-v+EqrNkSqqqajdKhmO1i8n+UFmgJaZ8d0a1MCxGX5Qk=" +typstDeps = [ + "codly_1_2_0", +] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.7"] +url = "https://packages.typst.org/preview/codly-languages-0.1.7.tar.gz" +hash = "sha256-7xtZ8q93vIvMD7ph8xhnvECgMyG+t2aSRVdZIUIGWMo=" +typstDeps = [ + "codly_1_2_0", +] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.6"] +url = "https://packages.typst.org/preview/codly-languages-0.1.6.tar.gz" +hash = "sha256-F0TK2Dl1YoYQFRz4rHLVSKRw+jFXkIMXeznPaGF4azU=" +typstDeps = [ + "codly_1_2_0", +] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.5"] +url = "https://packages.typst.org/preview/codly-languages-0.1.5.tar.gz" +hash = "sha256-idDeHyyVXJfucLoCngYBkRbrTit6dNYB4MxFCuFAmbg=" +typstDeps = [ + "codly_1_1_1", +] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.4"] +url = "https://packages.typst.org/preview/codly-languages-0.1.4.tar.gz" +hash = "sha256-gMChs/bl30VSTwCbq85/PvSO+z4iadZS7DiCgfjv030=" +typstDeps = [ + "codly_1_1_1", +] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.3"] +url = "https://packages.typst.org/preview/codly-languages-0.1.3.tar.gz" +hash = "sha256-Oj9VpvBMQ3EdnJeG0JUyAoxOr9zkDBlXAwnh/SIS/08=" +typstDeps = [ + "codly_1_1_0", +] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.2"] +url = "https://packages.typst.org/preview/codly-languages-0.1.2.tar.gz" +hash = "sha256-uSZq8oOtTZAHAb7ddib8p2z0JtIIqhtNXMphgUFaBBA=" +typstDeps = [ + "codly_1_0_0", +] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.1"] +url = "https://packages.typst.org/preview/codly-languages-0.1.1.tar.gz" +hash = "sha256-f5d+mf4m+WXDtnGlWU8cSv0e/loJdVf46pIbhzCKUHA=" +typstDeps = [] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[codly-languages."0.1.0"] +url = "https://packages.typst.org/preview/codly-languages-0.1.0.tar.gz" +hash = "sha256-uLEXaWv2McD3ZReaohg1DzjPEqBY3R7pWPHFtlV/1KQ=" +typstDeps = [] +description = "A set of language configurations for use with codly" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[color-my-agda."0.2.0"] +url = "https://packages.typst.org/preview/color-my-agda-0.2.0.tar.gz" +hash = "sha256-us6P+WWFuhLN4kAMMVHfsjkXN+NAQ28DwkKdBDH/ez0=" +typstDeps = [] +description = "Syntax highlight for Agda on Typst" +license = [ + "AGPL-3.0-or-later", + "MIT", +] +homepage = "https://codeberg.org/foxy/color-my-agda" + +[color-my-agda."0.1.0"] +url = "https://packages.typst.org/preview/color-my-agda-0.1.0.tar.gz" +hash = "sha256-szSNzxC9ffgDOPKC7t/1Ry6+8NnPkhCzGw7gOvncfKA=" +typstDeps = [] +description = "Syntax highlight for Agda on Typst" +license = [ + "AGPL-3.0-or-later", +] +homepage = "https://codeberg.org/foxy/color-my-agda" + +[colorful-boxes."1.4.3"] +url = "https://packages.typst.org/preview/colorful-boxes-1.4.3.tar.gz" +hash = "sha256-PVZcbkfRfHU5lgU2K9RNCJqfF+z/qY5JfGget+OTCd4=" +typstDeps = [ + "showybox_2_0_3", +] +description = "Predefined colorful boxes to spice up your document" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[colorful-boxes."1.4.2"] +url = "https://packages.typst.org/preview/colorful-boxes-1.4.2.tar.gz" +hash = "sha256-vX93MQBxkyIzL+lkR+GEEiVQqT7Bxd0RsY66KfRRnHM=" +typstDeps = [ + "showybox_2_0_3", +] +description = "Predefined colorful boxes to spice up your document" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[colorful-boxes."1.4.1"] +url = "https://packages.typst.org/preview/colorful-boxes-1.4.1.tar.gz" +hash = "sha256-XyNK4/et6ZTYMVK7+E/PSspw6csHW9+EQL2piAnjEAo=" +typstDeps = [ + "showybox_2_0_3", +] +description = "Predefined colorful boxes to spice up your document" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[colorful-boxes."1.4.0"] +url = "https://packages.typst.org/preview/colorful-boxes-1.4.0.tar.gz" +hash = "sha256-Zxl0BNtHsNgfiqMjH1SptDtklVSY4Lee6gv0Z1SBSpk=" +typstDeps = [ + "showybox_2_0_3", +] +description = "Predefined colorful boxes to spice up your document" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[colorful-boxes."1.3.1"] +url = "https://packages.typst.org/preview/colorful-boxes-1.3.1.tar.gz" +hash = "sha256-3MM5jphAEjcPmQm0lV86FCcEgd6l6IpdGtqLtPwiDno=" +typstDeps = [] +description = "Predefined colorful boxes to spice up your document" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[colorful-boxes."1.2.0"] +url = "https://packages.typst.org/preview/colorful-boxes-1.2.0.tar.gz" +hash = "sha256-b4WV6MoyAm/X+DP8I0ffqMrZmXUOUKJD96wNL7TOGYI=" +typstDeps = [ + "codetastic_0_1_0", +] +description = "Predefined colorful boxes" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[colorful-boxes."1.1.0"] +url = "https://packages.typst.org/preview/colorful-boxes-1.1.0.tar.gz" +hash = "sha256-nO3b//yLPuuUn1YD+BlJj8yiQ1bAjQGVoOUUJhwwrSU=" +typstDeps = [] +description = "Predefined colorful boxes" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[colorful-boxes."1.0.0"] +url = "https://packages.typst.org/preview/colorful-boxes-1.0.0.tar.gz" +hash = "sha256-WPdM81631SHwbrmnB55TIJgObvMDpBROXMxThID27Zs=" +typstDeps = [] +description = "Predefined colorful boxes" +license = [ + "MIT", +] +homepage = "https://github.com/lkoehl/typst-boxes" + +[combo."0.1.0"] +url = "https://packages.typst.org/preview/combo-0.1.0.tar.gz" +hash = "sha256-1UDpthlcvojSErLkckLjfRJndNvsQ1zsQcPyH/Q1eu8=" +typstDeps = [ + "mantys_1_0_2", + "tidy_0_4_3", +] +description = "An importable library for common combinatorial operations" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Combo" + +[community-ostfalia-thesis."0.1.0"] +url = "https://packages.typst.org/preview/community-ostfalia-thesis-0.1.0.tar.gz" +hash = "sha256-em8AmALMOvMv3x/XdyTTWOjWAGpwOjlfTbE9ZuQTi1c=" +typstDeps = [ + "cheq_0_3_0", + "codelst_2_0_2", + "codly_1_3_0", + "codly-languages_0_1_8", + "fractusist_0_3_2", + "glossarium_0_5_9", + "icu-datetime_0_2_0", + "muchpdf_0_1_1", + "wordometer_0_1_5", +] +description = "A thesis template for a bachelors thesis at the Ostfalia University of Applied Sciences, faculty informatics" +license = [ + "MIT", +] +homepage = "https://github.com/shonk-software/community-ostfalia-thesis" + +[commute."0.3.0"] +url = "https://packages.typst.org/preview/commute-0.3.0.tar.gz" +hash = "sha256-HmdNs0aGWjv76Fa6HvSc6xijfKIyQx/75TT9Ui5Uo04=" +typstDeps = [] +description = "A proof of concept library for commutative diagrams" +license = [ + "MIT", +] +homepage = "https://gitlab.com/giacomogallina/commute" + +[commute."0.2.0"] +url = "https://packages.typst.org/preview/commute-0.2.0.tar.gz" +hash = "sha256-TpwdsVsig+65Z9KGMzAdcVxRZVmBNNTZug25l30hsQQ=" +typstDeps = [] +description = "A proof of concept library for commutative diagrams" +license = [ + "MIT", +] +homepage = "https://gitlab.com/giacomogallina/commute" + +[commute."0.1.0"] +url = "https://packages.typst.org/preview/commute-0.1.0.tar.gz" +hash = "sha256-jBjZ28kFBGbjXVTVlxjJM98kIwk0ws1btf4DzBSJdpc=" +typstDeps = [] +description = "A proof of concept library for commutative diagrams" +license = [ + "MIT", +] +homepage = "https://gitlab.com/giacomogallina/commute" + +[conchord."0.4.0"] +url = "https://packages.typst.org/preview/conchord-0.4.0.tar.gz" +hash = "sha256-4q/sHHFsy5zWHEumQRr8chYaONCmAhVZbznOQxrr7TE=" +typstDeps = [ + "cetz_0_4_1", + "chordx_0_6_0", + "tidy_0_4_3", +] +description = "Easily write lyrics with chords, generate chord diagrams by chord names and draw tabs" +license = [ + "MIT", +] +homepage = "https://github.com/sitandr/conchord" + +[conchord."0.3.0"] +url = "https://packages.typst.org/preview/conchord-0.3.0.tar.gz" +hash = "sha256-0hBsYDHBywChgFvPj4blEYfWTEYeDIFhtOB0FW9M53c=" +typstDeps = [ + "cetz_0_3_1", + "chordx_0_5_0", +] +description = "Easily write lyrics with chords, generate chord diagrams by chord names and draw tabs" +license = [ + "MIT", +] +homepage = "https://github.com/sitandr/conchord" + +[conchord."0.2.0"] +url = "https://packages.typst.org/preview/conchord-0.2.0.tar.gz" +hash = "sha256-X/wJUqprfU6gl13lNcmJedqMcPW33bc/gGwB9ftL99s=" +typstDeps = [ + "cetz_0_2_0", + "chordx_0_2_0", +] +description = "Easily write lyrics with chords, generate chord diagrams and tabs" +license = [ + "MIT", +] +homepage = "https://github.com/sitandr/conchord" + +[conchord."0.1.1"] +url = "https://packages.typst.org/preview/conchord-0.1.1.tar.gz" +hash = "sha256-4iNh95JtAslpCLelBR1E72Iw0B2FXsDbf4p0wTY8Q2Y=" +typstDeps = [ + "cetz_0_1_1", + "chordx_0_2_0", +] +description = "Easily write lyrics with chords, generate chord diagrams and tabs" +license = [ + "MIT", +] +homepage = "https://github.com/sitandr/conchord" + +[conchord."0.1.0"] +url = "https://packages.typst.org/preview/conchord-0.1.0.tar.gz" +hash = "sha256-82ZSrqgTY9Qi6j2WrhPEVHC9prGsa5m3kDqe8Hp8HhM=" +typstDeps = [ + "cetz_0_0_1", + "chordx_0_1_0", +] +description = "Easily write lyrics with chords and generate colorful chord diagrams" +license = [ + "MIT", +] +homepage = "https://github.com/sitandr/conchord" + +[confy."0.1.0"] +url = "https://packages.typst.org/preview/confy-0.1.0.tar.gz" +hash = "sha256-YXaqkbSERTy8MXGWNSMFHloL5k1zdgz+5Kuss3vmJNY=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Reusable confusion matrix renderer built on CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/ODAncona/confusion-matrix" + +[conjak."0.2.3"] +url = "https://packages.typst.org/preview/conjak-0.2.3.tar.gz" +hash = "sha256-fkmBeHJwFg9GFov7/H3bco1UqNMZxq4sTkt9Ovx7MLE=" +typstDeps = [] +description = "Format numbers in ConJaK conventions" +license = [ + "MIT", +] +homepage = "https://github.com/wensimehrp/conjak" + +[consketcher."0.1.0"] +url = "https://packages.typst.org/preview/consketcher-0.1.0.tar.gz" +hash = "sha256-vKgtYoXFkZcAq4n8sGhTP+WR0o+/DAorlttKMwHObZI=" +typstDeps = [ + "fletcher_0_5_7", +] +description = "Draws control blocks using fletcher and CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-consketcher" + +[cram-snap."0.2.2"] +url = "https://packages.typst.org/preview/cram-snap-0.2.2.tar.gz" +hash = "sha256-jnIWn0RjxOFLvh0TNJ/GBDr8YJGCq7gV6RCgFw3uZJY=" +typstDeps = [] +description = "Typst template for creating cheatsheets" +license = [ + "MIT", +] +homepage = "https://github.com/kamack38/cram-snap" + +[cram-snap."0.2.1"] +url = "https://packages.typst.org/preview/cram-snap-0.2.1.tar.gz" +hash = "sha256-pBqol5HFpbX08rq/Lbq+4B0qYw/km4Lpl98nQoc+QWs=" +typstDeps = [] +description = "Typst template for creating cheatsheets" +license = [ + "MIT", +] +homepage = "https://github.com/kamack38/cram-snap" + +[cram-snap."0.2.0"] +url = "https://packages.typst.org/preview/cram-snap-0.2.0.tar.gz" +hash = "sha256-jLUE9/SFZ4MAKVnyZX7ZjCNaebFsM2+cj3ga/3qWDrI=" +typstDeps = [] +description = "Typst template for creating cheatsheets" +license = [ + "MIT", +] +homepage = "https://github.com/kamack38/cram-snap" + +[cram-snap."0.1.0"] +url = "https://packages.typst.org/preview/cram-snap-0.1.0.tar.gz" +hash = "sha256-Q02r2u92wcVl+H82ViAgvnCJ9FUxFQi6kw3y4RRTAfE=" +typstDeps = [] +description = "Typst template for creating cheatsheets" +license = [ + "MIT", +] +homepage = "https://github.com/kamack38/cram-snap" + +[cross-circle."1.0.0"] +url = "https://packages.typst.org/preview/cross-circle-1.0.0.tar.gz" +hash = "sha256-6F/9XU2w4VXsBjkeaiIkmPi9Qnifuy/q/vC5tWbfqCU=" +typstDeps = [] +description = "A rather convoluted implementation of cross'n'circle (aka. tic tac toe). Customize it to your hearts content" +license = [ + "EUPL-1.2", +] +homepage = "https://codeberg.org/joelvonrotz/typst-cross-circle" + +[crossregex."0.2.0"] +url = "https://packages.typst.org/preview/crossregex-0.2.0.tar.gz" +hash = "sha256-5kmjwcOTuNgzuPLBNIQiH8H+81zibkW4v3i7yaCMJIo=" +typstDeps = [] +description = "A crossword-like regex game written in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/QuadnucYard/crossregex-typ" + +[crossregex."0.1.0"] +url = "https://packages.typst.org/preview/crossregex-0.1.0.tar.gz" +hash = "sha256-d47bh2MHQTnTznRvnR4iTo6w8VMXMyy8HvbcJ8IrcdY=" +typstDeps = [] +description = "A crossword-like regex game written in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/QuadnucYard/crossregex-typ" + +[crudo."0.1.1"] +url = "https://packages.typst.org/preview/crudo-0.1.1.tar.gz" +hash = "sha256-9FOCJzLTJYSoQT0d0kumxQIFEMWse+aCSBi7rwI/2Ns=" +typstDeps = [] +description = "Take slices from raw blocks" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-crudo" + +[crudo."0.1.0"] +url = "https://packages.typst.org/preview/crudo-0.1.0.tar.gz" +hash = "sha256-hXrRakGAv7tc+XKQTiwQd9bbxiyc+SOH8fjM+iftffE=" +typstDeps = [ + "codly_0_2_1", + "crudo_0_0_1", + "tidy_0_3_0", +] +description = "Take slices from raw blocks" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-crudo" + +[ctheorems."1.1.3"] +url = "https://packages.typst.org/preview/ctheorems-1.1.3.tar.gz" +hash = "sha256-34ri4aotL6PUrtAXaPhMb3arOGVq76hijHfJMgOyeY8=" +typstDeps = [] +description = "Numbered theorem environments for typst" +license = [ + "MIT", +] +homepage = "https://github.com/sahasatvik/typst-theorems" + +[ctheorems."1.1.2"] +url = "https://packages.typst.org/preview/ctheorems-1.1.2.tar.gz" +hash = "sha256-q/v/9tZ4ak43N3AKrwYdAwlX5sFCXSFfezcMqLBwUXk=" +typstDeps = [] +description = "Numbered theorem environments for typst" +license = [ + "MIT", +] +homepage = "https://github.com/sahasatvik/typst-theorems" + +[ctheorems."1.1.1"] +url = "https://packages.typst.org/preview/ctheorems-1.1.1.tar.gz" +hash = "sha256-vejSEdNXDhIv63qxYJSFkSA5Bgsjf5ioijS9N4c6CRk=" +typstDeps = [] +description = "Numbered theorem environments for typst" +license = [ + "MIT", +] +homepage = "https://github.com/sahasatvik/typst-theorems" + +[ctheorems."1.1.0"] +url = "https://packages.typst.org/preview/ctheorems-1.1.0.tar.gz" +hash = "sha256-wr9DPKJfOSaauhgm6/+N8wtDbCVDyYx1v4zz6S7jOIY=" +typstDeps = [] +description = "Numbered theorem environments for typst" +license = [ + "MIT", +] +homepage = "https://github.com/sahasatvik/typst-theorems" + +[ctheorems."1.0.0"] +url = "https://packages.typst.org/preview/ctheorems-1.0.0.tar.gz" +hash = "sha256-O+hhyIo1YT0dsRI/vxThCP0dcxGkmiP7n9hV/FkHm2k=" +typstDeps = [] +description = "Numbered theorem environments for typst" +license = [ + "MIT", +] +homepage = "https://github.com/sahasatvik/typst-theorems" + +[ctheorems."0.1.0"] +url = "https://packages.typst.org/preview/ctheorems-0.1.0.tar.gz" +hash = "sha256-H8s5x8SHKT83w0W7fVDiajg4CY7h4AiVgZdqm6FwEFQ=" +typstDeps = [ + "ctheorems_1_0_0", +] +description = "Theorem library based on (and compatible) with the classic typst-theorem module" +license = [ + "MIT", +] +homepage = "https://github.com/DVDTSB/ctheorems" + +[ctxjs."0.3.2"] +url = "https://packages.typst.org/preview/ctxjs-0.3.2.tar.gz" +hash = "sha256-vkyxCsaEGn8Myhfzk4YGqZxQ9JbBbXxb1S2WaElIW/E=" +typstDeps = [] +description = "Run javascript in contexts" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-ctxjs-package" + +[ctxjs."0.3.1"] +url = "https://packages.typst.org/preview/ctxjs-0.3.1.tar.gz" +hash = "sha256-hozwjG5V7TEOouUe6JgpjEVmxSiImaTIm3M0NNVuj9E=" +typstDeps = [] +description = "Run javascript in contexts" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-ctxjs-package" + +[ctxjs."0.3.0"] +url = "https://packages.typst.org/preview/ctxjs-0.3.0.tar.gz" +hash = "sha256-6FN8Wv7ZAagTMfoMhDpYIEz/n8iMD1cerIPQ0NbG5L4=" +typstDeps = [] +description = "Run javascript in contexts" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-ctxjs-package" + +[ctxjs."0.2.0"] +url = "https://packages.typst.org/preview/ctxjs-0.2.0.tar.gz" +hash = "sha256-osHXK/USNMjEiydPi9UKCzyoFaDcB7WuJ3H9lyjsiCQ=" +typstDeps = [] +description = "Run javascript in contexts" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-ctxjs-package" + +[ctxjs."0.1.1"] +url = "https://packages.typst.org/preview/ctxjs-0.1.1.tar.gz" +hash = "sha256-ZyNpJzHRjAxHJ8kXEXQX26WbDVTdpZqAZiUokdBlfWM=" +typstDeps = [] +description = "Run javascript in contexts" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-ctxjs-package" + +[ctxjs."0.1.0"] +url = "https://packages.typst.org/preview/ctxjs-0.1.0.tar.gz" +hash = "sha256-AGljjjK3KiWiG+JG2+0cBURJncUrLIqDvGsPDqA+HwY=" +typstDeps = [] +description = "Run javascript in contexts" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-ctxjs-package" + +[ctyp."0.3.0"] +url = "https://packages.typst.org/preview/ctyp-0.3.0.tar.gz" +hash = "sha256-sC9FbU5NTC+E9tGsEs4hKq7HW8IrT4gGOTl+hNaAnL0=" +typstDeps = [ + "elembic_1_1_1", +] +description = "A Typst package for Chinese typography" +license = [ + "MIT", +] +homepage = "https://github.com/hpdell/ctyp" + +[ctyp."0.2.0"] +url = "https://packages.typst.org/preview/ctyp-0.2.0.tar.gz" +hash = "sha256-QqO/mQ3QIAMFbcwpxm73D4LZIb2jOhGGJSAc9YropD0=" +typstDeps = [] +description = "A Typst package for Chinese typography" +license = [ + "MIT", +] +homepage = "https://github.com/hpdell/ctyp" + +[ctyp."0.1.1"] +url = "https://packages.typst.org/preview/ctyp-0.1.1.tar.gz" +hash = "sha256-y4aB+s3RsqfK46lhgnf6DpKwsNzt4FFdsBEdud86GqI=" +typstDeps = [] +description = "A Typst package for Chinese typography" +license = [ + "MIT", +] +homepage = "https://github.com/hpdell/ctyp" + +[ctyp."0.1.0"] +url = "https://packages.typst.org/preview/ctyp-0.1.0.tar.gz" +hash = "sha256-sXVnCvnr9KSPN2RXQF75tF9ZUDwTK6Hb6ht/ZOgWkIs=" +typstDeps = [ + "cjk-unbreak_0_1_1", +] +description = "A Typst package for Chinese typography" +license = [ + "MIT", +] +homepage = "https://github.com/hpdell/ctyp" + +[cumcm-muban."0.4.0"] +url = "https://packages.typst.org/preview/cumcm-muban-0.4.0.tar.gz" +hash = "sha256-+fYW/GtAfmYMg7cO9I7qrTEVqWcOu+EFl5I4w2IOvSI=" +typstDeps = [ + "ctheorems_1_1_3", + "cumcm-muban_0_3_0", +] +description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/a-kkiri/CUMCM-typst-template" + +[cumcm-muban."0.3.0"] +url = "https://packages.typst.org/preview/cumcm-muban-0.3.0.tar.gz" +hash = "sha256-C96mN6opUM3+w4g9iQBnVCuIHROfUvTU6vt5PDSLLbQ=" +typstDeps = [ + "ctheorems_1_1_2", +] +description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/a-kkiri/CUMCM-typst-template" + +[cumcm-muban."0.2.0"] +url = "https://packages.typst.org/preview/cumcm-muban-0.2.0.tar.gz" +hash = "sha256-RVIbpT02Bj/fi3MuU7B/WrCrl1GBQWecesx+JAy8Zb4=" +typstDeps = [ + "ctheorems_1_1_2", + "cumcm-muban_0_1_0", +] +description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/a-kkiri/CUMCM-typst-template" + +[cumcm-muban."0.1.0"] +url = "https://packages.typst.org/preview/cumcm-muban-0.1.0.tar.gz" +hash = "sha256-ddvdry232tP5iSc2gZ2/HrTtSEA1dIlCi+/e2ymKACw=" +typstDeps = [ + "ctheorems_1_1_2", +] +description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/a-kkiri/CUMCM-typst-template" + +[curli."0.1.0"] +url = "https://packages.typst.org/preview/curli-0.1.0.tar.gz" +hash = "sha256-4keObGQlLWVk5gX862jIzNrUwC/ML5lKNuzsGjzcaY8=" +typstDeps = [] +description = "Cursed ligatures for everyone" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/curli" + +[curriculo-acad."0.1.0"] +url = "https://packages.typst.org/preview/curriculo-acad-0.1.0.tar.gz" +hash = "sha256-P2Ab3akFYBGq+STjUdKI+hEBnU/jInjskhkKObG4c0Y=" +typstDeps = [ + "datify_0_1_3", +] +description = "Creating a CV from your LATTES entries" +license = [ + "MIT", +] +homepage = "https://github.com/philkleer/create-lattes-cv" + +[curryst."0.6.0"] +url = "https://packages.typst.org/preview/curryst-0.6.0.tar.gz" +hash = "sha256-GrUcjWnjNiMW9mPH+T0CbDYwwk353u87DTszznItDY8=" +typstDeps = [] +description = "Typeset trees of inference rules" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/curryst" + +[curryst."0.5.1"] +url = "https://packages.typst.org/preview/curryst-0.5.1.tar.gz" +hash = "sha256-aDSFHAGqdWYTQzUuwgVtDaprCsFsT+7zt28abBm4QDo=" +typstDeps = [] +description = "Typeset trees of inference rules" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/curryst" + +[curryst."0.5.0"] +url = "https://packages.typst.org/preview/curryst-0.5.0.tar.gz" +hash = "sha256-WBGZ8nmCrB8iihmkjzdrA7l2U3ff3TKpvQh/XAmTE8Y=" +typstDeps = [] +description = "Typeset trees of inference rules" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/curryst" + +[curryst."0.4.0"] +url = "https://packages.typst.org/preview/curryst-0.4.0.tar.gz" +hash = "sha256-qDh32adcbMjXJqE2s9PUtvkTXwclIuyQZcQTtkbFOKs=" +typstDeps = [] +description = "Typeset trees of inference rules" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/curryst" + +[curryst."0.3.0"] +url = "https://packages.typst.org/preview/curryst-0.3.0.tar.gz" +hash = "sha256-jrvI1D5ZfXKyQn4vrbcNf6joMX4BSphNY0ZOUkDEClM=" +typstDeps = [] +description = "Typeset trees of inference rules" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/curryst" + +[curryst."0.2.0"] +url = "https://packages.typst.org/preview/curryst-0.2.0.tar.gz" +hash = "sha256-l6U/J/Xud5F6QZI+iUGp0nsNtSdTT8H0KS15VwS3XgY=" +typstDeps = [] +description = "Typeset trees of inference rules" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/curryst" + +[curryst."0.1.1"] +url = "https://packages.typst.org/preview/curryst-0.1.1.tar.gz" +hash = "sha256-shGy6b+1W497huOXAHw6eFTHbx6nSLD9b1TzsRe2rNs=" +typstDeps = [] +description = "Typesetting of trees of inference rules in Typst" +license = [ + "MIT", +] + +[curryst."0.1.0"] +url = "https://packages.typst.org/preview/curryst-0.1.0.tar.gz" +hash = "sha256-gHxYD/5KxbF7cYwQ99stjh3oWZCRIHmoyACMhyWGpv0=" +typstDeps = [] +description = "Typesetting of trees of inference rules in Typst" +license = [ + "MIT", +] + +[curvly."0.1.0"] +url = "https://packages.typst.org/preview/curvly-0.1.0.tar.gz" +hash = "sha256-jO69yZaJiTILZyKnR+iCaHzhl8CIBp2iwCC2XzIrH/g=" +typstDeps = [] +description = "Typst package for curving text on an arc or circle" +license = [ + "MIT", +] +homepage = "https://github.com/cskeeters/typst-curvly" + +[cuti."0.4.0"] +url = "https://packages.typst.org/preview/cuti-0.4.0.tar.gz" +hash = "sha256-vAEnoKu6YwHa/YUAkK3DpuuseIU7qrHSEdhSj14a18Y=" +typstDeps = [] +description = "Easily simulate (fake) bold, italic and small capital characters" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/cuti" + +[cuti."0.3.0"] +url = "https://packages.typst.org/preview/cuti-0.3.0.tar.gz" +hash = "sha256-kjQ0B3nCoPULFU7y3xcXdtry+O5utn2qszw7eiNb/QM=" +typstDeps = [] +description = "Easily simulate (fake) bold, italic and small capital characters" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/cuti" + +[cuti."0.2.1"] +url = "https://packages.typst.org/preview/cuti-0.2.1.tar.gz" +hash = "sha256-NCmPXM1eD97k/5TgVuLC7zVv/0jIQ1lXxbwnmzA2dEI=" +typstDeps = [ + "sourcerer_0_2_1", +] +description = "Easily simulate (fake) bold and italic characters" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/cuti" + +[cuti."0.2.0"] +url = "https://packages.typst.org/preview/cuti-0.2.0.tar.gz" +hash = "sha256-/2GkJVTGVy90KecQ7pkvwT6F5txgE8Ym79kxNTvvyw4=" +typstDeps = [ + "sourcerer_0_2_1", +] +description = "Easily simulate (fake) bold and italic characters" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/cuti" + +[cuti."0.1.0"] +url = "https://packages.typst.org/preview/cuti-0.1.0.tar.gz" +hash = "sha256-FZpGfKuM2cHulPheE2Ubi+u+jKAHNmKRb9bvByM60TA=" +typstDeps = [ + "sourcerer_0_2_1", +] +description = "Easily simulate (fake) bold characters" +license = [ + "MIT", +] +homepage = "https://github.com/csimide/cuti" + +[cv-soft-and-hard."0.1.0"] +url = "https://packages.typst.org/preview/cv-soft-and-hard-0.1.0.tar.gz" +hash = "sha256-mmOJjM+f4EfATDnGN7DgviAZkfJ4r+2XZHlr2GdSYGk=" +typstDeps = [] +description = "Clean CV Template" +license = [ + "MIT", +] +homepage = "https://github.com/jonaspleyer/cv-soft-and-hard" + +[cvssc."0.2.1"] +url = "https://packages.typst.org/preview/cvssc-0.2.1.tar.gz" +hash = "sha256-Mu3oPeZx49Sx6Kz3F80lYyy4EDWCMVmHtCdYXW6C5xs=" +typstDeps = [] +description = "Common Vulnerability Scoring System (CVSS) calculator library for Typst. Supports CVSS 2.0, 3.0, 3.1, and 4.0" +license = [ + "MIT", +] +homepage = "https://github.com/drakeaxelrod/cvssc" + +[cvssc."0.2.0"] +url = "https://packages.typst.org/preview/cvssc-0.2.0.tar.gz" +hash = "sha256-rCaMk5q5SPBV0uUcHgACdYFliF+husT2jKzifmVP758=" +typstDeps = [] +description = "Common Vulnerability Scoring System (CVSS) calculator library for Typst. Supports CVSS 2.0, 3.0, 3.1, and 4.0" +license = [ + "MIT", +] +homepage = "https://github.com/drakeaxelrod/cvssc" + +[cvssc."0.1.1"] +url = "https://packages.typst.org/preview/cvssc-0.1.1.tar.gz" +hash = "sha256-COZzBQ2MqLGKlUlXweYpkERIzC3OE4OUeKNKntQhPpg=" +typstDeps = [ + "codly_0_1_0", + "tidy_0_3_0", +] +description = "Common Vulnerability Scoring System Calculator" +license = [ + "MIT", +] + +[cvssc."0.1.0"] +url = "https://packages.typst.org/preview/cvssc-0.1.0.tar.gz" +hash = "sha256-pCeczpz4B70NefSn79TL/zFjwZG5A+W2QsYedUjvg5o=" +typstDeps = [ + "codly_0_1_0", + "tidy_0_3_0", +] +description = "Common Vulnerability Scoring System Calculator" +license = [ + "MIT", +] + +[cyberschool-errorteaplate."0.1.12"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.12.tar.gz" +hash = "sha256-w2wTPyhs9NmvF7t/uNDr/rmbXLacThyB5cXBwBw1KB0=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.11"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.11.tar.gz" +hash = "sha256-J06OIEFnyDkb3JDt1sFOTrThqHGnQhwbw2JYFKl2Wdw=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.10"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.10.tar.gz" +hash = "sha256-Rwhv9Nmb+/wwob2VJjCaBjVV3MKthnKI70Xj36/tcFc=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.9"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.9.tar.gz" +hash = "sha256-mjBkQnccyBMI8F3/KHQIni4xXgihLJlde4a4Ie65eQM=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.8"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.8.tar.gz" +hash = "sha256-OWkBfbrYXy297UCChk+kqsVZex/+sP5OmpvE1XSbjfw=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.7"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.7.tar.gz" +hash = "sha256-StXx82ER7YFKq74zXl3EknpVIya3oC/xgvPIsW7Gp3Y=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.6"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.6.tar.gz" +hash = "sha256-PbIiyqQTw10S8BHB8eY/G3e8D0282vHImiR8YWzli54=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.5"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.5.tar.gz" +hash = "sha256-byWzwRm13Vqd1c/bJ/1yZdm1dw+wfg9QwIpTOZSBuJg=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.4"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.4.tar.gz" +hash = "sha256-BHJNjdvj53BHDhvqjkSRk0bLBUzlbYazd+ZXzgj0FSo=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.3"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.3.tar.gz" +hash = "sha256-k/zpxcsIv47M6YPy5eNl2YVh/RicIVJH595xbzSicqY=" +typstDeps = [ + "codly_1_2_0", + "codly-languages_0_1_1", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[dashing-dept-news."0.1.1"] +url = "https://packages.typst.org/preview/dashing-dept-news-0.1.1.tar.gz" +hash = "sha256-lV1llDhUz5VkUppRdrVqWHKxjcaX4BP0dtGKCDQ5hfQ=" +typstDeps = [] +description = "Share the news with bold graphic design and a modern layout" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[dashing-dept-news."0.1.0"] +url = "https://packages.typst.org/preview/dashing-dept-news-0.1.0.tar.gz" +hash = "sha256-MYvPfCYTQ6YNqbVuS5VAcnHHIk5WlucZDEWPgUy7gn0=" +typstDeps = [] +description = "Share the news with bold graphic design and a modern layout" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[dashy-todo."0.1.3"] +url = "https://packages.typst.org/preview/dashy-todo-0.1.3.tar.gz" +hash = "sha256-qLB+qdS7FiREB2lI8hw8kFkNkFFWrd1BFkAWdoAR53c=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.1.2"] +url = "https://packages.typst.org/preview/dashy-todo-0.1.2.tar.gz" +hash = "sha256-tOGjesNbx7KVfv/MWYgakDVfT/xlVizxc2lPhrHDt3c=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.1.1"] +url = "https://packages.typst.org/preview/dashy-todo-0.1.1.tar.gz" +hash = "sha256-cWoPd5ok4LktN3J3O6d/nw37pMtERfoWb2y7QmTvyKg=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.1.0"] +url = "https://packages.typst.org/preview/dashy-todo-0.1.0.tar.gz" +hash = "sha256-RVLDYHGVXzd+L3gm6dKbkcUfQnX6EcB+wVPXm6cszno=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.0.3"] +url = "https://packages.typst.org/preview/dashy-todo-0.0.3.tar.gz" +hash = "sha256-PijpOpLWjVAvoabzsxNk9gZVMbgLPVgFUJ2LncJqrHA=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.0.2"] +url = "https://packages.typst.org/preview/dashy-todo-0.0.2.tar.gz" +hash = "sha256-asHQ/VkGl1whCYh+QhVN1PNtzvgxoj2iUaL0JJmkmNA=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.0.1"] +url = "https://packages.typst.org/preview/dashy-todo-0.0.1.tar.gz" +hash = "sha256-AnuEVa8LWu5YnuueGtrzobNfoy5uywMpNcpq6IhXfaU=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[datify."1.0.0"] +url = "https://packages.typst.org/preview/datify-1.0.0.tar.gz" +hash = "sha256-bzh3ODfa7AaZedQplm4oObKcyt13pHhrnVHGtUW260E=" +typstDeps = [ + "datify-core_1_0_0", +] +description = "Datify is a Typst package for flexible, locale-aware date formatting. It leverages datify-core for internationalization and supports CLDR-style date patterns" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify" + +[datify."0.1.4"] +url = "https://packages.typst.org/preview/datify-0.1.4.tar.gz" +hash = "sha256-L4Ke+165ukcmBoWilOeBm0Jvx2vtbMLH+uyUxFyvdF0=" +typstDeps = [] +description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify" + +[datify."0.1.3"] +url = "https://packages.typst.org/preview/datify-0.1.3.tar.gz" +hash = "sha256-mKkhBH3GiqoQ39/LcWOCrzPqZlaT1JUbXbmCST7f9N4=" +typstDeps = [] +description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify" + +[datify."0.1.2"] +url = "https://packages.typst.org/preview/datify-0.1.2.tar.gz" +hash = "sha256-V2Bx0riDDMf4oWE3TbpwH6g95E/7ZeeiZB2ijVlVoWo=" +typstDeps = [] +description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify" + +[datify."0.1.1"] +url = "https://packages.typst.org/preview/datify-0.1.1.tar.gz" +hash = "sha256-UXiZ9Rkwx5K3byK23KRkqN1sTx9V0Cutwz6ZeaO3D/A=" +typstDeps = [] +description = "Datify is a simple date package that allows users to format dates in new ways and addresses the issue of lacking date formats in different languages" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify" + +[datify-core."1.0.0"] +url = "https://packages.typst.org/preview/datify-core-1.0.0.tar.gz" +hash = "sha256-esUWhE9bQZiEoM+FBkEypMpIS2Jwg5GvOHElfXo+P8U=" +typstDeps = [] +description = "Localization data and date formatting patterns for Typst, powered by CLDR. Backend for Datify, reusable in any Typst project" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify-core" + +[deal-us-tfc-template."1.0.0"] +url = "https://packages.typst.org/preview/deal-us-tfc-template-1.0.0.tar.gz" +hash = "sha256-pX7LRdIKJqhMgdPYOg/s0LGGfAe8NSNXa71NsLdbiMY=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_1", + "outrageous_0_4_0", +] +description = "Template for TFCs at ETSII directed by the DEAL group" +license = [ + "MIT-0", +] + +[decasify."0.11.1"] +url = "https://packages.typst.org/preview/decasify-0.11.1.tar.gz" +hash = "sha256-t2YBUtR4NNeev/uzgS6T7wk8hgvu8FYn2GLi0RY02GI=" +typstDeps = [] +description = "Locale and style-guide aware text casing functions for natural language prose" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/alerque/decasify" + +[decasify."0.11.0"] +url = "https://packages.typst.org/preview/decasify-0.11.0.tar.gz" +hash = "sha256-gu7j+XnbQbrIS1XVa1HHt3wWOiN8H/IxCLXML8Gy1RI=" +typstDeps = [] +description = "Locale and style-guide aware text casing functions for natural language prose" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/alerque/decasify" + +[decasify."0.10.2"] +url = "https://packages.typst.org/preview/decasify-0.10.2.tar.gz" +hash = "sha256-w3NTlt1CsroFqkcuTRyEAz7MQYIPTTz1mZpLyNw6Jq4=" +typstDeps = [] +description = "Locale and style-guide aware text casing functions for natural language prose" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/alerque/decasify" + +[decasify."0.10.1"] +url = "https://packages.typst.org/preview/decasify-0.10.1.tar.gz" +hash = "sha256-qW5gjrNSaK8xU9JIs1NxE2Bj1yB7g1WyHTR1bc3FlR0=" +typstDeps = [] +description = "Locale and style-guide aware text casing functions for natural language prose" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/alerque/decasify" + +[decasify."0.9.1"] +url = "https://packages.typst.org/preview/decasify-0.9.1.tar.gz" +hash = "sha256-mBbWqrusIThZ5aQdoPeftUyoIJYD2ygZz8Y1kk3nNX0=" +typstDeps = [] +description = "Locale and style-guide aware text casing functions for natural language prose" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/alerque/decasify" + +[decasify."0.9.0"] +url = "https://packages.typst.org/preview/decasify-0.9.0.tar.gz" +hash = "sha256-Kyv7YP2PSIrvmHE8aOiYsvF611806ijVQ4Iw9yteOfQ=" +typstDeps = [] +description = "Locale and style-guide aware text casing functions for natural language prose" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/alerque/decasify" + +[deckz."0.3.1"] +url = "https://packages.typst.org/preview/deckz-0.3.1.tar.gz" +hash = "sha256-JokybXRtOLS6KcZ87nthnWGTialA5Vufd0i15zLMeFQ=" +typstDeps = [ + "cetz_0_4_1", + "digestify_0_1_0", + "linguify_0_4_2", + "mantys_1_0_2", + "suiji_0_4_0", + "tidy_0_4_3", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + +[deckz."0.3.0"] +url = "https://packages.typst.org/preview/deckz-0.3.0.tar.gz" +hash = "sha256-NlVc+NYWtf/QEXiSfoxi3sHilzIcNpFsh5+ZUqIusmQ=" +typstDeps = [ + "cetz_0_4_1", + "digestify_0_1_0", + "linguify_0_4_2", + "mantys_1_0_2", + "suiji_0_4_0", + "tidy_0_4_3", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + +[deckz."0.2.0"] +url = "https://packages.typst.org/preview/deckz-0.2.0.tar.gz" +hash = "sha256-wGTOfUt8QFYbVAuw5Svlv0K8DXjixFzVd8Y/UOxW84A=" +typstDeps = [ + "cetz_0_4_1", + "linguify_0_4_2", + "mantys_1_0_2", + "suiji_0_4_0", + "tidy_0_4_3", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + +[deckz."0.1.0"] +url = "https://packages.typst.org/preview/deckz-0.1.0.tar.gz" +hash = "sha256-bw9RqJaWQmhlLo1KN+tgfdUT6hOhKMLFro5Kri34D1E=" +typstDeps = [ + "cetz_0_4_0", + "suiji_0_4_0", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + +[defined."0.1.0"] +url = "https://packages.typst.org/preview/defined-0.1.0.tar.gz" +hash = "sha256-4ON8im4nwdi8cydBmnwYRY7d8Qovu+X2+63G+Z8aEH4=" +typstDeps = [ + "valkyrie_0_2_1", +] +description = "typst package to make conditional compilation easily" +license = [ + "Unlicense", +] +homepage = "https://github.com/profetia/defined" + +[definitely-not-isec-slides."1.0.1"] +url = "https://packages.typst.org/preview/definitely-not-isec-slides-1.0.1.tar.gz" +hash = "sha256-WYSUwzTpoDCa+rkYnPC9NAvdmb+AwemyW/WjGiMUi8U=" +typstDeps = [ + "cetz_0_4_2", + "codly_1_3_0", + "fletcher_0_5_8", + "showybox_2_0_4", + "tableau-icons_0_331_0", + "tiaoma_0_3_0", + "touying_0_6_1", +] +description = "An unofficial ISEC TUGraz slides template" +license = [ + "MIT", +] +homepage = "https://github.com/ecomaikgolf/typst-isec-slides-template" + +[definitely-not-isec-slides."1.0.0"] +url = "https://packages.typst.org/preview/definitely-not-isec-slides-1.0.0.tar.gz" +hash = "sha256-ghFp+8LmIpGNmJPM/s/m/RvMFghG/vyMJ1EJQ0rMdyw=" +typstDeps = [ + "cetz_0_4_1", + "codly_1_3_0", + "fletcher_0_5_8", + "showybox_2_0_4", + "tableau-icons_0_331_0", + "tiaoma_0_3_0", + "touying_0_6_1", +] +description = "An unofficial ISEC TUGraz slides template" +license = [ + "MIT", +] +homepage = "https://github.com/ecomaikgolf/typst-isec-slides-template" + +[definitely-not-isec-thesis."2.0.1"] +url = "https://packages.typst.org/preview/definitely-not-isec-thesis-2.0.1.tar.gz" +hash = "sha256-5mxFjH8gF1biPwEclEdRpMgth8FHBcrJWauc3PCYmIo=" +typstDeps = [ + "definitely-not-isec-thesis_2_0_0", +] +description = "An unofficial ISEC TUGraz Master's Thesis template" +license = [ + "MIT", +] +homepage = "https://github.com/ecomaikgolf/typst-isec-master-thesis-template/" + +[definitely-not-isec-thesis."2.0.0"] +url = "https://packages.typst.org/preview/definitely-not-isec-thesis-2.0.0.tar.gz" +hash = "sha256-VTdCWyOS5RCXQ0hQq+QPsn8T9vzDGv8dWLajNz89UT8=" +typstDeps = [] +description = "An unofficial ISEC TUGraz Master's Thesis template" +license = [ + "MIT", +] +homepage = "https://github.com/ecomaikgolf/typst-isec-master-thesis-template/" + +[definitely-not-isec-thesis."1.0.0"] +url = "https://packages.typst.org/preview/definitely-not-isec-thesis-1.0.0.tar.gz" +hash = "sha256-aLaXo2JxW+fNLh3cGXZeGADf4Sw4rNslGn9FphVcDE8=" +typstDeps = [] +description = "An unofficial ISEC TUGraz Master's Thesis template" +license = [ + "MIT", +] +homepage = "https://github.com/ecomaikgolf/typst-isec-master-thesis-template/" + +[definitely-not-tuw-thesis."0.2.0"] +url = "https://packages.typst.org/preview/definitely-not-tuw-thesis-0.2.0.tar.gz" +hash = "sha256-iCD1hRTNh+5ok8+QRCwRbNIZN/SwqdE4i566zYExHJ8=" +typstDeps = [ + "linguify_0_4_2", +] +description = "An unofficial template for a thesis at the TU Wien informatics institute" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/definitely-not-tuw-thesis" + +[definitely-not-tuw-thesis."0.1.0"] +url = "https://packages.typst.org/preview/definitely-not-tuw-thesis-0.1.0.tar.gz" +hash = "sha256-cVvHDgg9H95Npk91WMyWNKoXKO+zydRDKQkyx4nSmtM=" +typstDeps = [ + "linguify_0_4_1", +] +description = "An unofficial template for a thesis at the TU Wien informatics institute" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/definitely-not-tuw-thesis" + +[delegis."0.4.0"] +url = "https://packages.typst.org/preview/delegis-0.4.0.tar.gz" +hash = "sha256-2K5uz7EdswQPndM8iHhINPRreMyO6r2cJIJntG3ZomY=" +typstDeps = [] +description = "A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc" +license = [ + "MIT", +] +homepage = "https://github.com/wuespace/delegis" + +[delegis."0.3.0"] +url = "https://packages.typst.org/preview/delegis-0.3.0.tar.gz" +hash = "sha256-NoMAAYxznL32LJ8dBsfSnCeM/huXx9HiL50DP7zoVbY=" +typstDeps = [] +description = "A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc" +license = [ + "MIT", +] +homepage = "https://github.com/wuespace/delegis" + +[delegis."0.2.0"] +url = "https://packages.typst.org/preview/delegis-0.2.0.tar.gz" +hash = "sha256-s2GQ6y5IJj9GG1UktRIH94Q3r5XnLIdxNbUXBgsNqTo=" +typstDeps = [] +description = "A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc" +license = [ + "MIT", +] +homepage = "https://github.com/wuespace/delegis" + +[delegis."0.1.0"] +url = "https://packages.typst.org/preview/delegis-0.1.0.tar.gz" +hash = "sha256-X1XB0CMtKRNS6jaQDgi9fORxunu9FMcQU4D5Ae4Zu4g=" +typstDeps = [] +description = "A package and template for drafting legislative content in a German-style structuring, such as for bylaws, etc" +license = [ + "MIT", +] +homepage = "https://github.com/wuespace/delegis" + +[delimitizer."0.1.0"] +url = "https://packages.typst.org/preview/delimitizer-0.1.0.tar.gz" +hash = "sha256-E5NK6h/dfel5QAtoyaXVD4SCN8+xzfQ2MOxFZQcgl6M=" +typstDeps = [] +description = "Customize the size of delimiters. Like \\big, \\Big, \\bigg, \\Bigg in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/delimitizer" + +[derive-it."1.1.0"] +url = "https://packages.typst.org/preview/derive-it-1.1.0.tar.gz" +hash = "sha256-ABL8VKQrqghhh1NNfqUt4ZbUcwlF0/YZvzvgLR5svH8=" +typstDeps = [] +description = "Simple functions for creating fitch-style natural deduction proofs and derivations" +license = [ + "MIT", +] +homepage = "https://github.com/0rphee/derive-it" + +[derive-it."1.0.0"] +url = "https://packages.typst.org/preview/derive-it-1.0.0.tar.gz" +hash = "sha256-bWzABEx3fJ8C8Tqw42Msm8YbFzuA4vD+zZQzDEWLt5M=" +typstDeps = [] +description = "Simple functions for creating fitch-style natural deduction proofs and derivations" +license = [ + "MIT", +] +homepage = "https://github.com/0rphee/derive-it" + +[derive-it."0.1.3"] +url = "https://packages.typst.org/preview/derive-it-0.1.3.tar.gz" +hash = "sha256-HLNiQYeh55Kh1Kz5H/+/8LTAEG24zkI6XdAT/41Pw18=" +typstDeps = [] +description = "Simple functions for creating fitch-style natural deduction proofs and derivations" +license = [ + "MIT", +] +homepage = "https://github.com/0rphee/derive-it" + +[derive-it."0.1.2"] +url = "https://packages.typst.org/preview/derive-it-0.1.2.tar.gz" +hash = "sha256-S6S+PX4pUmSITXgfxaTkew1OivfWB9gGAIchkLxqyaw=" +typstDeps = [] +description = "Simple functions for creating fitch-style natural deduction proofs and derivations" +license = [ + "MIT", +] +homepage = "https://github.com/0rphee/derive-it" + +[derive-it."0.1.1"] +url = "https://packages.typst.org/preview/derive-it-0.1.1.tar.gz" +hash = "sha256-JkXZ5QLNR6+8pYyg9jSZiSJU9wC0Ia1x7pnAa/CohcM=" +typstDeps = [] +description = "Simple functions for creating fitch-style natural deduction proofs and derivations" +license = [ + "MIT", +] +homepage = "https://github.com/0rphee/derive-it" + +[derive-it."0.1.0"] +url = "https://packages.typst.org/preview/derive-it-0.1.0.tar.gz" +hash = "sha256-dw9BYHBb0mMx9WFzxiKHEWI2omaPs2Jxdye/1pIMc10=" +typstDeps = [] +description = "Simple functions for creating fitch-style natural deduction proofs and derivations" +license = [ + "MIT", +] +homepage = "https://github.com/0rphee/derive-it" + +[diagraph."0.3.6"] +url = "https://packages.typst.org/preview/diagraph-0.3.6.tar.gz" +hash = "sha256-LBplb807NgR0oovh7fxRWpqhOBfxm7uyETgj3Q7otTw=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.3.5"] +url = "https://packages.typst.org/preview/diagraph-0.3.5.tar.gz" +hash = "sha256-diUbQHUePKawZLOYc09LgfH8dgENl6xWmKL42AfgYM4=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.3.4"] +url = "https://packages.typst.org/preview/diagraph-0.3.4.tar.gz" +hash = "sha256-xhvuq7xva0vIRdxYFrMcQTfcZATfxN+SBbV7ofAx58I=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.3.3"] +url = "https://packages.typst.org/preview/diagraph-0.3.3.tar.gz" +hash = "sha256-RwNjmzaTCjMmBMeSd8WPRIQu44IkN+cYW27P18tqN+4=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.3.2"] +url = "https://packages.typst.org/preview/diagraph-0.3.2.tar.gz" +hash = "sha256-mr8/KrrmEZ0Yk53iqs6Y4UwEhkdExx1KptN8gMldf/Q=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.3.1"] +url = "https://packages.typst.org/preview/diagraph-0.3.1.tar.gz" +hash = "sha256-H693ABKs58NxzEIkf7rTzf4UImTyXxVpk8EeJe8V4yw=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.3.0"] +url = "https://packages.typst.org/preview/diagraph-0.3.0.tar.gz" +hash = "sha256-2qQ0yItPQnKFmR/x3FMadQIsPJD4MyLpdb1XQIJvrE4=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.2.5"] +url = "https://packages.typst.org/preview/diagraph-0.2.5.tar.gz" +hash = "sha256-UTmOsFHJDsgqbcKKez5OFI4P8MQ7OWDwCrhRK1zRO4Y=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.2.4"] +url = "https://packages.typst.org/preview/diagraph-0.2.4.tar.gz" +hash = "sha256-2yhWqdq8pw9nBaVMm+yzMjY2JY2iNwdAllrElDQvCig=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.2.3"] +url = "https://packages.typst.org/preview/diagraph-0.2.3.tar.gz" +hash = "sha256-ESNyD7o2QfhgYwNITd0Gvc+Zhm88jANPSCgUVQTKzy0=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.2.2"] +url = "https://packages.typst.org/preview/diagraph-0.2.2.tar.gz" +hash = "sha256-4kGjMzj8lPG7GLVgKZiKH9lSMWfRwg9bJFxMDstw7r8=" +typstDeps = [] +description = "Graphviz bindings for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.2.1"] +url = "https://packages.typst.org/preview/diagraph-0.2.1.tar.gz" +hash = "sha256-FdoNdv3k/EmVCafUtzJAWeJffV5Usab/8gMj0CcLhRg=" +typstDeps = [] +description = "Graphviz bindings for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.2.0"] +url = "https://packages.typst.org/preview/diagraph-0.2.0.tar.gz" +hash = "sha256-p/rTvdqrAHwbLpfhMsPkehWINO0FUk2kJFGJJTvRQjQ=" +typstDeps = [] +description = "Graphviz bindings for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.1.2"] +url = "https://packages.typst.org/preview/diagraph-0.1.2.tar.gz" +hash = "sha256-p+aiPsnfo+lK1R+K8wpASCGffseqI662B4ACv03oco0=" +typstDeps = [] +description = "Graphviz bindings for typst" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.1.1"] +url = "https://packages.typst.org/preview/diagraph-0.1.1.tar.gz" +hash = "sha256-ngeZ+sxcJA/bYiHwzH0VAcm+27xNV4ig5kUIRlCESSc=" +typstDeps = [] +description = "Graphviz bindings for typst" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.1.0"] +url = "https://packages.typst.org/preview/diagraph-0.1.0.tar.gz" +hash = "sha256-rAxw3J4azB+uFIrwXSkU8Skqw0rAOdxRFMdn+lg3Dx4=" +typstDeps = [] +description = "Graphviz bindings for typst" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph-layout."0.0.1"] +url = "https://packages.typst.org/preview/diagraph-layout-0.0.1.tar.gz" +hash = "sha256-AnBILoe4D9xCfFFJZ2+Hf3XIDnHYZH7OK4WAzAfme+I=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Exposes the graphviz layout engines api to render graph without dot" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph-layout.git" + +[diatypst."0.8.0"] +url = "https://packages.typst.org/preview/diatypst-0.8.0.tar.gz" +hash = "sha256-vIysNePgWDTP8dpeaJUG5HjD/DbDp66z2Uv8mw3cQkE=" +typstDeps = [] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.7.1"] +url = "https://packages.typst.org/preview/diatypst-0.7.1.tar.gz" +hash = "sha256-OPTOQ/VJ2oKaanPY22Y2b9UX7Sb1PtMWXiuzP+J7eiQ=" +typstDeps = [] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.7.0"] +url = "https://packages.typst.org/preview/diatypst-0.7.0.tar.gz" +hash = "sha256-Gy4fZVqn/yMEZY3Xl+lBeQZ0fA+tjDrieRJRIP6K578=" +typstDeps = [ + "diatypst_0_2_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.6.0"] +url = "https://packages.typst.org/preview/diatypst-0.6.0.tar.gz" +hash = "sha256-mBIH+lXGlFoeEfAHKuHoklrg0DT2UxMEjYlfnmx/g+E=" +typstDeps = [ + "diatypst_0_2_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.5.0"] +url = "https://packages.typst.org/preview/diatypst-0.5.0.tar.gz" +hash = "sha256-OVbxSP8JMJAZXlVi+Sky5S7o66nImHPXW7/lDn0qVwk=" +typstDeps = [ + "diatypst_0_2_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.4.0"] +url = "https://packages.typst.org/preview/diatypst-0.4.0.tar.gz" +hash = "sha256-EpSSFapDSHOZsAqNSpZCpRtwpGtaaSIcSfhuM2lh55M=" +typstDeps = [ + "diatypst_0_2_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.3.0"] +url = "https://packages.typst.org/preview/diatypst-0.3.0.tar.gz" +hash = "sha256-HWGTqgOg/A3I+1VdiEfVJXXwIFsp2/bgy4zcHzqInAc=" +typstDeps = [ + "diatypst_0_2_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.2.0"] +url = "https://packages.typst.org/preview/diatypst-0.2.0.tar.gz" +hash = "sha256-I1I+RSLNukq51EA8T9vVA73cOiwUNWSxaa/3/D+meck=" +typstDeps = [ + "diatypst_0_1_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.1.0"] +url = "https://packages.typst.org/preview/diatypst-0.1.0.tar.gz" +hash = "sha256-//ZuvgYUMJ2h1F3Ho1eF5+Wi2UkJL1mq42QZOnaXKZ8=" +typstDeps = [] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[dice."1.0.0"] +url = "https://packages.typst.org/preview/dice-1.0.0.tar.gz" +hash = "sha256-9twA11NPECU9qIhQBo7IRsd5Llks2abda8On7cbm16c=" +typstDeps = [] +description = "A versatile random number toolkit for Typst" +license = [ + "MIT", +] + +[digestify."0.1.0"] +url = "https://packages.typst.org/preview/digestify-0.1.0.tar.gz" +hash = "sha256-Qc8OG1dYAsF2vgw0+APLNG/hrMqg/g05s+V/7zpnOGs=" +typstDeps = [] +description = "A blazing fast cryptographic hash package for Typst, powered by WebAssembly" +license = [ + "MIT", +] +homepage = "https://github.com/ParaN3xus/digestify" + +[dining-table."0.1.0"] +url = "https://packages.typst.org/preview/dining-table-0.1.0.tar.gz" +hash = "sha256-JoZd2QGPf0JK6pPiaMTB88JEoBR/JUvgsXclq0gvhxE=" +typstDeps = [] +description = "Column-wise table definitions for big data" +license = [ + "Unlicense", +] +homepage = "https://github.com/JamesxX/dining-table" + +[diverential."0.2.0"] +url = "https://packages.typst.org/preview/diverential-0.2.0.tar.gz" +hash = "sha256-llW9ALoGx7qiILMIundWdv+YSkUpzlXQg1ctSMntuXA=" +typstDeps = [] +description = "Format differentials conveniently" +license = [ + "MIT", +] + +[divine-words."0.1.0"] +url = "https://packages.typst.org/preview/divine-words-0.1.0.tar.gz" +hash = "sha256-SZ4TbK1Ig2tmIq25r7jEurSOpcJBPMKmrrn+5FF/TN0=" +typstDeps = [] +description = "Just a template for a lab report" +license = [ + "MIT", +] +homepage = "https://github.com/tedius-git/divine-words" + +[dmi-basilea-thesis."0.1.1"] +url = "https://packages.typst.org/preview/dmi-basilea-thesis-0.1.1.tar.gz" +hash = "sha256-1cM98KWcEYSwbemwb17HV7/WfG344YjlOyjtT5uH0Q4=" +typstDeps = [ + "unibas-thesis_0_1_0", +] +description = "A thesis template for the dmi at the university of basel" +license = [ + "MIT", +] +homepage = "https://github.com/Nifalu/dmi-basilea-thesis" + +[dmi-basilea-thesis."0.1.0"] +url = "https://packages.typst.org/preview/dmi-basilea-thesis-0.1.0.tar.gz" +hash = "sha256-lhMAWQgsbfT//XEjdU34cFxsCUBnDySMgaTyIcW+aXo=" +typstDeps = [ + "unibas-thesis_0_1_0", +] +description = "A thesis template for the dmi at the university of basel" +license = [ + "MIT", +] +homepage = "https://github.com/Nifalu/dmi-basilea-thesis" + +[dovenv."0.1.0"] +url = "https://packages.typst.org/preview/dovenv-0.1.0.tar.gz" +hash = "sha256-H0yY6dW6FwFTkTE6K8A0UmjSbPbIFuh+RH2ggD6JbZw=" +typstDeps = [] +description = "Smoothly loads environment variables from dotenv (.env) files" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/Myriad-Dreamin/dotenv-typ" + +[down."0.1.0"] +url = "https://packages.typst.org/preview/down-0.1.0.tar.gz" +hash = "sha256-GA9mB7xmY68E8058uZ1RsNv1qJ+fhm6zaULfcAfd76A=" +typstDeps = [] +description = "Pass down arguments of `sum`, `integral`, etc. to the next line, which can generate shorthand to present reusable segments" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~toto/down" + +[drafting."0.2.2"] +url = "https://packages.typst.org/preview/drafting-0.2.2.tar.gz" +hash = "sha256-xJ3FdEiM1qPEhzZ4QkNdsysmMQ0GbY5l+EoWo2sbFdk=" +typstDeps = [] +description = "Helpful functions for content positioning and margin comments/notes" +license = [ + "Unlicense", +] +homepage = "https://github.com/ntjess/typst-drafting" + +[drafting."0.2.1"] +url = "https://packages.typst.org/preview/drafting-0.2.1.tar.gz" +hash = "sha256-PfpwLtjQSXtJBpjOF8I889Yz5fgM+22wyS9a4Rgdlzk=" +typstDeps = [] +description = "Helpful functions for content positioning and margin comments/notes" +license = [ + "Unlicense", +] +homepage = "https://github.com/ntjess/typst-drafting" + +[drafting."0.2.0"] +url = "https://packages.typst.org/preview/drafting-0.2.0.tar.gz" +hash = "sha256-pLBtMjCfRN3L9a53RKKkt5NCVVEmz8V4ROHvMlTTK6A=" +typstDeps = [] +description = "Helpful functions for content positioning and margin comments/notes" +license = [ + "Unlicense", +] +homepage = "https://github.com/ntjess/typst-drafting" + +[drafting."0.1.2"] +url = "https://packages.typst.org/preview/drafting-0.1.2.tar.gz" +hash = "sha256-xPz41aJVtJaCV7yq8cHtMC10uLh/UObEdpaMStrv9n4=" +typstDeps = [] +description = "Helpful functions for content positioning and margin comments/notes" +license = [ + "Unlicense", +] +homepage = "https://github.com/ntjess/typst-drafting" + +[drafting."0.1.1"] +url = "https://packages.typst.org/preview/drafting-0.1.1.tar.gz" +hash = "sha256-tdAybXIglAvYpALC2z0oYBgFt4XMytYvWzqW5RLWOgk=" +typstDeps = [] +description = "Helpful functions for content positioning and margin comments/notes" +license = [ + "Unlicense", +] +homepage = "https://github.com/ntjess/typst-drafting" + +[drafting."0.1.0"] +url = "https://packages.typst.org/preview/drafting-0.1.0.tar.gz" +hash = "sha256-iyUt4rjG4O61A3MR9FqTgy+F/Zge1msIuNvAMrfIwK4=" +typstDeps = [] +description = "Helpful functions during document drafting" +license = [ + "Unlicense", +] + +[dragonling."0.2.0"] +url = "https://packages.typst.org/preview/dragonling-0.2.0.tar.gz" +hash = "sha256-9zRApaho2RpPKhMTjY6hAT+ZPOKxCMpa6b2iXl+mtDc=" +typstDeps = [] +description = "A comprehensive Typst template for creating Dungeons & Dragons 5E content including stat blocks, spell cards, and adventure modules" +license = [ + "MIT", +] +homepage = "https://github.com/coljac/typst-dnd5e" + +[droplet."0.3.1"] +url = "https://packages.typst.org/preview/droplet-0.3.1.tar.gz" +hash = "sha256-ngKk23tUePES0KJ8ywikO1xSDmYkJyr1VANLxV3ILVY=" +typstDeps = [] +description = "Customizable dropped capitals" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-droplet" + +[droplet."0.3.0"] +url = "https://packages.typst.org/preview/droplet-0.3.0.tar.gz" +hash = "sha256-ZRu5kk17aFhWF/TcfAeV/v2CwfyZiHSW1tLe7gvTeqI=" +typstDeps = [] +description = "Customizable dropped capitals" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-droplet" + +[droplet."0.2.0"] +url = "https://packages.typst.org/preview/droplet-0.2.0.tar.gz" +hash = "sha256-3K/8SK9My1Q4YKSnDbf+A3+9/i0FWCL9UORkYoYuE3Q=" +typstDeps = [] +description = "Customizable dropped capitals" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-droplet" + +[droplet."0.1.0"] +url = "https://packages.typst.org/preview/droplet-0.1.0.tar.gz" +hash = "sha256-zonpMX6mDSWOOIuBoy2G/nM7f+wdZfFCAopUJ4FuJwY=" +typstDeps = [] +description = "Customizable dropped capitals" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-droplet" + +[dvdtyp."1.0.1"] +url = "https://packages.typst.org/preview/dvdtyp-1.0.1.tar.gz" +hash = "sha256-vXA3xTFLRB6LVLKCjK6nt/tQS4Cl0btWrAhmVJpiJMQ=" +typstDeps = [ + "ctheorems_1_1_3", + "showybox_2_0_4", +] +description = "a colorful template for writting handouts or notes" +license = [ + "MIT-0", +] +homepage = "https://github.com/DVDTSB/dvdtyp" + +[dvdtyp."1.0.0"] +url = "https://packages.typst.org/preview/dvdtyp-1.0.0.tar.gz" +hash = "sha256-gNsKq88p6G7oRCzImZTsd/w8lP007pd8Hqyj0VioWAE=" +typstDeps = [ + "ctheorems_1_1_2", + "showybox_2_0_1", +] +description = "a colorful template for writting handouts or notes" +license = [ + "MIT-0", +] +homepage = "https://github.com/DVDTSB/dvdtyp" + +[easy-pinyin."0.1.0"] +url = "https://packages.typst.org/preview/easy-pinyin-0.1.0.tar.gz" +hash = "sha256-25XJa5ovmFzwwzmBrdF24okyajCWdduT9sHf5c/krDw=" +typstDeps = [] +description = "Write Chinese pinyin easily" +license = [ + "MIT", +] +homepage = "https://github.com/7sDream/typst-easy-pinyin" + +[easy-typography."0.1.0"] +url = "https://packages.typst.org/preview/easy-typography-0.1.0.tar.gz" +hash = "sha256-yj2teX9KuCz1cDbTFhuOkucrFlpHDaOhBq+MVeRpwoM=" +typstDeps = [ + "codly_1_2_0", + "codly-languages_0_1_1", +] +description = "Sets up sensible typography defaults" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[easytable."0.1.0"] +url = "https://packages.typst.org/preview/easytable-0.1.0.tar.gz" +hash = "sha256-W3FRYrjZ0u0Rdr8hYrwksuGwPjzF4ukX/EodJz0mSNE=" +typstDeps = [ + "tablex_0_0_8", +] +description = "Simple Table Package" +license = [ + "MIT", +] +homepage = "https://github.com/monaqa/typst-easytable" + +[echarm."0.3.1"] +url = "https://packages.typst.org/preview/echarm-0.3.1.tar.gz" +hash = "sha256-h9vnpZUI8IpXk7gQEMnNAc7wZc1v08airX//2GYb3+U=" +typstDeps = [ + "ctxjs_0_3_2", +] +description = "Run echarts in typst with the use of CtxJS" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-echarm-package" + +[echarm."0.3.0"] +url = "https://packages.typst.org/preview/echarm-0.3.0.tar.gz" +hash = "sha256-15yGdTrYH7/qpo+3QYuKbYiTMlAfhkhSwcvun2Axe9U=" +typstDeps = [ + "ctxjs_0_3_1", +] +description = "Run echarts in typst with the use of CtxJS" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-echarm-package" + +[echarm."0.2.1"] +url = "https://packages.typst.org/preview/echarm-0.2.1.tar.gz" +hash = "sha256-7msh2oSNLToUkDKIrDDkUs9Zj2im09EE1xcHxRgoXF4=" +typstDeps = [ + "ctxjs_0_3_1", +] +description = "Run echarts in typst with the use of CtxJS" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-echarm-package" + +[echarm."0.2.0"] +url = "https://packages.typst.org/preview/echarm-0.2.0.tar.gz" +hash = "sha256-RsI3gLmBGW+gip7974CbraCN3aIotUfYo1yGn2QKPSk=" +typstDeps = [ + "ctxjs_0_2_0", +] +description = "Run echarts in typst with the use of CtxJS" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-echarm-package" + +[echarm."0.1.1"] +url = "https://packages.typst.org/preview/echarm-0.1.1.tar.gz" +hash = "sha256-ePQrYFEkHsrT/TFQuSc6KfqHHb6D7OWjQ1Ysia1X28Q=" +typstDeps = [ + "ctxjs_0_2_0", +] +description = "Run echarts in typst with the use of CtxJS" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-echarm-package" + +[echarm."0.1.0"] +url = "https://packages.typst.org/preview/echarm-0.1.0.tar.gz" +hash = "sha256-vKTRw6QiKcIBRVaOjy0vO1eO0sQd0+bhi91J5X4UT+c=" +typstDeps = [ + "ctxjs_0_1_0", +] +description = "Run echarts in typst with the use of CtxJS" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-echarm-package" + +[ecnu-math-hwk."0.1.0"] +url = "https://packages.typst.org/preview/ecnu-math-hwk-0.1.0.tar.gz" +hash = "sha256-HusKl6SfN0bnb5i52YMn/xonxwdy8sBpwFwHfOi5XeM=" +typstDeps = [ + "itemize_0_1_2", +] +description = "ECNU 作业解答模板 推荐是 Problem-Solution/Proof 的形式" +license = [ + "MIT", +] +homepage = "https://github.com/syqwq-OMG/ecnu-math-hwk" + +[edgeframe."0.1.0"] +url = "https://packages.typst.org/preview/edgeframe-0.1.0.tar.gz" +hash = "sha256-AVXSce2K+PcxHjtkm3PEChbsDIISnOqZmbA4Yl6i/J4=" +typstDeps = [] +description = "For quick paper setups" +license = [ + "MIT", +] +homepage = "https://github.com/neuralpain/edgeframe" + +[eeaabb."0.1.0"] +url = "https://packages.typst.org/preview/eeaabb-0.1.0.tar.gz" +hash = "sha256-yHl7i9R/+tCnSXGi2h7lNvzMNMN4JyjLV1lhl6RUv8o=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Extract element AABBs and inspect sizes" +license = [ + "MIT", +] + +[efilrst."0.3.2"] +url = "https://packages.typst.org/preview/efilrst-0.3.2.tar.gz" +hash = "sha256-oBjix+GtlekSToHjLgn9deZWmjRZoqxWGvMbNLWUpMQ=" +typstDeps = [] +description = "A simple referenceable list library for typst" +license = [ + "MIT", +] +homepage = "https://github.com/jmigual/typst-efilrst" + +[efilrst."0.3.1"] +url = "https://packages.typst.org/preview/efilrst-0.3.1.tar.gz" +hash = "sha256-Xrt6aikAZeV0KodY6qNELZ5STxZuVwflA6J+2ES4jz8=" +typstDeps = [] +description = "A simple referenceable list library for typst" +license = [ + "MIT", +] +homepage = "https://github.com/jmigual/typst-efilrst" + +[efilrst."0.3.0"] +url = "https://packages.typst.org/preview/efilrst-0.3.0.tar.gz" +hash = "sha256-YQK/52bwOabt2ZQeZNK+gHC6hKN0eEXd4Jxv8iWxuKM=" +typstDeps = [] +description = "A simple referenceable list library for typst" +license = [ + "MIT", +] +homepage = "https://github.com/jmigual/typst-efilrst" + +[efilrst."0.2.0"] +url = "https://packages.typst.org/preview/efilrst-0.2.0.tar.gz" +hash = "sha256-pBk8BZ7Bfjwy2xWUG75n0OMsq9CBFohJpqvRccSTZwE=" +typstDeps = [] +description = "A simple referenceable list library for typst" +license = [ + "MIT", +] +homepage = "https://github.com/jmigual/typst-efilrst" + +[efilrst."0.1.0"] +url = "https://packages.typst.org/preview/efilrst-0.1.0.tar.gz" +hash = "sha256-h9Nf0hdK/8pNsQSAOq/xF69vnX5GCTp26T/AXhXTHbY=" +typstDeps = [] +description = "A simple referenceable list library for typst" +license = [ + "MIT", +] +homepage = "https://github.com/jmigual/typst-efilrst" + +[efter-plugget."0.1.1"] +url = "https://packages.typst.org/preview/efter-plugget-0.1.1.tar.gz" +hash = "sha256-s3NikgrOMW1lQpdPazfRAm6yNY+jujrxsj+AggDw7Dw=" +typstDeps = [ + "cellpress-unofficial_0_1_0", + "hallon_0_1_2", + "latex-lookalike_0_1_4", + "nth_1_0_1", + "smartaref_0_1_0", +] +description = "Lab report, essay and exam template for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/efter-plugget" + +[efter-plugget."0.1.0"] +url = "https://packages.typst.org/preview/efter-plugget-0.1.0.tar.gz" +hash = "sha256-fH8lLnbxSV4521N+zjDIqQMOqZnqeqVFWBodVkhWlX4=" +typstDeps = [ + "cellpress-unofficial_0_1_0", + "hallon_0_1_2", + "latex-lookalike_0_1_4", + "nth_1_0_1", + "smartaref_0_1_0", +] +description = "Lab report, essay and exam template for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/efter-plugget" + +[eggs."0.2.0"] +url = "https://packages.typst.org/preview/eggs-0.2.0.tar.gz" +hash = "sha256-8iL97V73ECYIFPW36Tdb3xACP0n22u5JET8gJT5Cx6w=" +typstDeps = [ + "eggs_0_1_0", + "tidy_0_4_3", +] +description = "Linguistic examples with minimalist syntax" +license = [ + "MIT", +] +homepage = "https://github.com/retroflexivity/typst-eggs" + +[eggs."0.1.0"] +url = "https://packages.typst.org/preview/eggs-0.1.0.tar.gz" +hash = "sha256-e+giwCf/rFnzqeI/aSKh/oMZILsPUn2Wdrb5UCdQoD8=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Linguistic examples with minimalist syntax" +license = [ + "MIT", +] +homepage = "https://github.com/retroflexivity/typst-eggs" + +[electify."0.1.1"] +url = "https://packages.typst.org/preview/electify-0.1.1.tar.gz" +hash = "sha256-THxg8Rvy08WCwrOBAjAgyZXsxWtwr1QNgx5mZ3HZob0=" +typstDeps = [] +description = "A German Election Ballot Paper helping visualize the dual-voting system (Erststimme & Zweitstimme" +license = [ + "MIT", +] +homepage = "https://github.com/G0STG0D/electify" + +[electify."0.1.0"] +url = "https://packages.typst.org/preview/electify-0.1.0.tar.gz" +hash = "sha256-0yS+JpekyeSV5VrNVLqCIO90wG0bHYjJpJ05YiT8drs=" +typstDeps = [] +description = "A German Election Ballot Paper helping visualize the dual-voting system (Erststimme & Zweitstimme" +license = [ + "MIT", +] +homepage = "https://github.com/G0STG0D/typst-packages" + +[elegant-paper."0.1.0"] +url = "https://packages.typst.org/preview/elegant-paper-0.1.0.tar.gz" +hash = "sha256-wZrzTcTsXAB4imihHMcViaUUT6KGa8PBJAe00Hg28l8=" +typstDeps = [ + "zh-kit_0_1_0", +] +description = "A Typst template for elegant papers" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/ctypst/elegant-paper-typst" + +[elegant-polimi-thesis."0.1.1"] +url = "https://packages.typst.org/preview/elegant-polimi-thesis-0.1.1.tar.gz" +hash = "sha256-bt14wB+1v4iq0Zxp+4upsTS00uzmwuED1qPCn5O3rMw=" +typstDeps = [ + "algo_0_3_6", + "great-theorems_0_1_2", + "headcount_0_1_0", + "lovelace_0_3_0", + "metalogo_1_2_0", + "subpar_0_2_2", + "tidy_0_4_3", +] +description = "An unofficial thesis template for the Polytechnic University of Milan" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/VictuarVi/PoliMi-PhD-Thesis" + +[elegant-polimi-thesis."0.1.0"] +url = "https://packages.typst.org/preview/elegant-polimi-thesis-0.1.0.tar.gz" +hash = "sha256-oacgSwj6UWnvlkibSYHpru0mCCAhw5ES9HprqnRlzbc=" +typstDeps = [ + "algo_0_3_6", + "lovelace_0_3_0", + "metalogo_1_2_0", + "subpar_0_2_2", +] +description = "An unofficial thesis template for the Polytechnic University of Milan" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/VictuarVi/PoliMi-PhD-Thesis" + +[elembic."1.1.1"] +url = "https://packages.typst.org/preview/elembic-1.1.1.tar.gz" +hash = "sha256-IHXobR+tsQhOOkHRmu+GzbGWeslTVqkw11Vyu6TulQY=" +typstDeps = [] +description = "Framework for custom elements and types in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/elembic" + +[elembic."1.1.0"] +url = "https://packages.typst.org/preview/elembic-1.1.0.tar.gz" +hash = "sha256-O8V0/e1fWZh1UdIHlJM2IU6SGpqvWBwbzkCqyBn91Gg=" +typstDeps = [] +description = "Framework for custom elements and types in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/elembic" + +[elembic."1.0.0"] +url = "https://packages.typst.org/preview/elembic-1.0.0.tar.gz" +hash = "sha256-0Fq4/TtbUCRyBJQIBIrwyN5sI1WQuqk0+JE318crR4k=" +typstDeps = [] +description = "Framework for custom elements and types in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/elembic" + +[elsearticle."1.0.0"] +url = "https://packages.typst.org/preview/elsearticle-1.0.0.tar.gz" +hash = "sha256-kZx2W3DAgUkPL04zkXldX1svczlqVhGFYhdMFrCQGc0=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.4.3"] +url = "https://packages.typst.org/preview/elsearticle-0.4.3.tar.gz" +hash = "sha256-ztIXrmwtjL5hnv7s7vPXKb7lwltM6ZZjgzegQOmKa1A=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.4.2"] +url = "https://packages.typst.org/preview/elsearticle-0.4.2.tar.gz" +hash = "sha256-QlnOgnxC5dBlFtBVKlgbdE/QnC3yeIUpT7Kn445HrXI=" +typstDeps = [ + "cheq_0_1_0", + "equate_0_2_1", + "mantys_0_1_4", + "subpar_0_1_1", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.4.1"] +url = "https://packages.typst.org/preview/elsearticle-0.4.1.tar.gz" +hash = "sha256-froFVx2/nqEBcXUf8NecGHk/mxG0qvU4STCmQ6epiCM=" +typstDeps = [ + "cheq_0_1_0", + "equate_0_2_1", + "mantys_0_1_4", + "subpar_0_1_1", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.4.0"] +url = "https://packages.typst.org/preview/elsearticle-0.4.0.tar.gz" +hash = "sha256-gi4kKD1T6mwjbQyiaW5dJUJlDo7wcbJk9fdjvSvH9sE=" +typstDeps = [ + "cheq_0_1_0", + "equate_0_2_1", + "mantys_0_1_4", + "subpar_0_1_1", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.3.0"] +url = "https://packages.typst.org/preview/elsearticle-0.3.0.tar.gz" +hash = "sha256-v0Ft+VaJEsvcTEyNJARX4x/BBWjaD0S70exdSsvbVCU=" +typstDeps = [ + "subpar_0_1_1", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.2.1"] +url = "https://packages.typst.org/preview/elsearticle-0.2.1.tar.gz" +hash = "sha256-G0FFXGQ6IRkvOf8TdaNxJcRFJ5jYU5QUWfsXo63INt4=" +typstDeps = [ + "cheq_0_1_0", + "mantys_0_1_4", + "subpar_0_1_1", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.2.0"] +url = "https://packages.typst.org/preview/elsearticle-0.2.0.tar.gz" +hash = "sha256-p+LmaEHTOWEp5gPKCHF2zezuABnRBWyPOkBrO5ge3xs=" +typstDeps = [ + "cheq_0_1_0", + "elsearticle_0_1_0", + "mantys_0_1_4", + "subpar_0_1_1", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.1.0"] +url = "https://packages.typst.org/preview/elsearticle-0.1.0.tar.gz" +hash = "sha256-Y3ad9oganv2MW89AUzuexWQxuluTaWn2cENHCRlvx1U=" +typstDeps = [ + "cheq_0_1_0", + "mantys_0_1_4", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] + +[elsevier-replica."0.1.0"] +url = "https://packages.typst.org/preview/elsevier-replica-0.1.0.tar.gz" +hash = "sha256-o1IUljQZYsG07P89VYzDL0yAUu7Jv8jf19hNjPK7DEI=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Elsevier article template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsevier-replica" + +[elspub."0.2.0"] +url = "https://packages.typst.org/preview/elspub-0.2.0.tar.gz" +hash = "sha256-Mo7MoDUb0k5fAKfzvvj5FenANeUNZhWGDIqOpE6/BOc=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Elsevier article template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elspub" + +[embiggen."0.0.1"] +url = "https://packages.typst.org/preview/embiggen-0.0.1.tar.gz" +hash = "sha256-6IDxLVIVGD7xVAJAjeWwuywUoxjPvVswb7GeT4bjhsg=" +typstDeps = [] +description = "LaTeX-like delimeter sizing in Typst" +license = [ + "GPL-3.0-or-later", +] + +[energy-dia."0.1.0"] +url = "https://packages.typst.org/preview/energy-dia-0.1.0.tar.gz" +hash = "sha256-LlYK9L8tNKPrpBIe8l0Pmzgmc9wm+IWTsPIqdWgkrXM=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Create atomic, molecular, and band structure energy diagrams" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/pawawa-pururun/energy-dia" + +[enja-bib."0.1.0"] +url = "https://packages.typst.org/preview/enja-bib-0.1.0.tar.gz" +hash = "sha256-JJNYAVj8FM+rf8EpjHiF3sPSjDKIjTn5UpDZ1Qqe5yI=" +typstDeps = [] +description = "A package for handling BibTeX that includes both English and Japanese" +license = [ + "MIT", +] +homepage = "https://github.com/tkrhsmt/enja-bib" + +[ennui-ur-report."0.1.0"] +url = "https://packages.typst.org/preview/ennui-ur-report-0.1.0.tar.gz" +hash = "sha256-bMxoOzSdvrO6o4i16lTdIDU9OHSyz59p6fk8CKSh/70=" +typstDeps = [] +description = "A customizable, non official template for University of Rennes" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/leana8959/univ-rennes.typ" + +[ens-rennes-presentation."0.1.0"] +url = "https://packages.typst.org/preview/ens-rennes-presentation-0.1.0.tar.gz" +hash = "sha256-XwLSj23Y3HTgCQbe7Soq0Ll877O2u2ndMDqAz8INZ1Y=" +typstDeps = [ + "touying_0_6_1", +] +description = "Slides theme respecting the ENS Rennes graphical chart" +license = [ + "MIT", +] +homepage = "https://github.com/zacharie-moughanim/ens-rennes-presentation" + +[enseeiht-internship-report."0.1.0"] +url = "https://packages.typst.org/preview/enseeiht-internship-report-0.1.0.tar.gz" +hash = "sha256-jukEUSPLrDtLV5JtPlsvHeti6R/KF3/kY3sN+dYFkQs=" +typstDeps = [] +description = "Unofficial Internship Report Template for ENSEEIHT" +license = [ + "MIT", +] + +[enunciado-facil-fcfm."0.1.0"] +url = "https://packages.typst.org/preview/enunciado-facil-fcfm-0.1.0.tar.gz" +hash = "sha256-sJQRnJ7opLSbBWTcS9YNOCQlZ2lYiuMAGBSeeC3MChM=" +typstDeps = [] +description = "Documentos de ejercicios (controles, auxiliares, tareas, pautas) para la FCFM, UChile" +license = [ + "MIT", +] +homepage = "https://github.com/bkorecic/enunciado-facil-fcfm" + +[epsilon."0.1.0"] +url = "https://packages.typst.org/preview/epsilon-0.1.0.tar.gz" +hash = "sha256-kdvynZ4VwCz7ejJ4vCp3l5OlPP7Gw8mE0zfrN6JEpCE=" +typstDeps = [] +description = "Numerical root-finding" +license = [ + "MIT", +] +homepage = "https://gitlab.com/netzwerk2/epsilon" + +[eqalc."0.1.4"] +url = "https://packages.typst.org/preview/eqalc-0.1.4.tar.gz" +hash = "sha256-hwi/xzhr3SR8OSuOcqigkaUlvrqZOAL83+Yu990CizA=" +typstDeps = [] +description = "Convert math equations to functions" +license = [ + "MIT", +] +homepage = "https://github.com/7ijme/eqalc" + +[eqalc."0.1.3"] +url = "https://packages.typst.org/preview/eqalc-0.1.3.tar.gz" +hash = "sha256-8m31R/YQmCJTp3QC7czxIHvELcocZWLkcLgaZw5aYAk=" +typstDeps = [] +description = "Convert math equations to functions" +license = [ + "MIT", +] +homepage = "https://github.com/7ijme/eqalc" + +[eqalc."0.1.2"] +url = "https://packages.typst.org/preview/eqalc-0.1.2.tar.gz" +hash = "sha256-FIDuB1lqfK84/VMGJQbEE2Tziw2ECuPXiTqVUHOluno=" +typstDeps = [] +description = "Convert math equations to functions" +license = [ + "MIT", +] +homepage = "https://github.com/7ijme/eqalc" + +[eqalc."0.1.1"] +url = "https://packages.typst.org/preview/eqalc-0.1.1.tar.gz" +hash = "sha256-PP3qgn1zpAijsBI9QTFC+h8YxbllR975Kg6iJlOdjRY=" +typstDeps = [] +description = "Convert math equations to functions" +license = [ + "MIT", +] +homepage = "https://github.com/7ijme/eqalc" + +[eqalc."0.1.0"] +url = "https://packages.typst.org/preview/eqalc-0.1.0.tar.gz" +hash = "sha256-rcbXANJXwG57hAVYVgw6y+Aum8lKXxFEzDGVCsNuq6U=" +typstDeps = [] +description = "Convert math equations to functions" +license = [ + "MIT", +] +homepage = "https://github.com/7ijme/eqalc" + +[equate."0.3.2"] +url = "https://packages.typst.org/preview/equate-0.3.2.tar.gz" +hash = "sha256-WogaNLFpCsysRfkwnxph0OVFJGs9CTKQYYAG9+7xKhA=" +typstDeps = [] +description = "Various enhancements for mathematical expressions" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-equate" + +[equate."0.3.1"] +url = "https://packages.typst.org/preview/equate-0.3.1.tar.gz" +hash = "sha256-nEUnNszy1cVaemsqdAmjvj34obYPH3fGfWHX6Rb7ajE=" +typstDeps = [] +description = "Various enhancements for mathematical expressions" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-equate" + +[equate."0.3.0"] +url = "https://packages.typst.org/preview/equate-0.3.0.tar.gz" +hash = "sha256-nlt6wgzIVMGUD88wdeYjRjOI7q04BV4sYE0xejxiv34=" +typstDeps = [] +description = "Various enhancements for mathematical expressions" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-equate" + +[equate."0.2.1"] +url = "https://packages.typst.org/preview/equate-0.2.1.tar.gz" +hash = "sha256-UD/J2c3Hs6i4SuEGSINYBTXUpcZULKFxi6HkSjtLgmQ=" +typstDeps = [] +description = "Breakable equations with improved numbering" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-equate" + +[equate."0.2.0"] +url = "https://packages.typst.org/preview/equate-0.2.0.tar.gz" +hash = "sha256-/okqIsUZO+qoelAwd6gDZ+3HdOUfXm+hnHbCXRJMppY=" +typstDeps = [] +description = "Breakable equations with improved numbering" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-equate" + +[equate."0.1.0"] +url = "https://packages.typst.org/preview/equate-0.1.0.tar.gz" +hash = "sha256-GZuUqB/bZTeg9ZdbrlSPvDdAIkx6eWsPV4L6S5qLiwY=" +typstDeps = [] +description = "Breakable equations with improved numbering" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-equate" + +[ergo."0.2.0"] +url = "https://packages.typst.org/preview/ergo-0.2.0.tar.gz" +hash = "sha256-NPDvWTXjBIaT8A6BMnn4TdseuuIUGwtYEfLhYj+KAh0=" +typstDeps = [ + "cetz_0_4_0", + "fletcher_0_5_4", + "lovelace_0_3_0", + "physica_0_9_5", +] +description = "Customizable environments for note taking and homework assignments, designed for students in math, CS and physics" +license = [ + "MIT-0", +] +homepage = "https://github.com/EsotericSquishyy/ergo" + +[ergo."0.1.1"] +url = "https://packages.typst.org/preview/ergo-0.1.1.tar.gz" +hash = "sha256-/ZnVEa9Zbl+bpnC54sJJBmGpzPJKYmAG0pZy+YRgABU=" +typstDeps = [ + "cetz_0_4_1", + "fletcher_0_5_8", + "lovelace_0_3_0", + "physica_0_9_5", +] +description = "A suite of customizable block environments for taking notes and doing problem sets, especially in Mathematics, Computer Science, and Physics" +license = [ + "MIT-0", +] +homepage = "https://github.com/EsotericSquishyy/ergo" + +[ergo."0.1.0"] +url = "https://packages.typst.org/preview/ergo-0.1.0.tar.gz" +hash = "sha256-CPVMrp1FlQ1WGDDypmwLgOk/8hs3yDtPdTmxUI1wxMQ=" +typstDeps = [ + "cetz_0_4_0", + "fletcher_0_5_4", + "lovelace_0_3_0", + "physica_0_9_5", +] +description = "A suite of customizable block environments for ease of taking notes or doing problem sets in Mathematics, Computer Science, Physics, and more" +license = [ + "MIT-0", +] +homepage = "https://github.com/EsotericSquishyy/ergo" + +[esotefy."1.0.0"] +url = "https://packages.typst.org/preview/esotefy-1.0.0.tar.gz" +hash = "sha256-Yaex2nIpddDiJoTyV0Sl7oWltnxD4MfSIHoNbQuFv+s=" +typstDeps = [] +description = "A brainfuck implementation in pure Typst" +license = [ + "MIT", +] +homepage = "git@github.com:Thumuss/brainfuck.git" + +[etykett."0.1.1"] +url = "https://packages.typst.org/preview/etykett-0.1.1.tar.gz" +hash = "sha256-tqTIN+FiC5JgIhoNq8ZkWouWn9/UVJewk0WUcYCgPQk=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "a template for printing onto label sheets with rectangular grids of labels" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-etykett" + +[etykett."0.1.0"] +url = "https://packages.typst.org/preview/etykett-0.1.0.tar.gz" +hash = "sha256-V2ItL+yNg1RYTrv5NIBKGipTjwz+L33KK9/TpsQdwpw=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "a template for printing onto label sheets with rectangular grids of labels" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-etykett" + +[examify."0.1.1"] +url = "https://packages.typst.org/preview/examify-0.1.1.tar.gz" +hash = "sha256-1dgSCLdqpxvX9/eVDAG83hkwlMpJfyrWEk2SqNFHjYQ=" +typstDeps = [] +description = "A simple typst template to create question papers for exams" +license = [ + "MIT", +] +homepage = "https://github.com/tarunjana/examify" + +[examify."0.1.0"] +url = "https://packages.typst.org/preview/examify-0.1.0.tar.gz" +hash = "sha256-RpvIZMnN1Nq0dnyHwf79aAs/4BNZsJFYkgTjRWVJOok=" +typstDeps = [] +description = "A simple typst template to create question papers for exams" +license = [ + "MIT", +] +homepage = "https://github.com/tarunjana/examify" + +[examine-ib."0.1.2"] +url = "https://packages.typst.org/preview/examine-ib-0.1.2.tar.gz" +hash = "sha256-NDYgQxre+UbnBlvNaTFKgUmvGmCvdyIC9+y2Ccf1MtA=" +typstDeps = [] +description = "Template for creating exams, tests, quizzes, based on the IB exam formatting" +license = [ + "Unlicense", +] +homepage = "https://github.com/nycrat/typst-ib-exam-template" + +[examine-ib."0.1.1"] +url = "https://packages.typst.org/preview/examine-ib-0.1.1.tar.gz" +hash = "sha256-ETq7Oh6yUjasgA/Z4TtuxWw2fVJtOn/vgDa1wBhBQkc=" +typstDeps = [] +description = "Template for creating exams, tests, quizzes, based on the IB exam formatting" +license = [ + "Unlicense", +] +homepage = "https://github.com/nycrat/typst-ib-exam-template" + +[examit."0.1.1"] +url = "https://packages.typst.org/preview/examit-0.1.1.tar.gz" +hash = "sha256-vm0p0uFU943pCQqpAWZI3bIBruQr/ELNzrO5b/NRv3A=" +typstDeps = [ + "cetz_0_2_2", +] +description = "An exam template based on the MIT LaTeX exam.cls" +license = [ + "MIT", +] + +[examora."0.1.0"] +url = "https://packages.typst.org/preview/examora-0.1.0.tar.gz" +hash = "sha256-9Rmduuom0ed3YwKXdl68xVGZz8mTfOxUah8UBP6/qJM=" +typstDeps = [ + "a2c-nums_0_0_1", + "cetz_0_4_0", + "cetz-plot_0_1_2", + "cuti_0_3_0", + "suiji_0_4_0", +] +description = "Template for examination paper: 考试试题模板" +license = [ + "MIT", +] +homepage = "https://github.com/pdcxs/examora" + +[example."0.1.0"] +url = "https://packages.typst.org/preview/example-0.1.0.tar.gz" +hash = "sha256-VH5lAZYFEGfo3FVKoKgiqvmVUjrTlX+MzQI1e/N7oEM=" +typstDeps = [] +description = "An example package" +license = [ + "Unlicense", +] + +[exercism."1.0.0"] +url = "https://packages.typst.org/preview/exercism-1.0.0.tar.gz" +hash = "sha256-mXdQ7mXg/oRbnUBh3k/dS4i3OoF6+XyhzcZ7KDUpen8=" +typstDeps = [ + "digestify_0_1_0", +] +description = "Organise exercises and defer their solutions" +license = [ + "MIT", +] +homepage = "https://github.com/mkorje/typst-exercism" + +[exmllent."0.1.0"] +url = "https://packages.typst.org/preview/exmllent-0.1.0.tar.gz" +hash = "sha256-9MCCdvY8ozy6LsYFq8dcskQydcrWE3wnsvZ8UAeLtWA=" +typstDeps = [] +description = "Pure typst implementation of converting XML Excel table to typst table" +license = [ + "MIT", +] +homepage = "https://github.com/hongjr03/typst-xml-table-parser" + +[exzellenz-tum-thesis."0.1.0"] +url = "https://packages.typst.org/preview/exzellenz-tum-thesis-0.1.0.tar.gz" +hash = "sha256-mHGSNkqvM8IzTKanFcPLybhaUn5+/bfe7nnN/Qha/4k=" +typstDeps = [ + "glossarium_0_2_6", +] +description = "Customizable template for a thesis at the TU Munich" +license = [ + "MIT-0", +] + +[ez-algo."0.1.1"] +url = "https://packages.typst.org/preview/ez-algo-0.1.1.tar.gz" +hash = "sha256-cx+xwb4cZZo8SM30c0G76KscdpGYRDqSOZXOjFQ4RJY=" +typstDeps = [] +description = "A package to set algorithms with ease" +license = [ + "MIT", +] +homepage = "https://github.com/the-mathing/ez-algo" + +[ez-algo."0.1.0"] +url = "https://packages.typst.org/preview/ez-algo-0.1.0.tar.gz" +hash = "sha256-UOA5xIEBOrNlhI+8Zgok9VVq0apD6JlUHOCjvvAEJ/Q=" +typstDeps = [] +description = "A package to set algorithms with ease" +license = [ + "MIT", +] +homepage = "https://github.com/the-mathing/ez-algo" + +[ez-today."1.1.0"] +url = "https://packages.typst.org/preview/ez-today-1.1.0.tar.gz" +hash = "sha256-voHxSdsDcXD5vDAS6/7763eFsO83d7kim8ePWWU5L+U=" +typstDeps = [] +description = "Simply displays the full current date" +license = [ + "MIT", +] +homepage = "https://github.com/CarloSchafflik12/typst-ez-today" + +[ez-today."1.0.0"] +url = "https://packages.typst.org/preview/ez-today-1.0.0.tar.gz" +hash = "sha256-nyfqJy0qzLMVXUM6DzyoexKdmxXq0ad0muDFXBMkIIQ=" +typstDeps = [] +description = "Simply displays the full current date" +license = [ + "MIT", +] +homepage = "https://github.com/CarloSchafflik12/typst-ez-today" + +[ez-today."0.3.0"] +url = "https://packages.typst.org/preview/ez-today-0.3.0.tar.gz" +hash = "sha256-C8dNy4ypI+o3H4DsOyonlWtl0Ug38qbQ4Ik24Sb1r6c=" +typstDeps = [] +description = "Simply displays the full current date" +license = [ + "MIT", +] +homepage = "https://github.com/CarloSchafflik12/typst-ez-today" + +[ez-today."0.2.0"] +url = "https://packages.typst.org/preview/ez-today-0.2.0.tar.gz" +hash = "sha256-rLtFkTN5Rl/Z0S8yRJMBkBWEeYt8eZGSb86tnZzNFMw=" +typstDeps = [] +description = "Simply displays the full current date" +license = [ + "MIT", +] +homepage = "https://github.com/CarloSchafflik12/typst-ez-today" + +[ez-today."0.1.0"] +url = "https://packages.typst.org/preview/ez-today-0.1.0.tar.gz" +hash = "sha256-BimtKMHDG45nbi2QxH+aBJjMCPqxYylM53Y4qCpU+QU=" +typstDeps = [] +description = "Simply displays the full current date" +license = [ + "MIT", +] +homepage = "https://github.com/CarloSchafflik12/typst-ez-today" + +[ezchem."0.1.0"] +url = "https://packages.typst.org/preview/ezchem-0.1.0.tar.gz" +hash = "sha256-hz1jR4YM86sqCpaSeVe0bpEo1WRhQ/3N2axGJ5hPxMk=" +typstDeps = [ + "cetz_0_4_1", +] +description = "Draw atomic or ionic structures powered by ctez and single or double line bridge" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezchem.git" + +[ezexam."0.2.4"] +url = "https://packages.typst.org/preview/ezexam-0.2.4.tar.gz" +hash = "sha256-O6MNmMigoMI0ZAKiRKJE+pJJy/dQCTnoippWnFjTLYM=" +typstDeps = [] +description = "An exam template inspired by the LaTeX package exam-zh and also can make handouts" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.2.3"] +url = "https://packages.typst.org/preview/ezexam-0.2.3.tar.gz" +hash = "sha256-5jRptaQzgTjuhkIBxILvKs1SXUJHc4qTZRcqu++clkU=" +typstDeps = [] +description = "An exam template inspired by the LaTeX package exam-zh and also can make handouts" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.2.2"] +url = "https://packages.typst.org/preview/ezexam-0.2.2.tar.gz" +hash = "sha256-RwxFyEK5CIjZAq/6JkVbeCvLlSjxJUMWQpQPkLLp5AM=" +typstDeps = [] +description = "A exam template inspired by the LaTeX package exam-zh. one more thing is can make handouts" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.2.1"] +url = "https://packages.typst.org/preview/ezexam-0.2.1.tar.gz" +hash = "sha256-nV1FSse4wENZCGepDVPFSCdAM3RmtkNN+tPhU8MpJ8o=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.2.0"] +url = "https://packages.typst.org/preview/ezexam-0.2.0.tar.gz" +hash = "sha256-XePso1gmu9Tj8OhAIdhziQGnzTEdorKNbIgGCQT/bJQ=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.9"] +url = "https://packages.typst.org/preview/ezexam-0.1.9.tar.gz" +hash = "sha256-DdF1wQZBwaxB3/Rzc/x5saK+E2Hp1OSgpXJt4clfYQM=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.8"] +url = "https://packages.typst.org/preview/ezexam-0.1.8.tar.gz" +hash = "sha256-ejNg3UWMwpzUTEni/kcNnx4CAC46qJsW/X69anAGlTY=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.7"] +url = "https://packages.typst.org/preview/ezexam-0.1.7.tar.gz" +hash = "sha256-KLW2DnNGh6NL1w568Lzh4GP/Mvh8xBwxeP1OeE2Diyg=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.6"] +url = "https://packages.typst.org/preview/ezexam-0.1.6.tar.gz" +hash = "sha256-FntbC7PBRwz7r+Qeb4lt6L43lunA6Y3WniNUKKzcI3Q=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.5"] +url = "https://packages.typst.org/preview/ezexam-0.1.5.tar.gz" +hash = "sha256-I6FdclhhnoGxS5fpR9XivrmMz+HKVFtpun3TLZN4Ygg=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.4"] +url = "https://packages.typst.org/preview/ezexam-0.1.4.tar.gz" +hash = "sha256-XxwPswQ+2VQJWxRC2DT+Sup2IljH/+naCCyQ20k/KD0=" +typstDeps = [] +description = "A exam and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.3"] +url = "https://packages.typst.org/preview/ezexam-0.1.3.tar.gz" +hash = "sha256-8W2bGo2wRZonlIGUsAebqC59pUtsN4vzNwx2dugnwy8=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.2"] +url = "https://packages.typst.org/preview/ezexam-0.1.2.tar.gz" +hash = "sha256-Qnq4JPLCTS6sPMlOu7muPgnjKj77cZxQDRAC6U6WDfo=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.1"] +url = "https://packages.typst.org/preview/ezexam-0.1.1.tar.gz" +hash = "sha256-dvk8mr0dDtiSKtRU0D5Wltk4fqH0CIgFs5AGy4jeMho=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.0"] +url = "https://packages.typst.org/preview/ezexam-0.1.0.tar.gz" +hash = "sha256-uIcH1+dMpkwa+zO+a1Q8v8FDEJ21pj5fAAWWmryFqEc=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[fancy-affil."0.1.0"] +url = "https://packages.typst.org/preview/fancy-affil-0.1.0.tar.gz" +hash = "sha256-3w4k0AfmEp+wvXIkC1koKjIQxkQm3zLBrNgNh7IfNw0=" +typstDeps = [] +description = "An auto affiliation tool" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/han190/fancy-affil" + +[fancy-units."0.1.1"] +url = "https://packages.typst.org/preview/fancy-units-0.1.1.tar.gz" +hash = "sha256-T5+jI23IzepSp4YHaPM4unZ547rvZieHmmYgjBz/ud0=" +typstDeps = [] +description = "Format numbers and units with style" +license = [ + "MIT", +] +homepage = "https://github.com/janekfleper/typst-fancy-units" + +[fancy-units."0.1.0"] +url = "https://packages.typst.org/preview/fancy-units-0.1.0.tar.gz" +hash = "sha256-nyRiVkZ2+Q/FUPSrz/EQMvHU3Jmqjr63ClB/rqKFIQ8=" +typstDeps = [ + "tidy_0_4_0", +] +description = "Format numbers and units with styling" +license = [ + "MIT", +] +homepage = "https://github.com/janekfleper/typst-fancy-units" + +[fantastic-cv."0.1.0"] +url = "https://packages.typst.org/preview/fantastic-cv-0.1.0.tar.gz" +hash = "sha256-4XorIpYhsB6J/FGzfUCJAP8gCPIqBO9AbZG4TcPdDRo=" +typstDeps = [] +description = "A fantastic cv template that is highly customizable and easy to use" +license = [ + "MIT", +] +homepage = "https://github.com/austinyu/fantastic-cv" + +[fauve-cdb."0.1.0"] +url = "https://packages.typst.org/preview/fauve-cdb-0.1.0.tar.gz" +hash = "sha256-vc61E1kMUSVpgpQDX3lfUnpFpjenTLVeWa5WuK6TEsA=" +typstDeps = [ + "cetz_0_2_2", + "suiji_0_3_0", +] +description = "The unofficial implementation of the Collège Doctoral de Bretagne thesis manuscript template" +license = [ + "MIT-0", +] + +[fauxreilly."0.1.1"] +url = "https://packages.typst.org/preview/fauxreilly-0.1.1.tar.gz" +hash = "sha256-kA25rR18MIt1BNMHRugD1vZMpqV1tFlePuz+COtrD8g=" +typstDeps = [] +description = "A package for creating O'Rly- / O'Reilly-type cover pages" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/dei-layborer/fauxreilly" + +[fauxreilly."0.1.0"] +url = "https://packages.typst.org/preview/fauxreilly-0.1.0.tar.gz" +hash = "sha256-IlLxBlAKVnBr6qzyozaT1LfZSaZpv/rdJzrmNNDAtM4=" +typstDeps = [] +description = "A package for creating O'Rly- / O'Reilly-type cover pages" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/dei-layborer/o-rly-typst" + +[fervojo."0.1.0"] +url = "https://packages.typst.org/preview/fervojo-0.1.0.tar.gz" +hash = "sha256-icOqJl4Gc0H88UBPbS5XWTzhA3XqtTdtYykJjEIDSaA=" +typstDeps = [] +description = "railroad for typst, powered by wasm" +license = [ + "MIT", +] +homepage = "https://github.com/leiserfg/fervojo" + +[fh-joanneum-iit-thesis."2.3.0"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.3.0.tar.gz" +hash = "sha256-CRQbAQpBxZxpkOlbZQxK7psZDoC/df58t150Y8B0r7o=" +typstDeps = [ + "glossarium_0_5_9", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."2.2.0"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.2.0.tar.gz" +hash = "sha256-p/7AqeKKolUCKpn46uxFKKuOCZZyjfYub8jZGEYaJHQ=" +typstDeps = [ + "glossarium_0_5_8", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."2.1.2"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.1.2.tar.gz" +hash = "sha256-BfTqeHsL04xPFI2KWwW1HuUlyv5bpPIJhKpDXLwFFgk=" +typstDeps = [ + "glossarium_0_5_3", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."2.0.5"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.0.5.tar.gz" +hash = "sha256-wiOzA8xHU2Q4q1B844I0Pfmx4T8AT4cAFyNqIvDb/Ts=" +typstDeps = [ + "glossarium_0_5_0", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."2.0.2"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.0.2.tar.gz" +hash = "sha256-7w95vjqsvDSK85Wt5c+o17t9vHw93BfVIcfUg4EGOVg=" +typstDeps = [ + "glossarium_0_5_0", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."1.2.3"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.2.3.tar.gz" +hash = "sha256-5nGoIbzwmqxR4dzqWd8d8V7FHTiAFkYL5dA6D4Z+euo=" +typstDeps = [ + "glossarium_0_4_1", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."1.2.2"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.2.2.tar.gz" +hash = "sha256-a49IpbL6x/zCQzJdK+fN7VX0EihkiNC/ET01K9ObHNE=" +typstDeps = [ + "glossarium_0_4_1", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."1.2.0"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.2.0.tar.gz" +hash = "sha256-ZbyGUqDj2vpDm8igZfmcj/uiiZViTKpcfitGLT5wFDI=" +typstDeps = [ + "glossarium_0_4_1", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + +[fh-joanneum-iit-thesis."1.1.0"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-1.1.0.tar.gz" +hash = "sha256-JpoKUqABymBzc/djF1dDRi4rEAkTWisZJZtKFwMuVJ4=" +typstDeps = [] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] + +[fibber."0.1.0"] +url = "https://packages.typst.org/preview/fibber-0.1.0.tar.gz" +hash = "sha256-bgIP7f8XDbPySrSRV7Kjf3XRxgvmX8ID8SBIwsV92UY=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Draw microfabrication process diagrams in typst" +license = [ + "MIT", +] +homepage = "https://github.com/gauthamrmn/fibber" + +[fine-lncs."0.3.0"] +url = "https://packages.typst.org/preview/fine-lncs-0.3.0.tar.gz" +hash = "sha256-NCbv7zaGp/2ECEG41d9x1WbyGTplRSX4OttVtpEksx8=" +typstDeps = [ + "lemmify_0_1_8", +] +description = "An Springer's Lecture Notes in Computer Science (LNCS) styled template" +license = [ + "MIT", +] +homepage = "https://github.com/Jozott00/typst-fine-lncs" + +[fine-lncs."0.2.0"] +url = "https://packages.typst.org/preview/fine-lncs-0.2.0.tar.gz" +hash = "sha256-9DgBvyZHmVHPpsU8HxqZuKVceKRkO+WqJlxToHGKKv8=" +typstDeps = [ + "lemmify_0_1_8", +] +description = "An Springer's Lecture Notes in Computer Science (LNCS) styled template" +license = [ + "MIT", +] +homepage = "https://github.com/Jozott00/typst-fine-lncs" + +[fine-lncs."0.1.0"] +url = "https://packages.typst.org/preview/fine-lncs-0.1.0.tar.gz" +hash = "sha256-H2QM5j3Jx6Y/Di7D8yZTlu9AEnKQ7deMVhHwbWnHpjc=" +typstDeps = [ + "lemmify_0_1_8", +] +description = "An Springer's Lecture Notes in Computer Science (LNCS) styled template" +license = [ + "MIT", +] +homepage = "https://github.com/Jozott00/typst-fine-lncs" + +[finely-crafted-cv."0.3.0"] +url = "https://packages.typst.org/preview/finely-crafted-cv-0.3.0.tar.gz" +hash = "sha256-FIFb++hf4R8p+xzRfAc03wq+i4c8HG+K072KBaPP/mA=" +typstDeps = [] +description = "A modern résumé/curriculum vitæ template with high attention to detail" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[finely-crafted-cv."0.2.0"] +url = "https://packages.typst.org/preview/finely-crafted-cv-0.2.0.tar.gz" +hash = "sha256-S1gsR078vN+u7pTzJRb6+R/p54Oppf+3i8ZtKMrpv3g=" +typstDeps = [] +description = "A modern résumé/curriculum vitæ template with high attention to detail" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[finely-crafted-cv."0.1.0"] +url = "https://packages.typst.org/preview/finely-crafted-cv-0.1.0.tar.gz" +hash = "sha256-BkWI3fi7LaW1oJ1kHxvB13jQU8LxaKvq6JLaB7xWerY=" +typstDeps = [] +description = "A modern résumé/curriculum vitæ template with high attention to detail" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[finite."0.5.0"] +url = "https://packages.typst.org/preview/finite-0.5.0.tar.gz" +hash = "sha256-l8AimokuwprzRMbjy3Cmq/d20x/ZfM2YyAiYD9EO0i4=" +typstDeps = [ + "cetz_0_3_4", + "t4t_0_4_3", +] +description = "Typst-setting finite automata with CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-finite" + +[finite."0.4.1"] +url = "https://packages.typst.org/preview/finite-0.4.1.tar.gz" +hash = "sha256-wQe8Rb63gPqULtmKglYzJsXKNNZlgngwhGUPgQ0MpDQ=" +typstDeps = [ + "cetz_0_3_0", + "t4t_0_3_2", +] +description = "Typst-setting finite automata with CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-finite" + +[finite."0.4.0"] +url = "https://packages.typst.org/preview/finite-0.4.0.tar.gz" +hash = "sha256-s7/MtSGbL8kJx0kI9QLMwul+PKbNj26EoM/+AMJd1Kc=" +typstDeps = [ + "cetz_0_3_0", + "t4t_0_3_2", +] +description = "Typst-setting finite automata with CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-finite" + +[finite."0.3.2"] +url = "https://packages.typst.org/preview/finite-0.3.2.tar.gz" +hash = "sha256-7dirwm+luHIVlSBR2MxSkzlkavHMHSE8OH8Ygg78Dhs=" +typstDeps = [ + "cetz_0_1_1", + "t4t_0_3_2", +] +description = "Typst-setting finite automata with CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-finite" + +[finite."0.3.0"] +url = "https://packages.typst.org/preview/finite-0.3.0.tar.gz" +hash = "sha256-8rY6KX/SxvLMdAM4izTzUdlvFolw38Rd3IPo3b8Ny3o=" +typstDeps = [ + "cetz_0_1_1", + "t4t_0_3_2", +] +description = "Typst-setting finite automata with CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-finite" + +[finite."0.1.0"] +url = "https://packages.typst.org/preview/finite-0.1.0.tar.gz" +hash = "sha256-/hFoi8e9PszDKFrH+/Pci+UyOrryCdC28ZdMRmraItw=" +typstDeps = [ + "cetz_0_0_2", + "t4t_0_3_0", +] +description = "Typst-setting finite automata with CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-finite" + +[fireside."1.0.0"] +url = "https://packages.typst.org/preview/fireside-1.0.0.tar.gz" +hash = "sha256-OD7X1OEU9OtcO0kw4bJT/WXrLJowFsuFE86JKB7Ln/k=" +typstDeps = [] +description = "A simple letter template with a touch of warmth" +license = [ + "MIT", +] + +[flagada."1.0.1"] +url = "https://packages.typst.org/preview/flagada-1.0.1.tar.gz" +hash = "sha256-B9yP1QmuOLMYa8KM3bzNya4evE3XN7xIlWAJqUazyh4=" +typstDeps = [] +description = "A package to generate countries flags, selecting country based on its ISO3166-1 code" +license = [ + "MIT", +] +homepage = "https://github.com/samrenault/flagada" + +[flagada."1.0.0"] +url = "https://packages.typst.org/preview/flagada-1.0.0.tar.gz" +hash = "sha256-GnBlkFJMjZ0hBc0w4PuIYyLBPCE1ksPCTmIkE3ouVQs=" +typstDeps = [] +description = "A package to generate countries flags, selecting country based on its ISO3166-1 code" +license = [ + "MIT", +] +homepage = "https://github.com/samrenault/flagada" + +[flagada."0.2.0"] +url = "https://packages.typst.org/preview/flagada-0.2.0.tar.gz" +hash = "sha256-kXIHE69IXN9ibklRoVMB8RWDVWCaspU6B+fuWNo1VAI=" +typstDeps = [] +description = "A package to generate countries flags, selecting country based on its ISO3166-1 code" +license = [ + "MIT", +] +homepage = "https://github.com/samrenault/flagada" + +[flagada."0.1.0"] +url = "https://packages.typst.org/preview/flagada-0.1.0.tar.gz" +hash = "sha256-tyDAcymyVhl9B+u5Abl5hU2vwB7D1uIDyZEnxwU18RQ=" +typstDeps = [] +description = "A package to generate countries flags, selecting country based on its ISO3166-1 code" +license = [ + "MIT", +] +homepage = "https://github.com/samrenault/flagada" + +[flautomat."0.1.0"] +url = "https://packages.typst.org/preview/flautomat-0.1.0.tar.gz" +hash = "sha256-9ks3JA5cO4kvl8odrVdqEvzfbdr+AjHrTzWjbuDFo+4=" +typstDeps = [ + "fletcher_0_5_3", +] +description = "Visualize abstract automata based on json input" +license = [ + "MIT", +] +homepage = "https://codeberg.org/Kuchenmampfer/flautomat" + +[fleck."0.1.0"] +url = "https://packages.typst.org/preview/fleck-0.1.0.tar.gz" +hash = "sha256-bhiJPN8JxJ5gh4ZfzrXbfIe3z4i90pc2ge+le4FZBnw=" +typstDeps = [] +description = "Reimplementation of Latex Coffee Stains in typst" +license = [ + "MIT", +] +homepage = "https://github.com/leiserfg/fleck" + +[fletcher."0.5.8"] +url = "https://packages.typst.org/preview/fletcher-0.5.8.tar.gz" +hash = "sha256-kiqiNzFU4imhPnwzwV1bGgGfS3mZOo96JsKboA5yjtU=" +typstDeps = [ + "cetz_0_3_4", + "tidy_0_4_1", + "touying_0_5_5", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.7"] +url = "https://packages.typst.org/preview/fletcher-0.5.7.tar.gz" +hash = "sha256-jsLbE6cHDTjDelrGkB2CSIqfGaeAeQ1RcQRDBx3hA9k=" +typstDeps = [ + "cetz_0_3_4", + "tidy_0_4_1", + "touying_0_5_5", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.6"] +url = "https://packages.typst.org/preview/fletcher-0.5.6.tar.gz" +hash = "sha256-cJS0PCD/LP+4EFwSO5TDlG8vCTJ+WMIxmPl9o+k7Aas=" +typstDeps = [ + "cetz_0_3_3", + "tidy_0_4_1", + "touying_0_5_5", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.5"] +url = "https://packages.typst.org/preview/fletcher-0.5.5.tar.gz" +hash = "sha256-W+peOeFKgdAjuvLCGUI/Wue0ce7p/3qBfgCrW16o4tc=" +typstDeps = [ + "cetz_0_3_2", + "tidy_0_2_0", + "tidy_0_3_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.4"] +url = "https://packages.typst.org/preview/fletcher-0.5.4.tar.gz" +hash = "sha256-U9CqdJlwoTl+SAOcTi3/ewTxliaejXVxtzpE1M1hPu4=" +typstDeps = [ + "cetz_0_3_1", + "tidy_0_2_0", + "tidy_0_3_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.3"] +url = "https://packages.typst.org/preview/fletcher-0.5.3.tar.gz" +hash = "sha256-4cP31T2qLuWE+NrWeQjCAV2QJnxTeHZW6BQHK12K7Nw=" +typstDeps = [ + "cetz_0_3_1", + "tidy_0_2_0", + "tidy_0_3_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.2"] +url = "https://packages.typst.org/preview/fletcher-0.5.2.tar.gz" +hash = "sha256-VkC9UHhubcOqnVAIL07sKm18WWMKqyzsC/hBWjP/X3Q=" +typstDeps = [ + "cetz_0_3_1", + "tidy_0_2_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.1"] +url = "https://packages.typst.org/preview/fletcher-0.5.1.tar.gz" +hash = "sha256-UDGKnu/L/G5ZG74tnTsHRCEpf5R5kA7UURIiNFReEv4=" +typstDeps = [ + "cetz_0_2_2", + "tidy_0_2_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.5.0"] +url = "https://packages.typst.org/preview/fletcher-0.5.0.tar.gz" +hash = "sha256-8Sjc8jwA4u4iWd+SvewEK/ccnCRlq7QvV6CSOLK04dw=" +typstDeps = [ + "cetz_0_2_2", + "tidy_0_2_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.4.5"] +url = "https://packages.typst.org/preview/fletcher-0.4.5.tar.gz" +hash = "sha256-YuxxbViY9/qskTaDL6RRaN3wiiDriMeOLCy6juRSutY=" +typstDeps = [ + "cetz_0_2_2", + "tidy_0_2_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.4.4"] +url = "https://packages.typst.org/preview/fletcher-0.4.4.tar.gz" +hash = "sha256-bXRIADvQfhoONL/GomtviPuJzKHvTQmZFIjfYLyjQpo=" +typstDeps = [ + "cetz_0_2_2", + "tidy_0_2_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.4.3"] +url = "https://packages.typst.org/preview/fletcher-0.4.3.tar.gz" +hash = "sha256-kQ8uQEXcPrZm/wNFRwFLZNIWXuDN5vvJ5DRp7emqnE4=" +typstDeps = [ + "cetz_0_2_1", + "fletcher_0_4_2", + "tidy_0_2_0", + "touying_0_2_1", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.4.2"] +url = "https://packages.typst.org/preview/fletcher-0.4.2.tar.gz" +hash = "sha256-vYFUogLKIMO/R/tIQO/Knf1EJ+eorsrY+9L4AEJRufM=" +typstDeps = [ + "cetz_0_2_0", + "tidy_0_2_0", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.4.1"] +url = "https://packages.typst.org/preview/fletcher-0.4.1.tar.gz" +hash = "sha256-UVXEfdzSVGPjFSsTCcwbWiRFSrkLn0ajKqqdQos71JY=" +typstDeps = [ + "cetz_0_2_0", + "tidy_0_1_0", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.4.0"] +url = "https://packages.typst.org/preview/fletcher-0.4.0.tar.gz" +hash = "sha256-djU6wcv5GBbJzHHKdhch7fePziDyNyuJ4SQldZ1PeDQ=" +typstDeps = [ + "cetz_0_1_2", + "tidy_0_1_0", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.3.0"] +url = "https://packages.typst.org/preview/fletcher-0.3.0.tar.gz" +hash = "sha256-SdXzVIqnJtrvR/7eQ5srHDRAfhlu7Dxdke9Q1uZ8tks=" +typstDeps = [ + "cetz_0_1_2", + "tidy_0_1_0", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.2.0"] +url = "https://packages.typst.org/preview/fletcher-0.2.0.tar.gz" +hash = "sha256-W5kT8nSUFnDQ+eGEs1DeUT/TnkhgzGaBGHhoTTpL9ts=" +typstDeps = [ + "cetz_0_1_2", + "tidy_0_1_0", +] +description = "Draw diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[fletcher."0.1.1"] +url = "https://packages.typst.org/preview/fletcher-0.1.1.tar.gz" +hash = "sha256-hLWIbBoIiNbXPc2XJGmNluTIseokI0Fk+oQESX2ETrs=" +typstDeps = [ + "cetz_0_1_2", + "tidy_0_1_0", +] +description = "Draw commutative diagrams with nodes and arrows" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-fletcher" + +[flow."0.3.2"] +url = "https://packages.typst.org/preview/flow-0.3.2.tar.gz" +hash = "sha256-MXoV4FUiXltFY6DXxxLHCwoTs9u8DExruOJzXT20nyE=" +typstDeps = [ + "cetz-plot_0_1_1", + "whalogen_0_3_0", +] +description = "A few templates and too many scattered utils" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/MultisampledNight/flow" + +[flow."0.3.1"] +url = "https://packages.typst.org/preview/flow-0.3.1.tar.gz" +hash = "sha256-YwXzPmBurBdyOeuspshwbLRd4XSdiSlzK28J80k2+Fw=" +typstDeps = [] +description = "A few templates and too many scattered utils" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/MultisampledNight/flow" + +[flow."0.3.0"] +url = "https://packages.typst.org/preview/flow-0.3.0.tar.gz" +hash = "sha256-iRu3SEYaX2QtcIwdsCRH1obS3eLC5CgFEIeVspPplHY=" +typstDeps = [] +description = "A few templates and too many scattered utils" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/MultisampledNight/flow" + +[flow."0.2.0"] +url = "https://packages.typst.org/preview/flow-0.2.0.tar.gz" +hash = "sha256-fa0Cpawx5mWXtpt9EYSZ89e9rxZkpclH+7MgbUJenPs=" +typstDeps = [] +description = "A few templates and too many scattered utils" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/MultisampledNight/flow" + +[flow."0.1.2"] +url = "https://packages.typst.org/preview/flow-0.1.2.tar.gz" +hash = "sha256-fr53skFBa5OyY2bhnsd9JQvaVhPEb/+Byh7/i/PESMM=" +typstDeps = [ + "polylux_0_3_1", +] +description = "A few templates and too many scattered utils" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/MultisampledNight/flow" + +[flow-way."0.1.0"] +url = "https://packages.typst.org/preview/flow-way-0.1.0.tar.gz" +hash = "sha256-vsm19dHTTdWN5qRd0r/z28opU1qyD0y/0SChNbpIfXU=" +typstDeps = [] +description = "A simple Typst template for creating awesome notes and documents" +license = [ + "MIT", +] +homepage = "https://github.com/fexh10/flow-way" + +[flyingcircus."3.3.0"] +url = "https://packages.typst.org/preview/flyingcircus-3.3.0.tar.gz" +hash = "sha256-lOCr2yWHFdGlshaSRh67W+OAAu/6HPfl3j34V28eKc8=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "cuti_0_2_1", +] +description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship" +license = [ + "MIT", +] +homepage = "https://github.com/Tetragramm/flying-circus-typst-template" + +[flyingcircus."3.2.1"] +url = "https://packages.typst.org/preview/flyingcircus-3.2.1.tar.gz" +hash = "sha256-dmqOomiW/j5fNEyPqUho6Xsg/5qtQlfPwmMigqK+acg=" +typstDeps = [ + "cetz_0_3_3", + "cetz-plot_0_1_1", + "cuti_0_2_1", +] +description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship" +license = [ + "MIT", +] +homepage = "https://github.com/Tetragramm/flying-circus-typst-template" + +[flyingcircus."3.2.0"] +url = "https://packages.typst.org/preview/flyingcircus-3.2.0.tar.gz" +hash = "sha256-HQgoZ87KmcMBBuHQjYiwjtWAs19HXFC2ntMI0OvG/Lo=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", + "cuti_0_2_1", +] +description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship" +license = [ + "MIT", +] +homepage = "https://github.com/Tetragramm/flying-circus-typst-template" + +[flyingcircus."3.0.0"] +url = "https://packages.typst.org/preview/flyingcircus-3.0.0.tar.gz" +hash = "sha256-YshyMVu8ph/hRaX7CNaIpJCfHFqh4omXdD6JkGR3cBg=" +typstDeps = [ + "cetz_0_2_2", + "cuti_0_2_1", + "tablex_0_0_8", +] +description = "For creating homebrew documents with the same fancy style as the Flying Circus book? Provides simple commands to generate a whole aircraft stat page, vehicle, or even ship" +license = [ + "MIT", +] +homepage = "https://github.com/Tetragramm/flying-circus-typst-template" + +[fontawesome."0.6.0"] +url = "https://packages.typst.org/preview/fontawesome-0.6.0.tar.gz" +hash = "sha256-17IcZiVwT6xCucSIi5kfMDqWG1a503vVyLiiaTyoASU=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[fontawesome."0.5.0"] +url = "https://packages.typst.org/preview/fontawesome-0.5.0.tar.gz" +hash = "sha256-deUJ24arS9YenlMNjUgxsq9cZ7R/TksgNDDblCcPT5Q=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[fontawesome."0.4.0"] +url = "https://packages.typst.org/preview/fontawesome-0.4.0.tar.gz" +hash = "sha256-NRzVcTQP9nxOM0jhx/aIlUqOdMhkc6XPxHiXRCF5zFw=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[fontawesome."0.3.0"] +url = "https://packages.typst.org/preview/fontawesome-0.3.0.tar.gz" +hash = "sha256-v7PUcuyzw9g74hNYUO8y5EhBYnGJcqQ6Ia2Cqsijmno=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[fontawesome."0.2.1"] +url = "https://packages.typst.org/preview/fontawesome-0.2.1.tar.gz" +hash = "sha256-AUj1F9Z0Z6ETOsT9y7qMvC+Q4WZ75STIRAODf/wmf0Q=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[fontawesome."0.2.0"] +url = "https://packages.typst.org/preview/fontawesome-0.2.0.tar.gz" +hash = "sha256-YOWFmjt6AEWaFybdOiokFYBL7GGW+PpTxlLw5ajmOaw=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[fontawesome."0.1.1"] +url = "https://packages.typst.org/preview/fontawesome-0.1.1.tar.gz" +hash = "sha256-20THl+eH3LYjUoeNwmjqx9e/L7Ug0BZ9KZDuIf/DRqc=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[fontawesome."0.1.0"] +url = "https://packages.typst.org/preview/fontawesome-0.1.0.tar.gz" +hash = "sha256-duYhendgcUntqBm/vyMDPwb4r7JFCai2Ws6V4qlf3Mw=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + +[formal."0.1.0"] +url = "https://packages.typst.org/preview/formal-0.1.0.tar.gz" +hash = "sha256-OaJGUsIntg35UNeq0qYlDnjlPxE4HoGeT8RpYpBi4o0=" +typstDeps = [ + "colorful-boxes_1_4_3", + "fontawesome_0_6_0", + "lilaq_0_5_0", + "physica_0_9_6", +] +description = "Elegant documents for academic and professional use" +license = [ + "MIT", +] +homepage = "https://github.com/vsheg/formal" + +[formalettre."0.3.0"] +url = "https://packages.typst.org/preview/formalettre-0.3.0.tar.gz" +hash = "sha256-ju6auj7eEcoMav4FOOr44aymHwCLdkeHMX/OGHVM7Eo=" +typstDeps = [] +description = "French formal letter template" +license = [ + "BSD-3-Clause", +] +homepage = "https://github.com/Brndan/lettre" + +[formalettre."0.2.0"] +url = "https://packages.typst.org/preview/formalettre-0.2.0.tar.gz" +hash = "sha256-JPOTl+Gwdlpma58BMRQWv/v5vOHnvrqG3Kgsp3S7u5k=" +typstDeps = [] +description = "French formal letter template" +license = [ + "BSD-3-Clause", +] +homepage = "https://github.com/Brndan/lettre" + +[formalettre."0.1.3"] +url = "https://packages.typst.org/preview/formalettre-0.1.3.tar.gz" +hash = "sha256-51SXjB7Icsb0NUPvhPhmaZxa2AJF8D0DLhm5zFzH7YI=" +typstDeps = [] +description = "French formal letter template" +license = [ + "BSD-3-Clause", +] +homepage = "https://github.com/Brndan/lettre" + +[formalettre."0.1.2"] +url = "https://packages.typst.org/preview/formalettre-0.1.2.tar.gz" +hash = "sha256-pAfyUg/DQ0a8EoRPRc9rIV+URWHP8ea32R8gevkcjJQ=" +typstDeps = [] +description = "French formal letter template" +license = [ + "BSD-3-Clause", +] +homepage = "https://github.com/Brndan/lettre" + +[formalettre."0.1.1"] +url = "https://packages.typst.org/preview/formalettre-0.1.1.tar.gz" +hash = "sha256-8j/6S6MIiLWtrl8OZXG5ytjJCUrW3vdAf0jdvpMnEzU=" +typstDeps = [] +description = "French formal letter template" +license = [ + "BSD-3-Clause", +] +homepage = "https://github.com/Brndan/lettre" + +[formalettre."0.1.0"] +url = "https://packages.typst.org/preview/formalettre-0.1.0.tar.gz" +hash = "sha256-hrPn45hqV5Z0bpFEaBmOHAUZqAoimGb0rWwz2itYleI=" +typstDeps = [] +description = "French formal letter template" +license = [ + "BSD-3-Clause", +] +homepage = "https://github.com/Brndan/lettre" + +[frackable."0.2.0"] +url = "https://packages.typst.org/preview/frackable-0.2.0.tar.gz" +hash = "sha256-IbKUPIcWNBgzLCSyiw4hF2CEL6bVj6ygs2fyy3ZZB30=" +typstDeps = [] +description = "Vulgar Fractions" +license = [ + "Unlicense", +] +homepage = "https://www.github.com/jamesrswift/frackable" + +[frackable."0.1.0"] +url = "https://packages.typst.org/preview/frackable-0.1.0.tar.gz" +hash = "sha256-IRpnEGFKoHQeD8vFhj4NBjKggUj60eiN9V3iSDrN5oo=" +typstDeps = [] +description = "Vulgar Fractions" +license = [ + "Unlicense", +] +homepage = "https://www.github.com/jamesrswift/frackable" + +[fractus."0.1.0"] +url = "https://packages.typst.org/preview/fractus-0.1.0.tar.gz" +hash = "sha256-cR35144FfUGIV9PW9ceZOOSWJ4kTIRwl2jV5Ws/NKVU=" +typstDeps = [] +description = "Operations on fractions" +license = [ + "MIT", +] +homepage = "https://github.com/ejbasas/fractus" + +[fractusist."0.3.2"] +url = "https://packages.typst.org/preview/fractusist-0.3.2.tar.gz" +hash = "sha256-MZLCEJq/4006XsJyf91k2WlF/zgQo2Nx0Ng1FsV4ojI=" +typstDeps = [ + "suiji_0_3_0", +] +description = "Create a variety of wonderful fractals and curves in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/liuguangxi/fractusist" + +[fractusist."0.3.1"] +url = "https://packages.typst.org/preview/fractusist-0.3.1.tar.gz" +hash = "sha256-r2W2PTjgLYmBW2J8AMP6KMZC8QtJ0NfesIcEZHVNxSs=" +typstDeps = [ + "suiji_0_3_0", +] +description = "Create a variety of wonderful fractals and curves in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/liuguangxi/fractusist" + +[fractusist."0.3.0"] +url = "https://packages.typst.org/preview/fractusist-0.3.0.tar.gz" +hash = "sha256-wwfAXz3v0fNXpfoAPwGrhnywurAbNRqteP5iXO2eNBY=" +typstDeps = [ + "suiji_0_3_0", +] +description = "Create a variety of wonderful fractals and curves in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/liuguangxi/fractusist" + +[fractusist."0.2.1"] +url = "https://packages.typst.org/preview/fractusist-0.2.1.tar.gz" +hash = "sha256-3LjypKw7K/1b6PdQl6nx7MEit3+RWIt5ajEy3R2zoSI=" +typstDeps = [ + "suiji_0_3_0", +] +description = "Create a variety of wonderful fractals and curves in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/liuguangxi/fractusist" + +[fractusist."0.2.0"] +url = "https://packages.typst.org/preview/fractusist-0.2.0.tar.gz" +hash = "sha256-0cO37CDCdROoMiiIMq4j5eSNfrYdV/SAzC6eSsuPWbk=" +typstDeps = [] +description = "Create a variety of wonderful fractals and curves in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/liuguangxi/fractusist" + +[fractusist."0.1.1"] +url = "https://packages.typst.org/preview/fractusist-0.1.1.tar.gz" +hash = "sha256-5M+tYjNToqWsg/2XKCcQZQ9ch0HVJDpoHnDfbcJ8zEo=" +typstDeps = [] +description = "Create a variety of wonderful fractals in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/liuguangxi/fractusist" + +[fractusist."0.1.0"] +url = "https://packages.typst.org/preview/fractusist-0.1.0.tar.gz" +hash = "sha256-P5SsaiLCPEW3Te6ellAeMOTNxsCrq1ju2qWmTRo2SxM=" +typstDeps = [] +description = "Create a variety of wonderful fractals in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/liuguangxi/fractusist" + +[frame-it."1.2.0"] +url = "https://packages.typst.org/preview/frame-it-1.2.0.tar.gz" +hash = "sha256-DWn68Fo+tw//7J9SGE0BmhoXB/Rtv9Y4tsvxWssAhqI=" +typstDeps = [] +description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source" +license = [ + "MIT", +] +homepage = "https://github.com/marc-thieme/frame-it" + +[frame-it."1.1.2"] +url = "https://packages.typst.org/preview/frame-it-1.1.2.tar.gz" +hash = "sha256-kQ3ThqquoBUsn9WW0R93FTAGnkdyGc4dOc9XfZNOzPg=" +typstDeps = [] +description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source" +license = [ + "MIT", +] +homepage = "https://github.com/marc-thieme/frame-it" + +[frame-it."1.1.1"] +url = "https://packages.typst.org/preview/frame-it-1.1.1.tar.gz" +hash = "sha256-pYwsLkD2Xo26SACm7EYqjMmXOU8GfP9qJ9XLrdLxPmY=" +typstDeps = [] +description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source" +license = [ + "MIT", +] +homepage = "https://github.com/marc-thieme/frame-it" + +[frame-it."1.1.0"] +url = "https://packages.typst.org/preview/frame-it-1.1.0.tar.gz" +hash = "sha256-FsZmkx94QgBad48kvThhxhyqyLQMElKECWvxNUYsh7Y=" +typstDeps = [] +description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source" +license = [ + "MIT", +] +homepage = "https://github.com/marc-thieme/frame-it" + +[frame-it."1.0.0"] +url = "https://packages.typst.org/preview/frame-it-1.0.0.tar.gz" +hash = "sha256-dFhV0E8tYVrjyM2Acj6GtkX9YUKimFkb4wZP9gR6tss=" +typstDeps = [] +description = "Beautiful, flexible, and integrated. Display custom frames for theorems, environments, and more. Attractive visuals with syntax that blends seamlessly into the source" +license = [ + "MIT", +] +homepage = "https://github.com/marc-thieme/frame-it" + +[free-cv."1.0.0"] +url = "https://packages.typst.org/preview/free-cv-1.0.0.tar.gz" +hash = "sha256-xcW74X+VzfOZ4XxIzy3npTt6nuggDNgzpRVHfW6X8xE=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "Spacious and colorful CV using YAML and fontawesome" +license = [ + "AGPL-3.0-only", +] +homepage = "https://github.com/Freezy727/freeCV" + +[friendly-polylux."0.1.0"] +url = "https://packages.typst.org/preview/friendly-polylux-0.1.0.tar.gz" +hash = "sha256-mgOwl7b2nkmvW5dtDpuoZih1AAWqgCB5S1QRcevtftU=" +typstDeps = [ + "polylux_0_4_0", + "tiaoma_0_2_1", +] +description = "Friendly and playful template for Polylux" +license = [ + "MIT", +] +homepage = "https://github.com/polylux-typ/friendly" + +[frogst."1.0.0"] +url = "https://packages.typst.org/preview/frogst-1.0.0.tar.gz" +hash = "sha256-YxVBCbrlm6532moORtmQcHfd39ljXJ9Y+/46GOuaPBs=" +typstDeps = [] +description = "Literal naming of numbers in French" +license = [ + "MIT", +] +homepage = "https://github.com/Raphael-CV/frogst" + +[fruitify."0.1.1"] +url = "https://packages.typst.org/preview/fruitify-0.1.1.tar.gz" +hash = "sha256-CEvzympelzWxXFudpn/7w1noPcfrq7RWUxcVHw+FqIs=" +typstDeps = [] +description = "Replace letters in equations with fruit emoji" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/T0mstone/typst-fruitify" + +[fruitify."0.1.0"] +url = "https://packages.typst.org/preview/fruitify-0.1.0.tar.gz" +hash = "sha256-/djCVsBkp4Guve1AweraBPE01Zc0SB9RQ2DheZlwvBw=" +typstDeps = [] +description = "Replace letters in equations with fruit emojis" +license = [ + "MIT", +] +homepage = "https://codeberg.org/T0mstone/typst-fruitify" + +[funarray."0.4.0"] +url = "https://packages.typst.org/preview/funarray-0.4.0.tar.gz" +hash = "sha256-PSl/2p8rEH7KxYuzs/gnUcUfWTQUHj9wODNwv8xmwlk=" +typstDeps = [ + "funarray_0_3_0", + "idwtet_0_3_0", +] +description = "Package providing convenient functional functions to use on arrays" +license = [ + "MIT", +] +homepage = "https://github.com/ludwig-austermann/typst-funarray" + +[funarray."0.3.0"] +url = "https://packages.typst.org/preview/funarray-0.3.0.tar.gz" +hash = "sha256-KORxcflDROjQuOepZwAuoQECk2b7vikZsCDhgQMmCu0=" +typstDeps = [ + "idwtet_0_2_0", +] +description = "Package providing convenient functional functions to use on arrays" +license = [ + "MIT", +] +homepage = "https://github.com/ludwig-austermann/typst-funarray" + +[funarray."0.2.0"] +url = "https://packages.typst.org/preview/funarray-0.2.0.tar.gz" +hash = "sha256-PL7W4WQ2Y/BhAHdpNmfNWPpAvhbeFRYhcxSRZjsUBrw=" +typstDeps = [] +description = "Package providing convenient functional functions to use on arrays" +license = [ + "MIT", +] +homepage = "https://github.com/ludwig-austermann/typst-funarray" + +[fuzzy-cnoi-statement."0.1.3"] +url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.3.tar.gz" +hash = "sha256-EfMSqNURTDIh84oP0RlvJjRxYsDa48qvD/4u6wXZP/k=" +typstDeps = [ + "codelst_2_0_0", +] +description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming" +license = [ + "MIT-0", +] +homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement" + +[fuzzy-cnoi-statement."0.1.2"] +url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.2.tar.gz" +hash = "sha256-q9aDYaOu6do+VtxFiMagUJcx93Nn5bnyAVsWZrw8ZTE=" +typstDeps = [ + "codelst_2_0_0", +] +description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming" +license = [ + "MIT-0", +] +homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement" + +[fuzzy-cnoi-statement."0.1.1"] +url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.1.tar.gz" +hash = "sha256-rhZCGzB78R0OKDVJvMmAttUOp8pr677A/muWK1IJv48=" +typstDeps = [ + "codelst_2_0_0", +] +description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming" +license = [ + "MIT-0", +] +homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement" + +[fuzzy-cnoi-statement."0.1.0"] +url = "https://packages.typst.org/preview/fuzzy-cnoi-statement-0.1.0.tar.gz" +hash = "sha256-LVUIrP8yHkMxdCI1dOEVIpX8R5BYYhq58V17eXoR4Rs=" +typstDeps = [ + "codelst_2_0_0", +] +description = "A template for CNOI(Olympiad in Informatics in China)-style statements for competitive programming" +license = [ + "MIT-0", +] +homepage = "https://github.com/Wallbreaker5th/fuzzy-cnoi-statement" + +[fyrst-ru-labreport."0.1.0"] +url = "https://packages.typst.org/preview/fyrst-ru-labreport-0.1.0.tar.gz" +hash = "sha256-RC/HAKUic0fHniU1UNL4lsTmd9d+l+ZseEU7f4cVv+c=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", + "unify_0_7_0", +] +description = "Reykjavík University Lab Report Template" +license = [ + "GPL-3.0-or-later", +] + +[g-exam."0.4.3"] +url = "https://packages.typst.org/preview/g-exam-0.4.3.tar.gz" +hash = "sha256-nQd4e5V6M8HSIzq5o7yDHrTljmVvFDzBteMCoSkM1qs=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.4.2"] +url = "https://packages.typst.org/preview/g-exam-0.4.2.tar.gz" +hash = "sha256-PLlZ4+/CPccRlre8hTfe8/tNe/372pHPeX6ZuikuyCI=" +typstDeps = [ + "oxifmt_0_2_0", + "oxifmt_0_2_1", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.4.1"] +url = "https://packages.typst.org/preview/g-exam-0.4.1.tar.gz" +hash = "sha256-8LIOhBCxrmTsX8DR0pSuGV7hGULvz2HAuIutPmJ2z5U=" +typstDeps = [ + "oxifmt_0_2_0", + "oxifmt_0_2_1", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.4.0"] +url = "https://packages.typst.org/preview/g-exam-0.4.0.tar.gz" +hash = "sha256-9og+m/vp1pFckEnQvug6C3Si8MU2iP5Mo109df4K4h4=" +typstDeps = [ + "oxifmt_0_2_0", + "oxifmt_0_2_1", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.3.2"] +url = "https://packages.typst.org/preview/g-exam-0.3.2.tar.gz" +hash = "sha256-lStEam+Du2Zfb8NzVciMfsm1hruB3Y7OOV17956+cyk=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.3.1"] +url = "https://packages.typst.org/preview/g-exam-0.3.1.tar.gz" +hash = "sha256-ty9h9uZUccdyIzVoXZVJpq3cJgPyWUrIyBe5CUzrZpQ=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.3.0"] +url = "https://packages.typst.org/preview/g-exam-0.3.0.tar.gz" +hash = "sha256-vi/ICLdb3X6kR8VKQL1/jhoPoooomg24AYIhQZ5j74A=" +typstDeps = [ + "g-exam_0_2_0", + "oxifmt_0_2_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.2.0"] +url = "https://packages.typst.org/preview/g-exam-0.2.0.tar.gz" +hash = "sha256-oRP8AVNK5rS+3oEajim/3HrcmOOw8265SOvRTbDlUMQ=" +typstDeps = [ + "cetz_0_2_1", + "oxifmt_0_2_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.1.1"] +url = "https://packages.typst.org/preview/g-exam-0.1.1.tar.gz" +hash = "sha256-AqqkJZtn7QJkLodiCjxV612JJ4dN8/OwKl3FO8uqdlg=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[g-exam."0.1.0"] +url = "https://packages.typst.org/preview/g-exam-0.1.0.tar.gz" +hash = "sha256-Mmwb6iyJT0FxJgVYdUY3xcJ5tTEAqMaY5ijeRM7Yz4w=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + +[gallus-hsg."1.0.0"] +url = "https://packages.typst.org/preview/gallus-hsg-1.0.0.tar.gz" +hash = "sha256-A747wV1XUbuIclmAC39vvZ2pBXlVR2R7evhuajKNV4I=" +typstDeps = [] +description = "Thesis at the University of St. Gallen (HSG" +license = [ + "MIT", +] +homepage = "https://github.com/joshuabeny1999/unisg-thesis-template-typst" + +[game-theoryst."0.1.0"] +url = "https://packages.typst.org/preview/game-theoryst-0.1.0.tar.gz" +hash = "sha256-1FtNDcbP6TBXZQ9SlWzmHSrp6F8pTPEnjDKougnlCqI=" +typstDeps = [ + "pinit_0_1_4", +] +description = "A package for typesetting games in Typst" +license = [ + "AGPL-3.0-only", +] +homepage = "https://github.com/connortwiegand/game-theoryst" + +[gantty."0.5.1"] +url = "https://packages.typst.org/preview/gantty-0.5.1.tar.gz" +hash = "sha256-ArnrCprU21Q+lrqfTnoNMAFyw+X2XPtaPCEjwFZhOxM=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + +[gantty."0.5.0"] +url = "https://packages.typst.org/preview/gantty-0.5.0.tar.gz" +hash = "sha256-mugUfQy5C7c/y8pac2qsjdXBBj+nk8eNn97NQfh1ZoQ=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + +[gantty."0.4.0"] +url = "https://packages.typst.org/preview/gantty-0.4.0.tar.gz" +hash = "sha256-ySsKh1/9wrrAnUFGIW/x+MqtYxcRsRgJYavf5RIEp44=" +typstDeps = [ + "cetz_0_4_1", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-only", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + +[gantty."0.3.0"] +url = "https://packages.typst.org/preview/gantty-0.3.0.tar.gz" +hash = "sha256-yfyaSGb3c8+ZnyJdF3gfI+faUbjhZI0qhYMXCRPh6nk=" +typstDeps = [ + "cetz_0_3_4", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-only", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + +[gantty."0.2.0"] +url = "https://packages.typst.org/preview/gantty-0.2.0.tar.gz" +hash = "sha256-AFrlAvMhIeQ8yP9Oa8ID4eO9eA4jGzEGxI6BnBjHlik=" +typstDeps = [ + "cetz_0_3_1", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-only", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + +[gantty."0.1.0"] +url = "https://packages.typst.org/preview/gantty-0.1.0.tar.gz" +hash = "sha256-x2Pqz9YNFGBAPludpA8EcnQ6pizeRC2kes4gK5etqSc=" +typstDeps = [ + "cetz_0_3_1", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-only", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + +[genealotree."0.3.0"] +url = "https://packages.typst.org/preview/genealotree-0.3.0.tar.gz" +hash = "sha256-zRq5Wn25rsrmFXiThlVhPhEQYU5/umgmJ5XK5tKoa34=" +typstDeps = [ + "cetz_0_4_1", + "t4t_0_4_3", +] +description = "A package to draw genealogical trees, based on CeTZ" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/drloiseau/genealogy" + +[genealotree."0.2.0"] +url = "https://packages.typst.org/preview/genealotree-0.2.0.tar.gz" +hash = "sha256-RvKMkv1h5huYkLTNdGOijBi+wBMZxud93f24WDhJ28s=" +typstDeps = [ + "cetz_0_3_1", + "t4t_0_3_2", +] +description = "A package to draw genealogical trees, based on CeTZ" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/drloiseau/genealogy" + +[genealotree."0.1.0"] +url = "https://packages.typst.org/preview/genealotree-0.1.0.tar.gz" +hash = "sha256-koLFbWm+rJPiO6Ki4g0GDu8fk3R+/+o9B3Mogn9iZ20=" +typstDeps = [ + "cetz_0_2_2", + "mantys_0_1_3", + "showman_0_1_1", + "tidy_0_2_0", +] +description = "A package to draw genealogical trees, based on CeTZ" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/drloiseau/genealogy" + +[gentle-clues."1.2.0"] +url = "https://packages.typst.org/preview/gentle-clues-1.2.0.tar.gz" +hash = "sha256-oQ/HcKJRijQPM450fNF7vF5WAQCu3bWLmy6bkmrnHfg=" +typstDeps = [ + "linguify_0_4_2", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."1.1.0"] +url = "https://packages.typst.org/preview/gentle-clues-1.1.0.tar.gz" +hash = "sha256-dNu3KMkbnbaI2gb4yeVQ4dczNaEj63D0U1INwv+Nj6M=" +typstDeps = [ + "linguify_0_4_0", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."1.0.0"] +url = "https://packages.typst.org/preview/gentle-clues-1.0.0.tar.gz" +hash = "sha256-/ht2Jxt2iGGyMJ5IlCdxTadp5cE1RXZ4x7nhcDCL4hQ=" +typstDeps = [ + "linguify_0_4_0", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."0.9.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.9.0.tar.gz" +hash = "sha256-LuFJvWPZBIWGMs3VDYvnU3FBUhvmW+MnF/RnH+9PTnc=" +typstDeps = [ + "linguify_0_4_0", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."0.8.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.8.0.tar.gz" +hash = "sha256-Ze1BkoxQNC4g+TuaOgE0liqg+fmKuxwrF+PS5HS5T80=" +typstDeps = [ + "linguify_0_4_0", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."0.7.1"] +url = "https://packages.typst.org/preview/gentle-clues-0.7.1.tar.gz" +hash = "sha256-wXnn1yH08/WZ8BKjbckcCeMQpEp1NmpiycdQtS+/Up0=" +typstDeps = [ + "linguify_0_3_1", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."0.7.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.7.0.tar.gz" +hash = "sha256-H185bbeAP4FRwjNqB1IilBrC9FjCcNYQKP9N4yiiIU4=" +typstDeps = [ + "linguify_0_3_0", +] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."0.6.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.6.0.tar.gz" +hash = "sha256-F1v2ddEE8frEbUFmQXo4U5ErAr6piy3v9JK0ueBT26Y=" +typstDeps = [] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-gentle-clues" + +[gentle-clues."0.5.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.5.0.tar.gz" +hash = "sha256-nTL2Q+PmJpjMx+IONrARiEdeg1H134yg5Hs3/yHHPqQ=" +typstDeps = [] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-admonish" + +[gentle-clues."0.4.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.4.0.tar.gz" +hash = "sha256-FopJ9x0PwJ75FpZzJ6bWOGfKi+nEv33BG2JvKrwjWOU=" +typstDeps = [] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-admonish" + +[gentle-clues."0.3.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.3.0.tar.gz" +hash = "sha256-wM8+dJlt5sinHEfeukemU5GCpoSCgWLIPhlo9OgwUkM=" +typstDeps = [] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-admonish" + +[gentle-clues."0.2.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.2.0.tar.gz" +hash = "sha256-taOqroBAXxmLEmJ+vx8iDv8rQkxvTMOXH7QI+go2RDc=" +typstDeps = [] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] + +[gentle-clues."0.1.0"] +url = "https://packages.typst.org/preview/gentle-clues-0.1.0.tar.gz" +hash = "sha256-/ZfCEqiaSbo9Vp31LSccM1XUzYOey7ZwJEggfkK4YsU=" +typstDeps = [] +description = "A package to simply create and add some admonitions to your documents" +license = [ + "MIT", +] + +[georges-yetyp."0.2.0"] +url = "https://packages.typst.org/preview/georges-yetyp-0.2.0.tar.gz" +hash = "sha256-8D8yog9VhYEhXbOxV3aETd0MkfnM5dp3IxWXZbTa55Y=" +typstDeps = [] +description = "Unofficial template for Polytech Grenoble internship reports" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/elegaanz/georges-yetyp" + +[georges-yetyp."0.1.0"] +url = "https://packages.typst.org/preview/georges-yetyp-0.1.0.tar.gz" +hash = "sha256-FXlaaujhd4EGTEB4zxrldcVG6nveJOlJd87tBgLRwTE=" +typstDeps = [] +description = "Unofficial template for Polytech Grenoble internship reports" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/elegaanz/georges-yetyp" + +[gibz-script."0.1.0"] +url = "https://packages.typst.org/preview/gibz-script-0.1.0.tar.gz" +hash = "sha256-EeO7J3h6bv3HWPRPIZ6cC5dIIAq0HCHqIqP+FXkjUcA=" +typstDeps = [ + "ccicons_1_0_1", + "codly_1_3_0", + "codly-languages_0_1_8", + "hydra_0_6_2", + "octique_0_1_1", +] +description = "Template and components (tasks, hints, supplementary, code box) with DE/EN i18n and a clean flat API to be used at GIBZ for creating teaching materials" +license = [ + "MIT-0", +] +homepage = "https://gitlab.com/GIBZ/public/typst-template" + +[gloat."0.1.0"] +url = "https://packages.typst.org/preview/gloat-0.1.0.tar.gz" +hash = "sha256-n+56p2NjXlfa07rW0L4hNaH9nh6ATMBytQqZuS5RbU4=" +typstDeps = [] +description = "Academic CV for the natural sciences" +license = [ + "Unlicense", +] +homepage = "https://github.com/eweix/gloat" + +[gloss-awe."0.0.5"] +url = "https://packages.typst.org/preview/gloss-awe-0.0.5.tar.gz" +hash = "sha256-DVVxTx6TN3oZjWy1W9VZdAj0ymLpoFtEIaS0RO3KkE4=" +typstDeps = [] +description = "Awesome Glossary for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/gloss-awe" + +[gloss-awe."0.0.4"] +url = "https://packages.typst.org/preview/gloss-awe-0.0.4.tar.gz" +hash = "sha256-jPukTVrk1spgzTwzaDzWwJH7cbBdOsIHyIx53B7POJ0=" +typstDeps = [] +description = "Awesome Glossary for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/typst-glossary" + +[gloss-awe."0.0.3"] +url = "https://packages.typst.org/preview/gloss-awe-0.0.3.tar.gz" +hash = "sha256-CPgyPw5giFS1sQXgczM2Rzk5u6BPqZ4rDCsboFliC9k=" +typstDeps = [] +description = "An Awesome Glossary for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/typst-glossary" + +[glossarium."0.5.9"] +url = "https://packages.typst.org/preview/glossarium-0.5.9.tar.gz" +hash = "sha256-0dnDMC0jWETnlEouT/gTO1zF8bOe6fHREU0Op3VzpHI=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.8"] +url = "https://packages.typst.org/preview/glossarium-0.5.8.tar.gz" +hash = "sha256-sh1Dl2QJmVSBkbin5+LNUpRkFm9iTg16iKKQVcwo5C8=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.7"] +url = "https://packages.typst.org/preview/glossarium-0.5.7.tar.gz" +hash = "sha256-5+1SaEv+x4rXLNcuYQTgEegt7U1V8CWo4CY1ctM0LHA=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.6"] +url = "https://packages.typst.org/preview/glossarium-0.5.6.tar.gz" +hash = "sha256-PSJistNVYaEt1VjLxTzieSrOCNKkdbl8x5JWrF/6qfM=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.5"] +url = "https://packages.typst.org/preview/glossarium-0.5.5.tar.gz" +hash = "sha256-XduxdzVNbGQJoZgrK0z0nEQ9UfMYsJYakWM5m88S0As=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.4"] +url = "https://packages.typst.org/preview/glossarium-0.5.4.tar.gz" +hash = "sha256-OXkASSsWbK2IjoRK6n8L1VLOLKqoj184+2Nl1KrAGh8=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.3"] +url = "https://packages.typst.org/preview/glossarium-0.5.3.tar.gz" +hash = "sha256-rStKB+t5GHdJlTW62hptnnR+jNQSfnum+EGXTJkY/4M=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.2"] +url = "https://packages.typst.org/preview/glossarium-0.5.2.tar.gz" +hash = "sha256-Tu2byG0g5gNYa4xfe+8wWO481+afQgKLHySyALDVgrw=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.1"] +url = "https://packages.typst.org/preview/glossarium-0.5.1.tar.gz" +hash = "sha256-f7BLwG+8U/YKnnNiUGACiPppa7mGEECBgOZYvLdQCrM=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.0"] +url = "https://packages.typst.org/preview/glossarium-0.5.0.tar.gz" +hash = "sha256-++xzXtsv4jDh6XH9cRuEJv9l37gesWYTl4uIub7hXBg=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.4.2"] +url = "https://packages.typst.org/preview/glossarium-0.4.2.tar.gz" +hash = "sha256-wT1rCzfcCwMPM6l9imA+JNzwzJsPf4SALVJ5QiaVF0k=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.4.1"] +url = "https://packages.typst.org/preview/glossarium-0.4.1.tar.gz" +hash = "sha256-zUSkga1UiInv79+3oZ0sGQ7gvwHOYm0q2fM/uJ3eFHQ=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/ENIB-Community/glossarium" + +[glossarium."0.4.0"] +url = "https://packages.typst.org/preview/glossarium-0.4.0.tar.gz" +hash = "sha256-gfKkatI389dGlLaq6pJN0AMYs96+t3LM2sCt7Q8x7pg=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/ENIB-Community/glossarium" + +[glossarium."0.3.0"] +url = "https://packages.typst.org/preview/glossarium-0.3.0.tar.gz" +hash = "sha256-uwgmxTeQCTxQGEJQyPGGDztE6++aA60WfUsTH9dOxJw=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/ENIB-Community/glossarium" + +[glossarium."0.2.6"] +url = "https://packages.typst.org/preview/glossarium-0.2.6.tar.gz" +hash = "sha256-tQ2YDPcJChJK/6MJO15/G5WOX1v/T+hJvfU0G5evTeQ=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/ENIB-Community/glossarium" + +[glossarium."0.2.5"] +url = "https://packages.typst.org/preview/glossarium-0.2.5.tar.gz" +hash = "sha256-B+4GykbLJXfDq3JRrtv39ODvg878ZdMKPmvkHRJuRH4=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/ENIB-Community/glossarium" + +[glossarium."0.2.4"] +url = "https://packages.typst.org/preview/glossarium-0.2.4.tar.gz" +hash = "sha256-7W2pXf4VDYmpS22hF9p3crsRd7NR0edXlh8F9Bb17Ao=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/ENIB-Community/glossarium" + +[glossarium."0.2.3"] +url = "https://packages.typst.org/preview/glossarium-0.2.3.tar.gz" +hash = "sha256-BMIZNhYt6otDeZBgxe0hqYZwu0kJ32u/XxeKh8NUtFY=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/slashformotion/glossarium" + +[glossarium."0.2.2"] +url = "https://packages.typst.org/preview/glossarium-0.2.2.tar.gz" +hash = "sha256-/cILLiIGo9MEDCYel2bgP43Jmd8pzJDxa1I87A7VKCc=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/ENIB-Community/glossarium" + +[glossarium."0.2.1"] +url = "https://packages.typst.org/preview/glossarium-0.2.1.tar.gz" +hash = "sha256-SK0Ighj+9GNlBVzqkWM3/ljJL2zZHrG3AQNGgX+yr2Q=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/slashformotion/glossarium" + +[glossarium."0.2.0"] +url = "https://packages.typst.org/preview/glossarium-0.2.0.tar.gz" +hash = "sha256-4V5RFcDeLW70KFjJstoNic9AmRrhXwEJBqJnamhcOhk=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/slashformotion/glossarium" + +[glossarium."0.1.0"] +url = "https://packages.typst.org/preview/glossarium-0.1.0.tar.gz" +hash = "sha256-O36TdR7DxoA6k3OHo39vrWX1nrSrsQq4b9VXhQspZaM=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/slashformotion/glossarium" + +[glossy."0.9.0"] +url = "https://packages.typst.org/preview/glossy-0.9.0.tar.gz" +hash = "sha256-D77rwxgS1egHMYbqXUgSTkryvQyKzHtQ/Dahyeb6KiE=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.8.0"] +url = "https://packages.typst.org/preview/glossy-0.8.0.tar.gz" +hash = "sha256-7vhOwDSgwHCLwZ2h2MNn7dRYlyhCdB9rxG58SDunBBs=" +typstDeps = [ + "glossarium_0_5_3", + "valkyrie_0_2_2", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.7.0"] +url = "https://packages.typst.org/preview/glossy-0.7.0.tar.gz" +hash = "sha256-Qt2XoZeSw9w2oPpVmR7DxtpYgM+HBQroTck9KkE9qeY=" +typstDeps = [ + "glossarium_0_5_3", + "valkyrie_0_2_2", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.6.0"] +url = "https://packages.typst.org/preview/glossy-0.6.0.tar.gz" +hash = "sha256-GF+UKSxd/K57frAgzxpwhByAo2uZibbhl01KLAZD2Xw=" +typstDeps = [ + "glossarium_0_5_1", + "valkyrie_0_2_1", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.5.2"] +url = "https://packages.typst.org/preview/glossy-0.5.2.tar.gz" +hash = "sha256-afjFWWTSPRhUJwUPhYNkPQdaWNbGblZWXXMXIYgiMgE=" +typstDeps = [ + "glossarium_0_5_1", + "valkyrie_0_2_1", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.5.1"] +url = "https://packages.typst.org/preview/glossy-0.5.1.tar.gz" +hash = "sha256-UmXBNMBLHEckKl5FBvltim9UobPkYu6zlQyx9UA/WK4=" +typstDeps = [ + "valkyrie_0_2_1", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.5.0"] +url = "https://packages.typst.org/preview/glossy-0.5.0.tar.gz" +hash = "sha256-HKy8jiheIwO6g/R5eOmy55/Rhpt2Bnm6T+C+yVkvO+E=" +typstDeps = [ + "valkyrie_0_2_1", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.4.1"] +url = "https://packages.typst.org/preview/glossy-0.4.1.tar.gz" +hash = "sha256-kMKeM24y6sJ+kUi7E97Hm54tEdorMiHbNkgsW7Bkx40=" +typstDeps = [ + "valkyrie_0_2_1", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.4.0"] +url = "https://packages.typst.org/preview/glossy-0.4.0.tar.gz" +hash = "sha256-km8u8jInFksaNqT0j81+xFSy8BNCZjz4Uz0kNxCOET4=" +typstDeps = [ + "valkyrie_0_2_1", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.3.0"] +url = "https://packages.typst.org/preview/glossy-0.3.0.tar.gz" +hash = "sha256-KLNnhsZWGqQ0oUTp1rnzB6cN4fzBmVsXboj3NdXhhm4=" +typstDeps = [ + "valkyrie_0_2_1", +] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.2.2"] +url = "https://packages.typst.org/preview/glossy-0.2.2.tar.gz" +hash = "sha256-qFvx4q4kzu60/gLs7Y7ebkvhSUBs4pdDQLk/1tz1sg0=" +typstDeps = [] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.2.1"] +url = "https://packages.typst.org/preview/glossy-0.2.1.tar.gz" +hash = "sha256-hfbprk6x57XOcMa5HEXVs73PCpLeh2CJYeTjI4/m+BA=" +typstDeps = [] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.2.0"] +url = "https://packages.typst.org/preview/glossy-0.2.0.tar.gz" +hash = "sha256-cThfCe0IvWLboyqbnIravumLGpNeYXxQeAfOTvKAPaU=" +typstDeps = [] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.1.2"] +url = "https://packages.typst.org/preview/glossy-0.1.2.tar.gz" +hash = "sha256-lYsYNmBCp6YNSyyiZhy7k3W/cPcMRc0yRKVEi9nGbbU=" +typstDeps = [] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.1.1"] +url = "https://packages.typst.org/preview/glossy-0.1.1.tar.gz" +hash = "sha256-DjdPzAb4iUlXSX2UWsSzi9D4Oy8Cohk8Cb+YJ7bsS9I=" +typstDeps = [] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[glossy."0.1.0"] +url = "https://packages.typst.org/preview/glossy-0.1.0.tar.gz" +hash = "sha256-9HqjdNbWVz8VBWG4UWEGFyOH//7t5mHs/WySPas5yMg=" +typstDeps = [] +description = "A very simple glossary system with easily customizable output" +license = [ + "MIT", +] +homepage = "https://github.com/swaits/typst-collection" + +[gqe-lemoulon-presentation."0.0.6"] +url = "https://packages.typst.org/preview/gqe-lemoulon-presentation-0.0.6.tar.gz" +hash = "sha256-Zx1OqxAJaZd6yuONAGxyArJllT6HoaqMOsn3fXi7TE4=" +typstDeps = [ + "codly_1_3_0", + "showybox_2_0_4", + "tablem_0_3_0", + "tidy_0_4_3", + "touying_0_6_1", +] +description = "Quickly generate slides for a GQE-Le moulon presentation" +license = [ + "GPL-3.0-only", +] +homepage = "https://forge.inrae.fr/gqe-moulon/gqe-presentation.git" + +[gqe-lemoulon-presentation."0.0.5"] +url = "https://packages.typst.org/preview/gqe-lemoulon-presentation-0.0.5.tar.gz" +hash = "sha256-EKRM2pcccly4vMbMWCTOQednyIpPBet5RBOzrsZGLs4=" +typstDeps = [ + "showybox_2_0_3", + "tablem_0_1_0", + "touying_0_5_3", +] +description = "Quickly generate slides for a GQE-Le moulon presentation" +license = [ + "GPL-3.0-only", +] + +[gqe-lemoulon-presentation."0.0.4"] +url = "https://packages.typst.org/preview/gqe-lemoulon-presentation-0.0.4.tar.gz" +hash = "sha256-590iNmmEIwSceZA5tzWE+THuEiMUFvlVhkUADoVrzT4=" +typstDeps = [ + "showybox_2_0_3", + "touying_0_5_3", +] +description = "Quickly generate slides for a GQE-Le moulon presentation" +license = [ + "GPL-3.0-only", +] + +[graceful-genetics."0.2.0"] +url = "https://packages.typst.org/preview/graceful-genetics-0.2.0.tar.gz" +hash = "sha256-Dg1bG9drD3b0nM5Kso+pp8juWTIdiIM+K8okd0vQh+M=" +typstDeps = [ + "physica_0_9_3", +] +description = "A paper template with which to publish in journals and at conferences" +license = [ + "Unlicense", +] +homepage = "https://github.com/JamesxX/graceful-genetics" + +[graceful-genetics."0.1.0"] +url = "https://packages.typst.org/preview/graceful-genetics-0.1.0.tar.gz" +hash = "sha256-BvwgKR/yqHPm4GdThGnxcO54wZ40Grt7XSoqOLnsPHU=" +typstDeps = [ + "physica_0_9_3", +] +description = "A paper template with which to publish in journals and at conferences" +license = [ + "Unlicense", +] +homepage = "https://github.com/JamesxX/graceful-genetics" + +[gradslide."0.1.0"] +url = "https://packages.typst.org/preview/gradslide-0.1.0.tar.gz" +hash = "sha256-wM8Bj1PEWrm0mVNi+PPSKMWSukXZFRtMI27xQBKEVmc=" +typstDeps = [] +description = "Simple component to show a value between 0 and 1 on a nice gradient slider" +license = [ + "MIT", +] + +[grape-suite."3.1.0"] +url = "https://packages.typst.org/preview/grape-suite-3.1.0.tar.gz" +hash = "sha256-lIeuFWj6l5wbDTucXEHBk+3vdalMIVbBcjD7Sys1ovA=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Library of templates for exams, seminar papers, homeworks, etc" +license = [ + "MIT", +] +homepage = "https://github.com/piepert/grape-suite" + +[grape-suite."3.0.0"] +url = "https://packages.typst.org/preview/grape-suite-3.0.0.tar.gz" +hash = "sha256-r3iVzGFb1WZb/u8COdUYzzYfIj80+ociUAdl74XbuZU=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Library of templates for exams, seminar papers, homeworks, etc" +license = [ + "MIT", +] +homepage = "https://github.com/piepert/grape-suite" + +[grape-suite."2.0.0"] +url = "https://packages.typst.org/preview/grape-suite-2.0.0.tar.gz" +hash = "sha256-c0LlnyarxBx8LBmAk51QDuBPbMZRiHfRb7bcrUn9Zfw=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Library of templates for exams, seminar papers, homeworks, etc" +license = [ + "MIT", +] +homepage = "https://github.com/piepert/grape-suite" + +[grape-suite."1.0.0"] +url = "https://packages.typst.org/preview/grape-suite-1.0.0.tar.gz" +hash = "sha256-HIiU/wUotObdv8W+tB0f/TqmpdQPxCnkfibDa/x2KUM=" +typstDeps = [ + "polylux_0_3_1", +] +description = "Library of templates for exams, seminar papers, homeworks, etc" +license = [ + "MIT", +] +homepage = "https://github.com/piepert/grape-suite" + +[grape-suite."0.1.0"] +url = "https://packages.typst.org/preview/grape-suite-0.1.0.tar.gz" +hash = "sha256-p4bIM8yr8oIC/45OhowBy2W60GNIIHzIN+BVPHZ6PFk=" +typstDeps = [ + "polylux_0_3_1", +] +description = "Library of templates for exams, seminar papers, homeworks, etc" +license = [ + "MIT", +] +homepage = "https://github.com/piepert/grape-suite" + +[grayness."0.4.1"] +url = "https://packages.typst.org/preview/grayness-0.4.1.tar.gz" +hash = "sha256-Qb0zbsAe+VUjVqoH7MjMp0ZSswCoRaqW3Sa/1uk9KfQ=" +typstDeps = [] +description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/nineff/grayness" + +[grayness."0.4.0"] +url = "https://packages.typst.org/preview/grayness-0.4.0.tar.gz" +hash = "sha256-U1+Mode80Wshk6IzB8N6hNG2MLkxydCWQS2drEgdZtU=" +typstDeps = [] +description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/nineff/grayness" + +[grayness."0.3.0"] +url = "https://packages.typst.org/preview/grayness-0.3.0.tar.gz" +hash = "sha256-0mZHo4t/5q/rVkaM7YqKs7ugPADWcofFvYa2eeU59K8=" +typstDeps = [] +description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/nineff/grayness" + +[grayness."0.2.0"] +url = "https://packages.typst.org/preview/grayness-0.2.0.tar.gz" +hash = "sha256-b7nG9wEHhvN3Hhx4VnjjWmAF6ymWAkhdYEWFMAxU2js=" +typstDeps = [] +description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/nineff/grayness" + +[grayness."0.1.0"] +url = "https://packages.typst.org/preview/grayness-0.1.0.tar.gz" +hash = "sha256-f4OhkAg+/myZX1GOjZ9x50YNAE73xWlZJEU/p8OZvSI=" +typstDeps = [] +description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/nineff/grayness" + +[great-theorems."0.1.2"] +url = "https://packages.typst.org/preview/great-theorems-0.1.2.tar.gz" +hash = "sha256-JQAsHkekAQDOHlZag2G0JX1beDe03wzP7bhZ/d0xCkY=" +typstDeps = [] +description = "Theorem/Proof environments. Straightforward, functional, clean" +license = [ + "MIT", +] +homepage = "https://github.com/jbirnick/typst-great-theorems" + +[great-theorems."0.1.1"] +url = "https://packages.typst.org/preview/great-theorems-0.1.1.tar.gz" +hash = "sha256-pSdEW5J9nrId1JGjLe/WkjV1ALGKJgBzBtdDNJyyPaY=" +typstDeps = [] +description = "Straightforward and functional theorem/proof environments" +license = [ + "MIT", +] +homepage = "https://github.com/jbirnick/typst-great-theorems" + +[great-theorems."0.1.0"] +url = "https://packages.typst.org/preview/great-theorems-0.1.0.tar.gz" +hash = "sha256-2O2HcqIsxMSDvrDUYUWmSvw98/xUv/OinsCUZ0AoNDc=" +typstDeps = [] +description = "Straightforward and functional theorem/proof environments" +license = [ + "MIT", +] +homepage = "https://github.com/jbirnick/typst-great-theorems" + +[griddle."0.2.0"] +url = "https://packages.typst.org/preview/griddle-0.2.0.tar.gz" +hash = "sha256-FK20bs4kRQfBjOMZUfyqxEDtecTNWPgDd+fqTP42foE=" +typstDeps = [] +description = "Design and visualize crossword puzzles" +license = [ + "GPL-3.0-or-later", +] + +[griddle."0.1.0"] +url = "https://packages.typst.org/preview/griddle-0.1.0.tar.gz" +hash = "sha256-kRgED72g/Pqsg/dYGdvO4dPky43OyQA8mJGGtZcihz0=" +typstDeps = [] +description = "Design and visualize crossword puzzles" +license = [ + "GPL-3.0-or-later", +] + +[gridlock."0.4.0"] +url = "https://packages.typst.org/preview/gridlock-0.4.0.tar.gz" +hash = "sha256-Sg/yyiXtb8ihX6iOholHHrXDn/vT+LaZzXs1U56uJ1I=" +typstDeps = [] +description = "Grid typesetting in Typst" +license = [ + "Unlicense", +] +homepage = "https://github.com/ssotoen/gridlock" + +[gridlock."0.3.0"] +url = "https://packages.typst.org/preview/gridlock-0.3.0.tar.gz" +hash = "sha256-B/o48gnSfhS01A7MjfXdIkbGlPOLQ3ag6Pq02VDHccg=" +typstDeps = [] +description = "Grid typesetting in Typst" +license = [ + "Unlicense", +] +homepage = "https://github.com/ssotoen/gridlock" + +[gridlock."0.2.0"] +url = "https://packages.typst.org/preview/gridlock-0.2.0.tar.gz" +hash = "sha256-4PK74BSP2jzqpJ1QZhc6tN7FYcDuJqjF6zN2FO3wlnQ=" +typstDeps = [] +description = "Grid typesetting in Typst" +license = [ + "Unlicense", +] +homepage = "https://github.com/ssotoen/gridlock" + +[gridlock."0.1.0"] +url = "https://packages.typst.org/preview/gridlock-0.1.0.tar.gz" +hash = "sha256-DVeyfYxtDDuPSwkVRvIBlj0nrQ9Az51lD+jxeyU7WiQ=" +typstDeps = [] +description = "Grid typesetting in Typst" +license = [ + "Unlicense", +] +homepage = "https://github.com/ssotoen/gridlock" + +[grotesk-cv."1.0.5"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.5.tar.gz" +hash = "sha256-nlJgqKh/asgWSbgxDkg3lw/SduR0HNzcRguKOkwYsaM=" +typstDeps = [] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + +[grotesk-cv."1.0.4"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.4.tar.gz" +hash = "sha256-NMRU0vPoGT5xrbG/lcGwMs0vsaV56rwEmacQ+1SF2iM=" +typstDeps = [] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + +[grotesk-cv."1.0.3"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.3.tar.gz" +hash = "sha256-DLwp5MxSZ3gTZV0rzxvpKYwl6unCdT49JatUuqdhvZs=" +typstDeps = [] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + +[grotesk-cv."1.0.2"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.2.tar.gz" +hash = "sha256-Vo+LH70Ny+28MxE06YXmg+YuCzLkiNHXP+ytUqL/DKg=" +typstDeps = [] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + +[grotesk-cv."1.0.1"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.1.tar.gz" +hash = "sha256-NztTYJYA+syZg21Ce+dvNyO/MhmAJvoWWMe74X0Xc0s=" +typstDeps = [ + "fontawesome_0_4_0", +] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + +[grotesk-cv."1.0.0"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.0.tar.gz" +hash = "sha256-1+ASdtTEvAT+jwTNgmdSJTIePo6L/oiwyEndH6NXjsM=" +typstDeps = [ + "fontawesome_0_4_0", +] +description = "A clean CV and cover letter template based on brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + +[grotesk-cv."0.1.6"] +url = "https://packages.typst.org/preview/grotesk-cv-0.1.6.tar.gz" +hash = "sha256-+3g8uDV0kXxHJoAVTNxmO35SWvFIA2eP/VRAcGvBGME=" +typstDeps = [ + "fontawesome_0_4_0", +] +description = "Clean CV template based on the awesome-cv and Skywalker templates" +license = [ + "MIT", +] + +[grotesk-cv."0.1.5"] +url = "https://packages.typst.org/preview/grotesk-cv-0.1.5.tar.gz" +hash = "sha256-25kvb0Ym3xw/kSj49Khdmnza/X+UcEkyqcHVsQWzZB8=" +typstDeps = [ + "fontawesome_0_4_0", + "grotesk-cv_0_1_4", +] +description = "Clean CV template based on the awesome-cv and Skywalker templates" +license = [ + "MIT", +] + +[grotesk-cv."0.1.4"] +url = "https://packages.typst.org/preview/grotesk-cv-0.1.4.tar.gz" +hash = "sha256-zTuOlzcxxpPf1PL/JgJqUZNFc9UrUrOrDd1iRn3Up8c=" +typstDeps = [ + "fontawesome_0_4_0", +] +description = "Clean CV template based on the awesome-cv and Skywalker templates" +license = [ + "MIT", +] + +[grotesk-cv."0.1.3"] +url = "https://packages.typst.org/preview/grotesk-cv-0.1.3.tar.gz" +hash = "sha256-55BFXAX/oZrTg8PiAlKlyWwCb4kbuNxZWxG+H5k84WY=" +typstDeps = [ + "fontawesome_0_4_0", +] +description = "Clean CV template based on the awesome-cv and Skywalker templates" +license = [ + "MIT", +] + +[grotesk-cv."0.1.2"] +url = "https://packages.typst.org/preview/grotesk-cv-0.1.2.tar.gz" +hash = "sha256-6s8z8PhAXBLmip3D/9Rlcu5/lkvLd97r/bPk9sbFi0E=" +typstDeps = [ + "fontawesome_0_2_1", +] +description = "Clean CV template based on the awesome-cv and Skywalker templates" +license = [ + "MIT", +] + +[grotesk-cv."0.1.1"] +url = "https://packages.typst.org/preview/grotesk-cv-0.1.1.tar.gz" +hash = "sha256-hvMDjoUsepnu0s5fwcBdx4Lvfa9LZU28iDuzUTQO1eM=" +typstDeps = [ + "fontawesome_0_2_1", + "grotesk-cv_0_1_0", +] +description = "Clean CV template based on the awesome-cv and Skywalker templates" +license = [ + "MIT", +] + +[grotesk-cv."0.1.0"] +url = "https://packages.typst.org/preview/grotesk-cv-0.1.0.tar.gz" +hash = "sha256-bC1lpdzWU3ZixDMiFMU2utOTv9Ayhbk4pxcFHB0Y3ho=" +typstDeps = [ + "fontawesome_0_2_1", +] +description = "Clean CV template based on the awesome-cv and Skywalker templates" +license = [ + "MIT", +] + +[gru."0.1.0"] +url = "https://packages.typst.org/preview/gru-0.1.0.tar.gz" +hash = "sha256-1inkfx6ZLSBK6vUpQxqWmekETuRQ7ba0KdsBct0RyBI=" +typstDeps = [] +description = "A despicable Typst template" +license = [ + "MIT", +] +homepage = "https://github.com/EdwinChang24/typst-gru" + +[gruvy."2.1.0"] +url = "https://packages.typst.org/preview/gruvy-2.1.0.tar.gz" +hash = "sha256-xL9xd3Wvo+/Vz+2ZVatpmMhTtLgquETE2RvJe+7cvNc=" +typstDeps = [] +description = "Gruvbox colors" +license = [ + "MIT", +] +homepage = "https://github.com/arsmoriendy/typst-gruvy" + +[gruvy."2.0.0"] +url = "https://packages.typst.org/preview/gruvy-2.0.0.tar.gz" +hash = "sha256-yGk0DdmDsdE+wHsJJM5ZRzHA/ag2DPuVixFGBY3q/iM=" +typstDeps = [] +description = "Gruvbox colors" +license = [ + "MIT", +] +homepage = "https://github.com/arsmoriendy/typst-gruvy" + +[gruvy."1.0.0"] +url = "https://packages.typst.org/preview/gruvy-1.0.0.tar.gz" +hash = "sha256-BxizZJmkyRSf/lsZ0lqG+2F0+tBawBd1yYZ8gKhGSCw=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "Gruvbox colors" +license = [ + "MIT", +] +homepage = "https://github.com/arsmoriendy/typst-gruvy" + +[guided-resume-starter-cgc."2.0.0"] +url = "https://packages.typst.org/preview/guided-resume-starter-cgc-2.0.0.tar.gz" +hash = "sha256-vj/U0MOVCQBsw/5EJPraeyl3ifjrvMsgpoE26NC1xqM=" +typstDeps = [] +description = "A guided starter resume for people looking to focus on highlighting their experience -- without having to worry about the hassle of formatting" +license = [ + "Unlicense", +] +homepage = "https://github.com/chaoticgoodcomputing/typst-resume-starter" + +[gviz."0.1.0"] +url = "https://packages.typst.org/preview/gviz-0.1.0.tar.gz" +hash = "sha256-Yn7PVGMfOMIZTTALXYrevbFL5rKe2MTNdgHVYBWwa6g=" +typstDeps = [] +description = "Generate graphs using the graphviz dot language" +license = [ + "Unlicense", +] +homepage = "https://codeberg.org/Sekoia/gviz-typst" + +[h-graph."0.1.0"] +url = "https://packages.typst.org/preview/h-graph-0.1.0.tar.gz" +hash = "sha256-GnjgPD5TP4tET7aV8YRK8IIlUs45NpD6WFon1zn28bM=" +typstDeps = [ + "fletcher_0_5_8", +] +description = "Draw image releted to graph theory with a very simple mark-up language" +license = [ + "MIT", +] +homepage = "https://github.com/fogsong233/h-graph" + +[hagakiii."0.1.0"] +url = "https://packages.typst.org/preview/hagakiii-0.1.0.tar.gz" +hash = "sha256-cIJ562PgOM0flVEhS+7tyuMX+SH/2rxlifpqI5PBr+E=" +typstDeps = [] +description = "Print address labels on Japanese postcards" +license = [ + "MIT", +] +homepage = "https://github.com/34j/typst-hagakiii" + +[hallon."0.1.3"] +url = "https://packages.typst.org/preview/hallon-0.1.3.tar.gz" +hash = "sha256-9kcl4hljULasqs0HIg3aRotQXLsnuFySehrROqCNOio=" +typstDeps = [] +description = "Utility functions for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/hallon-typ" + +[hallon."0.1.2"] +url = "https://packages.typst.org/preview/hallon-0.1.2.tar.gz" +hash = "sha256-SkgRu6hERjq7PAcOS9wfJJzzEFe1bcQWk4NoffonDKU=" +typstDeps = [] +description = "Utility functions for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/hallon-typ" + +[hallon."0.1.1"] +url = "https://packages.typst.org/preview/hallon-0.1.1.tar.gz" +hash = "sha256-83Cg+Xbvx/We9jQw/wV0R2VHujKpdXpRJYMyTN/epBs=" +typstDeps = [] +description = "Utility functions for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/hallon-typ" + +[hallon."0.1.0"] +url = "https://packages.typst.org/preview/hallon-0.1.0.tar.gz" +hash = "sha256-LqhTqD9TwYQrjft30iBBj+MDQHPk/z0+ct+1jH3wdWk=" +typstDeps = [] +description = "Utility functions for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/hallon-typ" + +[hamnosys-includer."1.0.0"] +url = "https://packages.typst.org/preview/hamnosys-includer-1.0.0.tar.gz" +hash = "sha256-+HqWRYwCFPSfGwjKhMwt8RDytys/DN8767BuXiSYcek=" +typstDeps = [] +description = "For using HamNoSys in Typst" +license = [ + "LPPL-1.3c", +] +homepage = "https://github.com/TestTimothy/Typst-HamNoSys" + +[hamnosys-includer."0.1.0"] +url = "https://packages.typst.org/preview/hamnosys-includer-0.1.0.tar.gz" +hash = "sha256-t1aYMwmrttYE9XPIMVKJbXw75tr8jy5dEaYK4T0aqJ8=" +typstDeps = [] +description = "For using HamNoSys in Typst" +license = [ + "LPPL-1.3c", +] +homepage = "https://github.com/TestTimothy/Typst-HamNoSys" + +[hand-in."1.1.0"] +url = "https://packages.typst.org/preview/hand-in-1.1.0.tar.gz" +hash = "sha256-haEkjyUZGawiyVbUNkf6t56drVej5hGobKJpsOJUHuA=" +typstDeps = [] +description = "Clean and minimalist assignment" +license = [ + "MIT-0", +] +homepage = "https://github.com/mkorje/typst-hand-in" + +[hand-in."1.0.1"] +url = "https://packages.typst.org/preview/hand-in-1.0.1.tar.gz" +hash = "sha256-e8nMBNcT/tNttKSoaQ55nLFTWobNTRW2cN3ZIQ9uYKU=" +typstDeps = [] +description = "Clean and minimalist assignment" +license = [ + "MIT-0", +] +homepage = "https://github.com/mkorje/typst-hand-in" + +[hand-in."1.0.0"] +url = "https://packages.typst.org/preview/hand-in-1.0.0.tar.gz" +hash = "sha256-c7xX5I3AImc7cWhxtLhsHa3EOx5zNAq4Tlqtn/DV5EM=" +typstDeps = [] +description = "Clean and minimalist assignment" +license = [ + "MIT-0", +] +homepage = "https://github.com/mkorje/typst-hand-in" + +[handy-dora."0.1.0"] +url = "https://packages.typst.org/preview/handy-dora-0.1.0.tar.gz" +hash = "sha256-3cDtmhJjp2GgBMQGUyUrd8hq6SQ9ggKD7vsR9e1OUvQ=" +typstDeps = [] +description = "Handy-dora is a package visualizing mahjong tiles. It's powered by wasm and Riichi-hand-rs" +license = [ + "MIT", +] +homepage = "https://github.com/hongjr03/typst-mahjong-tiles" + +[hane."0.1.0"] +url = "https://packages.typst.org/preview/hane-0.1.0.tar.gz" +hash = "sha256-L/E/1d+kuJvi7hmfkhcbVhUE3AHsNK/kRHRG/47bpew=" +typstDeps = [] +description = "Draws go/baduk/weiqi diagrams" +license = [ + "MIT", +] + +[hannes-thesis."0.1.0"] +url = "https://packages.typst.org/preview/hannes-thesis-0.1.0.tar.gz" +hash = "sha256-MVv9O8FR6jJGQ6nNJjnwkNz8Lj+CC9bThWHZ6zsdkac=" +typstDeps = [] +description = "An academic template, designed for final reports, Bachelor theses, and Master theses" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/hannesknoll/hannes-thesis" + +[hanzi-calligraphy."0.1.0"] +url = "https://packages.typst.org/preview/hanzi-calligraphy-0.1.0.tar.gz" +hash = "sha256-fWpqyCuAZkmK/YY0qVGL4ohbjo2d6gn/Ot60tQj49aE=" +typstDeps = [] +description = "用于书法练习的田字格模板。A calligraphy practice template" +license = [ + "MIT", +] +homepage = "https://github.com/yuegeao/hanzi-calligraphy" + +[harvard-gsas-thesis-oat."0.1.5"] +url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.5.tar.gz" +hash = "sha256-hMBp9QOB4t0OC1Fpfem4bGMak9lQ1otHMTbPYhTbu1w=" +typstDeps = [] +description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" + +[harvard-gsas-thesis-oat."0.1.4"] +url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.4.tar.gz" +hash = "sha256-yurD53i4zYGfYjTWd0NREli8bhRZZwvbBN8VZDBbyD4=" +typstDeps = [] +description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" + +[harvard-gsas-thesis-oat."0.1.3"] +url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.3.tar.gz" +hash = "sha256-x9/euXk9ao9W0bwHcUJmCW/OjjJ2fjMT45rmIJwZ4Wg=" +typstDeps = [] +description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" + +[harvard-gsas-thesis-oat."0.1.2"] +url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.2.tar.gz" +hash = "sha256-0jtA8keC7ycWdDv1nRuENUqPNG13pbb9njrruhecciI=" +typstDeps = [] +description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" + +[harvard-gsas-thesis-oat."0.1.1"] +url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.1.tar.gz" +hash = "sha256-cwz9opxNmFwVPJB/uV/te87jUZP7MsbNGUj6t6jDKqc=" +typstDeps = [] +description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" + +[harvard-gsas-thesis-oat."0.1.0"] +url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.0.tar.gz" +hash = "sha256-gAAGUQOGEgK2v1q3SYSEgdvvYToTIGvJNU5nowBnIzg=" +typstDeps = [] +description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" + +[haw-hamburg."0.8.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.8.0.tar.gz" +hash = "sha256-JsZ4N39fNCWXH6gvAjUcnyNMTwqFh7X1tFL+CmTX/90=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.7.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.7.0.tar.gz" +hash = "sha256-2MiO5v+IUyhtlFRbJan9F0j1mzUy3wn0XHuAhzPQZLM=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.6.2"] +url = "https://packages.typst.org/preview/haw-hamburg-0.6.2.tar.gz" +hash = "sha256-wzKZ0SlgZDtgjNwXVgnomnEAdUTQPaaA4HNrcajXZqE=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-0.6.1.tar.gz" +hash = "sha256-x/C4y3iCQugH81bEUUK+0OyZA3l1hRoVSzWeTa6zMDE=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.6.0.tar.gz" +hash = "sha256-QIgvoMmKnqjrlY48C1g70JtoeYuOcUGCh9Z+bodFtB0=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.5.1"] +url = "https://packages.typst.org/preview/haw-hamburg-0.5.1.tar.gz" +hash = "sha256-B9r2CqFlw7129Ow8y9aOQXe6y2O3/GKm2YSDP5pHU6k=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.5.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.5.0.tar.gz" +hash = "sha256-l06N1tESZzZSJhy1ZFs0SuMBOhe9lFLvkckFLXF0trg=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.4.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.4.0.tar.gz" +hash = "sha256-FnjX1RCgEkIoIquY4HfyrYcPN/FQngYMzmUgp6QvTrw=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.3.3"] +url = "https://packages.typst.org/preview/haw-hamburg-0.3.3.tar.gz" +hash = "sha256-c3/cGmh0qy/uy8XMNRYJ0tScyvg+MYPreCCPo91HJl8=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.3.1"] +url = "https://packages.typst.org/preview/haw-hamburg-0.3.1.tar.gz" +hash = "sha256-WOlXmn5qf+8B/HfFkXNXa8o2JlsrMfBtorpywXNgZ9A=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.3.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.3.0.tar.gz" +hash = "sha256-XweoFyX5U3plqBsD944Wcsi1ey+NUdLi6WoD/X8/vXs=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.2.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.2.0.tar.gz" +hash = "sha256-tMP2yDPAtRC6ul7acXuhIzN/gkCqTf1Ar8eLfUs+baA=" +typstDeps = [ + "glossarium_0_4_2", + "haw-hamburg_0_1_0", +] +description = "Unofficial template for writing a report or thesis in the `HAW Hamburg` department of `Computer Science` design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.1.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.1.0.tar.gz" +hash = "sha256-7RcOokFNH6AOnR4NMzproy5T7cSC5Uafrnpgz/8rMDI=" +typstDeps = [ + "glossarium_0_4_1", +] +description = "Unofficial template for writing a report or thesis in the `HAW Hamburg` department of `Computer Science` design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.8.0"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.8.0.tar.gz" +hash = "sha256-QWroWPaeYzwinpD5xqloIKkm/m6XnDP6lDr08mU1CpA=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_8_0", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.7.0"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.7.0.tar.gz" +hash = "sha256-rvjYM+sOMaiC8zw82c+T8YS2v6Ofa2+hZ1fr4+S4+5w=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_7_0", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.6.2"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.6.2.tar.gz" +hash = "sha256-VC1lI10WBivpsYKvVbV4fH5FuvkUezOKHMmHKRDBcPM=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_2", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.6.1.tar.gz" +hash = "sha256-jbUnnOt0TODnD3Deh6zvIbswpaRP/fEQ0JxqtWTqUu8=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_1", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.6.0.tar.gz" +hash = "sha256-FBXdCA+5kfzSsB01ipfq0eLY9wNgoob1g9bN12VH5io=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_0", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.5.1"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.5.1.tar.gz" +hash = "sha256-keM157SF7OS0FT0HGgFbhhZhA7lUqDMaRDmNHU6CIzE=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_5_1", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.5.0"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.5.0.tar.gz" +hash = "sha256-y3RuWHrhvO7IH0cPRM9s3k0dK628Kho4uvYE7jBVJeA=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_5_0", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.4.0"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.4.0.tar.gz" +hash = "sha256-97iY2zDg42J8dm6PWqbGimZ/VJbB6B8JoCguJ60JSKs=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_4_0", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.3.3"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.3.3.tar.gz" +hash = "sha256-t2bom6Pqqzwp9jfGGjltz23iihDUrgE3QOjqN1c0Y9M=" +typstDeps = [ + "glossarium_0_5_1", + "haw-hamburg_0_3_3", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.3.1"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.3.1.tar.gz" +hash = "sha256-qAhBSYsZarPB5aacSJPg7foe9bPpeeRTDgABjwS0z7g=" +typstDeps = [ + "glossarium_0_5_1", + "haw-hamburg_0_3_1", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.3.0"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.3.0.tar.gz" +hash = "sha256-v2+vDlSa5jDqX5wpW/diwT/2xqdKYkoY9e+6wvTUqm0=" +typstDeps = [ + "glossarium_0_4_2", + "haw-hamburg_0_3_0", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.8.0"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.8.0.tar.gz" +hash = "sha256-XydE5/9Exiy8PWC8DmnxnIVWBCwK2hIvw4b2mEaaeBM=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_8_0", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.7.0"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.7.0.tar.gz" +hash = "sha256-5wU9k4VB5Z0Rgx8EKAgE1t8xKGbRgCx3cJs2JKc9MJQ=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_7_0", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.6.2"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.6.2.tar.gz" +hash = "sha256-dMLn2egV03Fl+2tgkXIF06bTsi6dbxrRFRSRM2topa0=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_2", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.6.1.tar.gz" +hash = "sha256-ShHUj4JxP30JF2KDN7KiuDbRC7Rkmp263gTsgiv+ydM=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_1", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.6.0.tar.gz" +hash = "sha256-BvIj2dfhDdaWL5H/ys3LsEDztSNDZ5x7cHe42kZYN1M=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_0", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.5.1"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.5.1.tar.gz" +hash = "sha256-UxzkkPmWO6frdPI57xxelpE3mqgnpZn9aobQAHBTjIQ=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_5_1", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.5.0"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.5.0.tar.gz" +hash = "sha256-6wa88OAo34ILx2jDNWEyR/6DVefWbpePKvcDn/v5E8M=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_5_0", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.4.0"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.4.0.tar.gz" +hash = "sha256-QL9McnRm2djgkCGYEewWu9Eh6Uqjk5pMCk4tVIJStX0=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_4_0", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.3.3"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.3.3.tar.gz" +hash = "sha256-P/fiBhIyjd7a3HLNVWOb9y0Tho1DlscQV1HAwpnFwbg=" +typstDeps = [ + "glossarium_0_5_1", + "haw-hamburg_0_3_3", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.3.1"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.3.1.tar.gz" +hash = "sha256-hC4cdLTlQ3Vvq6SetKM82W6cYJMaYNSKi9FLKMrOO7Y=" +typstDeps = [ + "glossarium_0_5_1", + "haw-hamburg_0_3_1", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.3.0"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.3.0.tar.gz" +hash = "sha256-DrocD6zk8vIdptSqng9xu6otMH/HS7Gu84itJqba8Ls=" +typstDeps = [ + "glossarium_0_4_2", + "haw-hamburg_0_3_0", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.8.0"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.8.0.tar.gz" +hash = "sha256-RvkyaqEqb6NK2OmtFvcpjcVhZiBxdV49VyZ0WpzXtcY=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_8_0", +] +description = "Unofficial template for writing a report in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.7.0"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.7.0.tar.gz" +hash = "sha256-siHHQQEtLGD59m5LB9fs45yffTQQoWqeBAOMVTbQPZA=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_7_0", +] +description = "Unofficial template for writing a report in the HAW Hamburg Faculty of Computer Science and Digital Society style" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.6.2"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.6.2.tar.gz" +hash = "sha256-IeFxzaOc7Iwa4loMUOSi5oNJMm2QgnVb3Kj/WTbZv0Q=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_2", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.6.1.tar.gz" +hash = "sha256-ADv7KuOYNegyKwBxKhvi3DZoJ2MvjfMDmngSzIr3dHU=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_1", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.6.0.tar.gz" +hash = "sha256-ilJne1VLW2RzqatnJpP9f2Ziy5yGqovkRX+DrW10xFw=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_0", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.5.1"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.5.1.tar.gz" +hash = "sha256-wKWew9SRGfaI1bvZ2HUGsIGNUWWS9Jc2DydoEs+4i9k=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_5_1", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.5.0"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.5.0.tar.gz" +hash = "sha256-CNG1/pXFaXwqDrtPbCkpKDtg8HfdIODNxix4W0zkS/s=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_5_0", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.4.0"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.4.0.tar.gz" +hash = "sha256-hHwHHg1Ql9zByfzntzZKuv4IA4uwh49BY4Qtmdd6Ek8=" +typstDeps = [ + "glossarium_0_5_3", + "haw-hamburg_0_4_0", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.3.3"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.3.3.tar.gz" +hash = "sha256-PIfbdjGqfmXUmYgXVuDRn3E+UGFDI/h2vxS8TEP4DF0=" +typstDeps = [ + "glossarium_0_5_1", + "haw-hamburg_0_3_3", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.3.1"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.3.1.tar.gz" +hash = "sha256-57hSsBYO9TQt9p8P/EfLuIi/wpoRx0y7HjsohKr9eX4=" +typstDeps = [ + "glossarium_0_5_1", + "haw-hamburg_0_3_1", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.3.0"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.3.0.tar.gz" +hash = "sha256-w9XpicTk+LgS4H/wxBJ2OOKtEPjMmfUV/AVzFjDZbxU=" +typstDeps = [ + "glossarium_0_4_2", + "haw-hamburg_0_3_0", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[headcount."0.1.0"] +url = "https://packages.typst.org/preview/headcount-0.1.0.tar.gz" +hash = "sha256-LGvD9y3np3EI8C9hruxrSASG2/+oChvq8nShbunajS8=" +typstDeps = [] +description = "Make counters inherit from the heading counter" +license = [ + "MIT", +] +homepage = "https://github.com/jbirnick/typst-headcount" + +[hei-synd-report."0.1.1"] +url = "https://packages.typst.org/preview/hei-synd-report-0.1.1.tar.gz" +hash = "sha256-PkAWjiwXtwmJe7xC7hOTCe0E+gFQahjH+9MWcrtLZCw=" +typstDeps = [ + "codelst_2_0_2", + "fractusist_0_1_1", + "glossarium_0_5_3", + "wordometer_0_1_4", +] +description = "A report and project template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-report" + +[hei-synd-report."0.1.0"] +url = "https://packages.typst.org/preview/hei-synd-report-0.1.0.tar.gz" +hash = "sha256-4L7AHddOM+84PccYazITd52vEJmdXZ0ULZTpIYwEF6k=" +typstDeps = [ + "codelst_2_0_2", + "fractusist_0_1_0", + "glossarium_0_5_1", + "wordometer_0_1_4", +] +description = "A report and project template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-report" + +[hei-synd-thesis."0.2.3"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.3.tar.gz" +hash = "sha256-KoYYcw2W3RZreVymiDFMM71GvpUmtZle/lZWbG8q+t8=" +typstDeps = [ + "cheq_0_3_0", + "codelst_2_0_2", + "codly_1_3_0", + "codly-languages_0_1_8", + "fractusist_0_3_2", + "glossarium_0_5_9", + "icu-datetime_0_2_0", + "muchpdf_0_1_1", + "wordometer_0_1_5", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + +[hei-synd-thesis."0.2.2"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.2.tar.gz" +hash = "sha256-2NhNKIdJIFpWUyb9el7WzPvagXTm9Pwm16a07kBBySA=" +typstDeps = [ + "cheq_0_2_3", + "codelst_2_0_2", + "codly_1_3_0", + "codly-languages_0_1_8", + "fractusist_0_3_2", + "glossarium_0_5_8", + "icu-datetime_0_1_2", + "muchpdf_0_1_1", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + +[hei-synd-thesis."0.2.1"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.1.tar.gz" +hash = "sha256-lJzGweOwikQWH0Y+o/u+mFGCs23y9hzez94AqRPUeNI=" +typstDeps = [ + "cheq_0_2_2", + "codelst_2_0_2", + "codly_1_3_0", + "codly-languages_0_1_1", + "fractusist_0_3_2", + "glossarium_0_5_6", + "icu-datetime_0_1_2", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + +[hei-synd-thesis."0.2.0"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.0.tar.gz" +hash = "sha256-GZCE71ji6RNfjeF4FSFkacMbo8p8sIdvoAU0/lM1w34=" +typstDeps = [ + "codelst_2_0_2", + "fractusist_0_3_2", + "glossarium_0_5_6", + "icu-datetime_0_1_2", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + +[hei-synd-thesis."0.1.1"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.1.1.tar.gz" +hash = "sha256-arCFWYx4S/nitZSMlrgRjXdzz1ro/eM1cEBk9gZUeUs=" +typstDeps = [ + "codelst_2_0_2", + "fractusist_0_1_1", + "glossarium_0_5_3", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + +[hei-synd-thesis."0.1.0"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.1.0.tar.gz" +hash = "sha256-Vmp4jfCmVF8nPkwv+vdakcstyPYgMOIfBTmEnt7sF4A=" +typstDeps = [ + "codelst_2_0_2", + "fractusist_0_1_0", + "glossarium_0_5_1", + "hei-synd-report_0_1_0", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + +[herodot."0.3.0"] +url = "https://packages.typst.org/preview/herodot-0.3.0.tar.gz" +hash = "sha256-fOlwl0hmDkTd17T7m+UHYmUCoDzO5TwYgLcOBd3MCpk=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package for making linear timelines, inspired by chronology" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/gnist-dev/herodot" + +[herodot."0.2.0"] +url = "https://packages.typst.org/preview/herodot-0.2.0.tar.gz" +hash = "sha256-qkKxherzKhwbczv54ZNpJhAKU+ysf0Q4ueBkM6yLK9o=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package for making linear timelines, inspired by chronology" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/gnist-dev/herodot" + +[herodot."0.1.0"] +url = "https://packages.typst.org/preview/herodot-0.1.0.tar.gz" +hash = "sha256-hZItUzNJe3TNxMjk2JiN7+wuI5AhGwUdx8p8HOUMnUI=" +typstDeps = [ + "cetz_0_3_4", +] +description = "A package for making linear timelines, inspired by chronology" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/gnist-dev/herodot" + +[heroic."0.1.0"] +url = "https://packages.typst.org/preview/heroic-0.1.0.tar.gz" +hash = "sha256-3L551obRnGGTg0j0vfeKJ+QJbfA6yhkDFlW+CEWLjQU=" +typstDeps = [] +description = "Use Heroicons in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-heroic" + +[hetvid."0.1.0"] +url = "https://packages.typst.org/preview/hetvid-0.1.0.tar.gz" +hash = "sha256-UxljXgBDSIoKK5vBu7V6tU3OZPkx4Ps5BS+Hbqujnyk=" +typstDeps = [ + "cetz_0_4_1", + "fancy-units_0_1_1", + "metalogo_1_2_0", + "zebraw_0_5_5", +] +description = "A template for light notes" +license = [ + "MIT-0", +] + +[hhn-unitylab-thesis-template."0.0.2"] +url = "https://packages.typst.org/preview/hhn-unitylab-thesis-template-0.0.2.tar.gz" +hash = "sha256-JaL4bV591+AiFXijkuQBFhoDGYhfU8ZwPyxrp0S9o08=" +typstDeps = [ + "cetz_0_3_4", + "chronos_0_2_1", + "circuiteria_0_2_0", + "codly_1_3_0", + "codly-languages_0_1_8", + "dining-table_0_1_0", + "fletcher_0_5_7", + "glossarium_0_5_4", + "tablem_0_2_0", + "tablex_0_0_9", + "timeliney_0_2_0", + "wrap-it_0_1_1", +] +description = "The official Thesis Template from the Usability and Interaction Technology Laboratory (UniTyLab) of the Heilbronn University (HHN" +license = [ + "MIT", +] +homepage = "https://github.com/Ferrys93de/UniTyLab-Thesis-Template" + +[hhn-unitylab-thesis-template."0.0.1"] +url = "https://packages.typst.org/preview/hhn-unitylab-thesis-template-0.0.1.tar.gz" +hash = "sha256-nUUMm1vlguTyfcHyMZ3MwzFCwCRxtFo3VLiDYyUegYE=" +typstDeps = [ + "cetz_0_3_1", + "chronos_0_2_0", + "circuiteria_0_1_0", + "codly_1_0_0", + "codly-languages_0_1_1", + "dining-table_0_1_0", + "fletcher_0_5_2", + "glossarium_0_5_1", + "tablem_0_1_0", + "tablex_0_0_9", + "timeliney_0_1_0", + "wrap-it_0_1_1", +] +description = "The official Thesis Template from the Usability and Interaction Technology Laboratory (UniTyLab) of the Heilbronn University (HHN" +license = [ + "MIT", +] +homepage = "https://github.com/Ferrys93de/UniTyLab-Thesis-Template" + +[hidden-bib."0.1.1"] +url = "https://packages.typst.org/preview/hidden-bib-0.1.1.tar.gz" +hash = "sha256-oaWF6c4XQ8OFEnuPlWcFcK23BWKLK+dKhFcagGxDPs8=" +typstDeps = [] +description = "Create hidden bibliographies or bibliographies with unmentioned (hidden) citations" +license = [ + "MIT", +] +homepage = "https://github.com/pklaschka/typst-hidden-bib" + +[hidden-bib."0.1.0"] +url = "https://packages.typst.org/preview/hidden-bib-0.1.0.tar.gz" +hash = "sha256-+u63x5P1zxbszULG7gMS+4SpuBALVSTP31Y0rN9Oo4s=" +typstDeps = [] +description = "Create hidden bibliographies or bibliographies with unmentioned (hidden) citations" +license = [ + "MIT", +] +homepage = "https://github.com/pklaschka/typst-hidden-bib" + +[htl3r-da."2.0.0"] +url = "https://packages.typst.org/preview/htl3r-da-2.0.0.tar.gz" +hash = "sha256-QyKMVig4bHpd7zwFvofOKZWutQcuO4dKuKxcBcVLdBc=" +typstDeps = [ + "codly_1_2_0", + "codly-languages_0_1_7", +] +description = "HTL-Rennweg diploma thesis template" +license = [ + "0BSD", + "CC-BY-SA-4.0", +] +homepage = "https://github.com/HTL3R-Typst/htl3r-da" + +[htl3r-da."1.0.0"] +url = "https://packages.typst.org/preview/htl3r-da-1.0.0.tar.gz" +hash = "sha256-nisqWtSZYhbT1r4Nu2YbhKyjGdQ9MiDhMfxEdTautOY=" +typstDeps = [ + "codly_1_1_1", + "codly-languages_0_1_1", +] +description = "HTL-Rennweg diploma thesis template" +license = [ + "0BSD", + "CC-BY-SA-4.0", +] +homepage = "https://github.com/HTL3R-Typst/htl3r-da" + +[htlwienwest-da."0.3.3"] +url = "https://packages.typst.org/preview/htlwienwest-da-0.3.3.tar.gz" +hash = "sha256-MFvkmwBGhKRC1308oznAnKWAT1fKuo0l00hmHw/Vljk=" +typstDeps = [] +description = "The diploma thesis template for students of the HTL Wien West" +license = [ + "MIT", +] +homepage = "https://github.com/htlwienwest/da-vorlage-typst" + +[htlwienwest-da."0.3.2"] +url = "https://packages.typst.org/preview/htlwienwest-da-0.3.2.tar.gz" +hash = "sha256-OAVoHBYuLe9zT3wWOgNBYTX2id/Y1ap7lKDweLgkyV4=" +typstDeps = [] +description = "The diploma thesis template for students of the HTL Wien West" +license = [ + "MIT", +] +homepage = "https://github.com/htlwienwest/da-vorlage-typst" + +[htlwienwest-da."0.2.1"] +url = "https://packages.typst.org/preview/htlwienwest-da-0.2.1.tar.gz" +hash = "sha256-3nU774Aby7wrhNgCm8H4cOdc6cj1OD+2o8DMr7rqknE=" +typstDeps = [ + "tablex_0_0_8", +] +description = "The diploma thesis template for students of the HTL Wien West" +license = [ + "MIT", +] +homepage = "https://github.com/htlwienwest/da-vorlage-typst" + +[htlwienwest-da."0.1.1"] +url = "https://packages.typst.org/preview/htlwienwest-da-0.1.1.tar.gz" +hash = "sha256-qDdDCbsWPy9T5dP6YH3m/02fE/IZxjKA4OBEfhWLGIE=" +typstDeps = [ + "tablex_0_0_8", +] +description = "The diploma thesis template for students of the HTL Wien West" +license = [ + "MIT", +] +homepage = "https://github.com/htlwienwest/da-vorlage-typst" + +[htlwienwest-da."0.1.0"] +url = "https://packages.typst.org/preview/htlwienwest-da-0.1.0.tar.gz" +hash = "sha256-EoO6xtcU5K66jr+4mZE3BEUgEpypWhK1ko+YC4DHi28=" +typstDeps = [ + "tablex_0_0_8", +] +description = "The diploma thesis template for students of the HTL Wien West" +license = [ + "MIT", +] +homepage = "https://github.com/htlwienwest/da-vorlage-typst" + +[humanistically."0.1.0"] +url = "https://packages.typst.org/preview/humanistically-0.1.0.tar.gz" +hash = "sha256-/Ln/CvlLIr++ZrKUE0kvcj+PgX82eg9EAk+WVAQ0hgg=" +typstDeps = [] +description = "A clean and minimal template for an academic CV in the humanities" +license = [ + "MIT-0", +] +homepage = "https://github.com/breezykermo/humanistically" + +[humble-dtu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/humble-dtu-thesis-0.1.0.tar.gz" +hash = "sha256-funwyW3LwcA4eCBdoyzDQ0AbAL9px3jTLsW21XocljI=" +typstDeps = [ + "acrostiche_0_5_1", +] +description = "DTU Thesis Template for Typst" +license = [ + "MIT", +] + +[hy-dro-gen."0.1.2"] +url = "https://packages.typst.org/preview/hy-dro-gen-0.1.2.tar.gz" +hash = "sha256-Ri8wskUHxxhJ0gdbXoAz+jvEmBboPNwMWVS54N64efI=" +typstDeps = [] +description = "Word hyphenation via bindings to typst/hypher" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/hy-dro-gen" + +[hy-dro-gen."0.1.1"] +url = "https://packages.typst.org/preview/hy-dro-gen-0.1.1.tar.gz" +hash = "sha256-qm+YWpliV3QICQCwvCssTZlFBQeuqGXU+ptc8iLH2qU=" +typstDeps = [] +description = "Word hyphenation via bindings to typst/hypher" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/hy-dro-gen" + +[hy-dro-gen."0.1.0"] +url = "https://packages.typst.org/preview/hy-dro-gen-0.1.0.tar.gz" +hash = "sha256-dFXCI13tg4wcoH+UHHRZGSN37Jic/OEhOs6fzCvcBpQ=" +typstDeps = [] +description = "Word hyphenation via bindings to typst/hypher" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/hy-dro-gen" + +[hydra."0.6.2"] +url = "https://packages.typst.org/preview/hydra-0.6.2.tar.gz" +hash = "sha256-umnjqplojf5gpPh6JzgMwStBo0HDqVj++gTIWOh599Q=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.6.1"] +url = "https://packages.typst.org/preview/hydra-0.6.1.tar.gz" +hash = "sha256-7gq7nGp7zzv4A0A1FbQWmDINEICEHps1HcbO+hi2GyA=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.6.0"] +url = "https://packages.typst.org/preview/hydra-0.6.0.tar.gz" +hash = "sha256-7zmGYza04bHwXy48Ru2IsX6kjJNlns4wDotbTgmMHqc=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.5.2"] +url = "https://packages.typst.org/preview/hydra-0.5.2.tar.gz" +hash = "sha256-WWK6EgaVXJiIg7HfQCNtgExBYVt4DaspQM/FoBo48yI=" +typstDeps = [ + "oxifmt_0_2_1", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.5.1"] +url = "https://packages.typst.org/preview/hydra-0.5.1.tar.gz" +hash = "sha256-Wbs7TB8yo8G28GWnhT0HpxXAABzOKvtIB116+2V1eJg=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.5.0"] +url = "https://packages.typst.org/preview/hydra-0.5.0.tar.gz" +hash = "sha256-UxI5XZZq9yeWIRKlQMYfAAbQEgiB0NLL68YG4h13RyU=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.4.0"] +url = "https://packages.typst.org/preview/hydra-0.4.0.tar.gz" +hash = "sha256-TXgT9MLhW1WTb+fQPr92HUYfYUTYBGbYB4lyqrsntvw=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.3.0"] +url = "https://packages.typst.org/preview/hydra-0.3.0.tar.gz" +hash = "sha256-znoyYAgFo/Gh6f0KVtVp8tsN2EQ+ANPFlXiLYQR2PXY=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Query and display headings of the currently active section" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.2.0"] +url = "https://packages.typst.org/preview/hydra-0.2.0.tar.gz" +hash = "sha256-lMSAwhFknlTsdnJF5tEGpBntQOVYfn0jTenncswx9I8=" +typstDeps = [ + "oxifmt_0_2_0", +] +description = "Query and display headings of the currently active section" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hydra."0.1.0"] +url = "https://packages.typst.org/preview/hydra-0.1.0.tar.gz" +hash = "sha256-GKoD535scGFwFeGMH/QaqQY1dZp9Fkq9h4NzvJ53RlU=" +typstDeps = [] +description = "Query and display headings of the currently active section" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + +[hyperscript."0.1.0"] +url = "https://packages.typst.org/preview/hyperscript-0.1.0.tar.gz" +hash = "sha256-hLI4ySFGMsHfncaaZFpVDsbERfcEv32D8RTTtAJvHMc=" +typstDeps = [] +description = "Hyperscript-style HTML creation for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/tshort/hyperscript" + +[i-am-acro."0.1.3"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.3.tar.gz" +hash = "sha256-S/PHqBJIpNdCOnNs5mZliCd21r8DFzF2yOM2DeSfe68=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + +[i-am-acro."0.1.2"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.2.tar.gz" +hash = "sha256-vCcBQz0Ge4eBDSe2AGATRhn7f7mmfIAQHx0WYzORa3M=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + +[i-am-acro."0.1.1"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.1.tar.gz" +hash = "sha256-psTaDPrS+dfiI8wGYmI/fjwQYAwZDRBOmIr82ukRBlc=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + +[i-am-acro."0.1.0"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.0.tar.gz" +hash = "sha256-qutdVAEIbT1M+LSIq63fYFI0+QRf+DTkB58+UlH7SAI=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + +[i-figured."0.2.4"] +url = "https://packages.typst.org/preview/i-figured-0.2.4.tar.gz" +hash = "sha256-508q3J4Sj5QnxexJndtbrvekcBpuLjyv9Bkt7QgdkPk=" +typstDeps = [] +description = "Configurable figure and equation numbering per section" +license = [ + "MIT", +] +homepage = "https://github.com/RubixDev/typst-i-figured" + +[i-figured."0.2.3"] +url = "https://packages.typst.org/preview/i-figured-0.2.3.tar.gz" +hash = "sha256-PihVPsLr4rRi5quYewioKs/iYM8sd+BVXNLQkAN6xjY=" +typstDeps = [] +description = "Configurable figure and equation numbering per section" +license = [ + "MIT", +] +homepage = "https://github.com/RubixDev/typst-i-figured" + +[i-figured."0.2.2"] +url = "https://packages.typst.org/preview/i-figured-0.2.2.tar.gz" +hash = "sha256-zXfi2hw5Da5Odnrrm0MOXbvsR0gjj5Wu5yv1q6rmIGc=" +typstDeps = [] +description = "Configurable figure and equation numbering per section" +license = [ + "MIT", +] +homepage = "https://github.com/RubixDev/typst-i-figured" + +[i-figured."0.2.1"] +url = "https://packages.typst.org/preview/i-figured-0.2.1.tar.gz" +hash = "sha256-KQxJk0I9wM9VSpFsbuxHSXHh3SW9lpKtNA/TYy2MLxs=" +typstDeps = [] +description = "Configurable figure and equation numbering per section" +license = [ + "MIT", +] +homepage = "https://github.com/RubixDev/typst-i-figured" + +[i-figured."0.2.0"] +url = "https://packages.typst.org/preview/i-figured-0.2.0.tar.gz" +hash = "sha256-hTNR57rOEQhtXIDAEqUdGIf+AlNI12uQq+IBBqqAgKg=" +typstDeps = [] +description = "Configurable figure numbering per section" +license = [ + "MIT", +] +homepage = "https://github.com/RubixDev/typst-i-figured" + +[i-figured."0.1.0"] +url = "https://packages.typst.org/preview/i-figured-0.1.0.tar.gz" +hash = "sha256-0AE9bAhIB1pf+ptwMt0DvKvRxk5hj+zwU2ymOTjoqQU=" +typstDeps = [] +description = "Configurable figure numbering per section" +license = [ + "MIT", +] +homepage = "https://github.com/RubixDev/typst-i-figured" + +[ibanator."0.1.0"] +url = "https://packages.typst.org/preview/ibanator-0.1.0.tar.gz" +hash = "sha256-d9H+0Cc03IzLCWHVSzqT41xYUTwN0qQryb4SAYtaQQU=" +typstDeps = [] +description = "A package for validating and formatting International Bank Account Numbers (IBANs) according to ISO 13616-1" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/mainrs/typst-iban-formatter.git" + +[ichigo."0.2.0"] +url = "https://packages.typst.org/preview/ichigo-0.2.0.tar.gz" +hash = "sha256-DPihND6Zrg6QA2wYDMQN0vNAsCrzYpKQer+hfFJAkV8=" +typstDeps = [ + "linguify_0_4_1", + "numbly_0_1_0", + "valkyrie_0_2_1", +] +description = "A customizable Typst template for homework" +license = [ + "MIT", +] +homepage = "https://github.com/PKU-Typst/ichigo" + +[ichigo."0.1.0"] +url = "https://packages.typst.org/preview/ichigo-0.1.0.tar.gz" +hash = "sha256-9w/eLi5XCps+QDkCeoyqwC6CDs0/b8csko3ubnWetzg=" +typstDeps = [ + "linguify_0_4_1", + "numbly_0_1_0", + "valkyrie_0_2_1", +] +description = "A customizable Typst template for homework" +license = [ + "MIT", +] +homepage = "https://github.com/PKU-Typst/ichigo" + +[icicle."0.1.0"] +url = "https://packages.typst.org/preview/icicle-0.1.0.tar.gz" +hash = "sha256-7AaLEdpagkOFzQnHtRBpKbUw5rA3PDQxJWG1ALJyyI4=" +typstDeps = [] +description = "Help the Typst Guys reach the helicopter pad and save Christmas" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + +[iconic-salmon-fa."1.1.0"] +url = "https://packages.typst.org/preview/iconic-salmon-fa-1.1.0.tar.gz" +hash = "sha256-bw31SUHRLwJnoHAwtnhfCjl+mBXjv6eqEvMfcxj3KFM=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "A Typst library for Social Media references with icons based on Font Awesome" +license = [ + "MIT", +] +homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-fa" + +[iconic-salmon-fa."1.0.0"] +url = "https://packages.typst.org/preview/iconic-salmon-fa-1.0.0.tar.gz" +hash = "sha256-7Pmqj+FuJXb8uercaHoW5bTGPYtYqyRdwa1ZLcZJlAY=" +typstDeps = [ + "fontawesome_0_1_0", +] +description = "A Typst library for Social Media references with icons based on Font Awesome" +license = [ + "MIT", +] +homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-fa" + +[iconic-salmon-svg."3.0.0"] +url = "https://packages.typst.org/preview/iconic-salmon-svg-3.0.0.tar.gz" +hash = "sha256-/lx7rqCeKFWc9ec6pD+K6NRXAEcpxKVsyjk3VryPp14=" +typstDeps = [] +description = "A Typst library for Social Media references with scalable vector graphics icons" +license = [ + "MIT", +] +homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg" + +[iconic-salmon-svg."2.1.0"] +url = "https://packages.typst.org/preview/iconic-salmon-svg-2.1.0.tar.gz" +hash = "sha256-lpELa+RQx1DdBZJwTiDilbae5CrMbP97+w5dJd0WQQ0=" +typstDeps = [] +description = "A Typst library for Social Media references with scalable vector graphics icons" +license = [ + "MIT", +] +homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg" + +[iconic-salmon-svg."1.1.0"] +url = "https://packages.typst.org/preview/iconic-salmon-svg-1.1.0.tar.gz" +hash = "sha256-xalofKV3mck69Z94wkSMHNRwbJG0LBq7yJ2jF6o+VQA=" +typstDeps = [] +description = "A Typst library for Social Media references with scalable vector graphics icons" +license = [ + "MIT", +] +homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg" + +[iconic-salmon-svg."1.0.0"] +url = "https://packages.typst.org/preview/iconic-salmon-svg-1.0.0.tar.gz" +hash = "sha256-gi+ikiE9ER2SPdfMfc4b2LU3iC4EVmrjhWWdt16fY0E=" +typstDeps = [] +description = "A Typst library for Social Media references with scalable vector graphics icons" +license = [ + "MIT", +] +homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg" + +[icu-datetime."0.2.0"] +url = "https://packages.typst.org/preview/icu-datetime-0.2.0.tar.gz" +hash = "sha256-6CeuNilPvenD4jTYKWK2JY/IVOoz0nv7kF/vjK83xhE=" +typstDeps = [] +description = "Date and time formatting using ICU4X via WASM" +license = [ + "MIT", +] +homepage = "https://github.com/Nerixyz/icu-typ" + +[icu-datetime."0.1.2"] +url = "https://packages.typst.org/preview/icu-datetime-0.1.2.tar.gz" +hash = "sha256-1dWi/4Cos6YwvR/6uUXIeXY5zREnJKWcpoS26va6jFs=" +typstDeps = [] +description = "Date and time formatting using ICU4X via WASM" +license = [ + "MIT", +] +homepage = "https://github.com/Nerixyz/icu-typ" + +[icu-datetime."0.1.1"] +url = "https://packages.typst.org/preview/icu-datetime-0.1.1.tar.gz" +hash = "sha256-6pHIy2iHE42W3S0U8q5Q1ZHJ/9nlqULO/SOrpWqciFE=" +typstDeps = [] +description = "Date and time formatting using ICU4X via WASM" +license = [ + "MIT", +] +homepage = "https://github.com/Nerixyz/icu-typ" + +[icu-datetime."0.1.0"] +url = "https://packages.typst.org/preview/icu-datetime-0.1.0.tar.gz" +hash = "sha256-4L2Jh4VJGENEiPHbl8muWNJQpINuEXB3nWVzBT4ifKE=" +typstDeps = [] +description = "Date and time formatting using ICU4X via WASM" +license = [ + "MIT", +] +homepage = "https://github.com/Nerixyz/icu-typ" + +[identified."0.1.0"] +url = "https://packages.typst.org/preview/identified-0.1.0.tar.gz" +hash = "sha256-Sw2iYXOPcpupMK03452gPQE8H7VaM2vLNHFbxK8b/9k=" +typstDeps = [ + "fletcher_0_5_8", + "typsy_0_2_0", +] +description = "Create IDEF diagrams in seconds" +license = [ + "AGPL-3.0-only", +] +homepage = "https://codeberg.org/Andrew15-5/identified" + +[idwtet."0.3.0"] +url = "https://packages.typst.org/preview/idwtet-0.3.0.tar.gz" +hash = "sha256-EJpapwNV9RD50LXl0XBXsU8uF/NrR+uFCSBXb1lQ/10=" +typstDeps = [] +description = "Package for uniform, correct and simplified typst code demonstration" +license = [ + "MIT", +] +homepage = "https://github.com/ludwig-austermann/typst-idwtet" + +[idwtet."0.2.0"] +url = "https://packages.typst.org/preview/idwtet-0.2.0.tar.gz" +hash = "sha256-/IgwHz/eg8bNjfDQlDe6TQeDQIutYeE3+41YGwqaatg=" +typstDeps = [] +description = "Package for uniform, correct and simplified typst code demonstration" +license = [ + "MIT", +] +homepage = "https://github.com/ludwig-austermann/typst-idwtet" + +[ieee-monolith."0.1.0"] +url = "https://packages.typst.org/preview/ieee-monolith-0.1.0.tar.gz" +hash = "sha256-meRF2qrqs7Bx/iLX+o/TkM+DNr0nkaqQ1XuuUZiGI2w=" +typstDeps = [] +description = "Single column paper with IEEE-style references and bibliography" +license = [ + "MIT", +] +homepage = "https://github.com/Fricsion/typst-template_ieee-style-single-column" + +[ijimai."1.0.0"] +url = "https://packages.typst.org/preview/ijimai-1.0.0.tar.gz" +hash = "sha256-hjjfA/h+YS2PVGN6cCdscCNufrnNTgmqctY/590cSuA=" +typstDeps = [ + "datify_0_1_4", + "droplet_0_3_1", + "t4t_0_4_3", + "titleize_0_1_1", + "wrap-it_0_1_1", +] +description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI" +license = [ + "MIT", +] +homepage = "https://github.com/pammacdotnet/IJIMAI" + +[ijimai."0.0.4"] +url = "https://packages.typst.org/preview/ijimai-0.0.4.tar.gz" +hash = "sha256-TMGEcCP27e0mLbDZdsOBT0kpYdL+5rnbvr38Z2cjJIg=" +typstDeps = [ + "datify_0_1_3", + "droplet_0_3_1", + "wrap-it_0_1_1", +] +description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI" +license = [ + "MIT", +] +homepage = "https://github.com/pammacdotnet/IJIMAI" + +[ijimai."0.0.3"] +url = "https://packages.typst.org/preview/ijimai-0.0.3.tar.gz" +hash = "sha256-xZmU8c/CXwHwCv2QuU83YhOiZ6nuADn5smSMhigjQPo=" +typstDeps = [ + "datify_0_1_3", + "droplet_0_3_1", + "wrap-it_0_1_1", +] +description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI" +license = [ + "MIT", +] +homepage = "https://github.com/pammacdotnet/IJIMAI" + +[ijimai."0.0.2"] +url = "https://packages.typst.org/preview/ijimai-0.0.2.tar.gz" +hash = "sha256-Uf+PQdL6RsBiKdkbWg+msGLwpkbwiBvBUnzk0MQow3M=" +typstDeps = [ + "datify_0_1_3", + "droplet_0_3_1", + "wrap-it_0_1_1", +] +description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI" +license = [ + "MIT", +] +homepage = "https://github.com/pammacdotnet/IJIMAI" + +[ijimai."0.0.1"] +url = "https://packages.typst.org/preview/ijimai-0.0.1.tar.gz" +hash = "sha256-kFxD8/Y9bNdIR9kreE6ieXAtjv5h41gH/sNTV07ljQM=" +typstDeps = [ + "datify_0_1_3", + "droplet_0_3_1", + "wrap-it_0_1_1", +] +description = "Template for writing articles for the International Journal of Interactive Multimedia and Artificial Intelligence (IJIMAI" +license = [ + "MIT", +] +homepage = "https://github.com/pammacdotnet/IJIMAI" + +[illc-mol-thesis."0.2.0"] +url = "https://packages.typst.org/preview/illc-mol-thesis-0.2.0.tar.gz" +hash = "sha256-aQisDHYRzCywWs1ayT5nRFO64F2bBPUJJgANhEGZSsk=" +typstDeps = [ + "great-theorems_0_1_2", + "rich-counters_0_2_2", +] +description = "Official Typst thesis template for Master of Logic students at the ILLC" +license = [ + "AGPL-3.0-or-later", +] +homepage = "https://codeberg.org/foxy/illc-mol-thesis" + +[illc-mol-thesis."0.1.2"] +url = "https://packages.typst.org/preview/illc-mol-thesis-0.1.2.tar.gz" +hash = "sha256-9WBdTt4Mw+XrOzJ1F1QhT8dWB/g+XwLsUf+EaSFwJUE=" +typstDeps = [ + "great-theorems_0_1_2", + "rich-counters_0_2_2", +] +description = "Official Typst thesis template for Master of Logic students at the ILLC" +license = [ + "AGPL-3.0-or-later", +] +homepage = "https://codeberg.org/foxy/illc-mol-thesis" + +[illc-mol-thesis."0.1.1"] +url = "https://packages.typst.org/preview/illc-mol-thesis-0.1.1.tar.gz" +hash = "sha256-toU02wycScUaNgoep7JM7qj3CyrgUeT1Ob7Gz6ACDOo=" +typstDeps = [ + "great-theorems_0_1_1", + "rich-counters_0_2_1", +] +description = "Official Typst thesis template for Master of Logic students at the ILLC" +license = [ + "AGPL-3.0-or-later", +] +homepage = "https://codeberg.org/foxy/illc-mol-thesis" + +[illc-mol-thesis."0.1.0"] +url = "https://packages.typst.org/preview/illc-mol-thesis-0.1.0.tar.gz" +hash = "sha256-dy+4Z+c0WI+jX0Ce6YC5s164NbJn1ljJ6JRn/G+XLHA=" +typstDeps = [ + "great-theorems_0_1_1", + "rich-counters_0_2_1", +] +description = "Official Typst thesis template for Master of Logic students at the ILLC" +license = [ + "AGPL-3.0-or-later", +] +homepage = "https://codeberg.org/foxy/illc-mol-thesis" + +[ilm."1.4.2"] +url = "https://packages.typst.org/preview/ilm-1.4.2.tar.gz" +hash = "sha256-aELsI13NxkUbjqBR363Wwzd0eJ8UzP1mLsQ28+z8qbg=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.4.1"] +url = "https://packages.typst.org/preview/ilm-1.4.1.tar.gz" +hash = "sha256-bNGWTEcDSqh2c/ziEEv3u92CWaFjjF6pe/2zhOv8OQg=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.4.0"] +url = "https://packages.typst.org/preview/ilm-1.4.0.tar.gz" +hash = "sha256-Wu2wBZoiPXzDytJUncFJnnpN+/m9ZNcSGkaulgx4Veo=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.3.1"] +url = "https://packages.typst.org/preview/ilm-1.3.1.tar.gz" +hash = "sha256-pBLAI7HLEtj8oANzzLP+CFjePvsYen1eF/VSN/kx1jU=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.3.0"] +url = "https://packages.typst.org/preview/ilm-1.3.0.tar.gz" +hash = "sha256-3mL+9h4jIztTdaSsVm5iDSi46oF3bz2kaPHumJwEips=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.2.1"] +url = "https://packages.typst.org/preview/ilm-1.2.1.tar.gz" +hash = "sha256-zdq7GDDfqi/xn5v8gLqzsCM+BrYhvRxTRIvxfzf/MVs=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.2.0"] +url = "https://packages.typst.org/preview/ilm-1.2.0.tar.gz" +hash = "sha256-3pdgzpe+AtYzEbKncrhU7tX6jILu7F8s8xPJO5ACAMg=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.1.3"] +url = "https://packages.typst.org/preview/ilm-1.1.3.tar.gz" +hash = "sha256-MuWkhqK6C9fq6bqnFQepVeaPyuyKko9eDEh40/Xv1hw=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.1.2"] +url = "https://packages.typst.org/preview/ilm-1.1.2.tar.gz" +hash = "sha256-iETNRl8W3WqBy/Jb1jgJuaFRipIVVkRgpjwz2oV/Y1k=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.1.1"] +url = "https://packages.typst.org/preview/ilm-1.1.1.tar.gz" +hash = "sha256-29Pz8aBx8eGhZMB1PX/gmGBJlU21Yyjv5TROUBxo8Ls=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, reports, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.1.0"] +url = "https://packages.typst.org/preview/ilm-1.1.0.tar.gz" +hash = "sha256-xBIOaQhabgiCERKlDIcDU5NoYr7bdOuPiD6keVdrObY=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."1.0.0"] +url = "https://packages.typst.org/preview/ilm-1.0.0.tar.gz" +hash = "sha256-tJh5S4ZTPJDdkkgBs2nrpevEgEppEFPZlKtsPiz3BUM=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."0.1.3"] +url = "https://packages.typst.org/preview/ilm-0.1.3.tar.gz" +hash = "sha256-sqVIgc9KsCGUDzJAIXTY7GhmpCOCMw/zJjpkqP7mJnM=" +typstDeps = [ + "ilm_0_1_2", +] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."0.1.2"] +url = "https://packages.typst.org/preview/ilm-0.1.2.tar.gz" +hash = "sha256-IpvMbQWR+I+d8KS972OcNiPepWFj+XavPLhOEX1pC/0=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."0.1.1"] +url = "https://packages.typst.org/preview/ilm-0.1.1.tar.gz" +hash = "sha256-JhExC3idGTCf69jC9cjeIm0cj0QdIT4yC7+1VS8ILjg=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[ilm."0.1.0"] +url = "https://packages.typst.org/preview/ilm-0.1.0.tar.gz" +hash = "sha256-07vyDs6QMXyeE4HlGD34X2pUHNaOPEZywBa3zY0aYEI=" +typstDeps = [] +description = "Versatile and minimal template for non-fiction writing. Ideal for class notes, report, and books" +license = [ + "MIT-0", +] +homepage = "https://github.com/talal/ilm" + +[impaginato."0.1.0"] +url = "https://packages.typst.org/preview/impaginato-0.1.0.tar.gz" +hash = "sha256-pQPxm8ggBP0YBMSu4fiHK4/h7h1SGrhZPdeTOBXwOBE=" +typstDeps = [] +description = "A practical flyer to print and cut at home" +license = [ + "MIT", +] + +[imprecv."1.0.1"] +url = "https://packages.typst.org/preview/imprecv-1.0.1.tar.gz" +hash = "sha256-q0y6QunluYMFNTJKlUqFheRDKzkQ7L7cuOKCX37/PXU=" +typstDeps = [] +description = "A no-frills curriculum vitae (CV) template using Typst and YAML to version control CV data" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/jskherman/imprecv" + +[imprecv."1.0.0"] +url = "https://packages.typst.org/preview/imprecv-1.0.0.tar.gz" +hash = "sha256-UkyMtrjje7GfR2pT9q1zHqil12KptIeghny43T98utw=" +typstDeps = [] +description = "A no-frills curriculum vitae (CV) template using Typst and YAML to version control CV data" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/jskherman/imprecv" + +[impressive-impression."0.1.0"] +url = "https://packages.typst.org/preview/impressive-impression-0.1.0.tar.gz" +hash = "sha256-bcnoPACzE3kI/ZXxjEqb2UzCeklM8Ofk9hD0l831ZJ4=" +typstDeps = [ + "fontawesome_0_5_0", + "nth_1_0_1", +] +description = "A Typst template for a professional and readable curriculum vitae" +license = [ + "MIT", +] +homepage = "https://github.com/JeppeKlitgaard/impressive-impression" + +[in-dexter."0.7.2"] +url = "https://packages.typst.org/preview/in-dexter-0.7.2.tar.gz" +hash = "sha256-e2bO70xWHPBqaLd2GnN2tBuNHvrkQ4yus9orINknjYY=" +typstDeps = [] +description = "Create an 'hand picked' Index" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.7.0"] +url = "https://packages.typst.org/preview/in-dexter-0.7.0.tar.gz" +hash = "sha256-yzRnJe14VYyYWSYAs3pEDDZLU8QfBfC2sK1OP0Bkc50=" +typstDeps = [] +description = "Create an 'hand picked' Index" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.5.3"] +url = "https://packages.typst.org/preview/in-dexter-0.5.3.tar.gz" +hash = "sha256-9uC2p04LPZpyflniWuWA15fEl+NRKLxt19QL+Xkx5i0=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.5.2"] +url = "https://packages.typst.org/preview/in-dexter-0.5.2.tar.gz" +hash = "sha256-hNnw25kWvyClJkgRKXeDZX8njD3U1qSXwLC/cemtnxg=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.4.2"] +url = "https://packages.typst.org/preview/in-dexter-0.4.2.tar.gz" +hash = "sha256-CC+5kWaQUF0qD/25hMhKiPtZi+EAEc7SsHs/7bySp0E=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.3.0"] +url = "https://packages.typst.org/preview/in-dexter-0.3.0.tar.gz" +hash = "sha256-RKRYCc36nP57S4daR5IWT7klMicoZMkjijtyyyrv9vY=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.2.0"] +url = "https://packages.typst.org/preview/in-dexter-0.2.0.tar.gz" +hash = "sha256-tS6dUnpl4/MJGt5c9q1SlvufYJn6chqwIkF5gg9shGo=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.1.0"] +url = "https://packages.typst.org/preview/in-dexter-0.1.0.tar.gz" +hash = "sha256-gQ9O89PiNvrnTvrkH22FKfAY/ZOcN9WGxqB/EqYGubs=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.0.6"] +url = "https://packages.typst.org/preview/in-dexter-0.0.6.tar.gz" +hash = "sha256-C8ZctB6P7eQ9+fhp7aW+m+vcVLnk934zZR1kWtN0eco=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.0.5"] +url = "https://packages.typst.org/preview/in-dexter-0.0.5.tar.gz" +hash = "sha256-YhCLddQ2HrI9c/DgpmkT9ePezKzZYL6rMgJvZ9zUHg4=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.0.4"] +url = "https://packages.typst.org/preview/in-dexter-0.0.4.tar.gz" +hash = "sha256-cEmqXywlCkEbLL49xnyF4ppAl/jpOhvpc1x8EWKREJU=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[in-dexter."0.0.3"] +url = "https://packages.typst.org/preview/in-dexter-0.0.3.tar.gz" +hash = "sha256-77ol5CQKXrGoVS4LD0RBnhHLss6BLfQRTXY7dGuJHzY=" +typstDeps = [] +description = "Hand Picked Index for Typst" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + +[inboisu."0.1.0"] +url = "https://packages.typst.org/preview/inboisu-0.1.0.tar.gz" +hash = "sha256-0hPwa7JwI/NvbkW3O34w3kSFDIHGhfmCvrStqBYWRxo=" +typstDeps = [ + "tablex_0_0_9", +] +description = "Inboisu is a tool for creating Japanese invoices" +license = [ + "MIT-0", +] +homepage = "https://github.com/mkpoli/typst-inboisu" + +[indenta."0.0.3"] +url = "https://packages.typst.org/preview/indenta-0.0.3.tar.gz" +hash = "sha256-3xatpD/it9Q43n5Ow9X5esZBXXw5ZBMEktfhKd4AejA=" +typstDeps = [] +description = "Fix indent of first paragraph" +license = [ + "MIT", +] +homepage = "https://github.com/flaribbit/indenta" + +[indenta."0.0.2"] +url = "https://packages.typst.org/preview/indenta-0.0.2.tar.gz" +hash = "sha256-OEcO2y5xsNZqUw7o/2lUZk7u7c9uhffTyn4qJw48+/I=" +typstDeps = [] +description = "Fix indent of first paragraph" +license = [ + "MIT", +] +homepage = "https://github.com/flaribbit/indenta" + +[indenta."0.0.1"] +url = "https://packages.typst.org/preview/indenta-0.0.1.tar.gz" +hash = "sha256-UxLhZaFlp2UN/Y2kj7U2hGOF1NS5eeJVwEaF6Cv0lqU=" +typstDeps = [] +description = "Fix indent of first paragraph" +license = [ + "MIT", +] +homepage = "https://github.com/flaribbit/indenta" + +[indic-numerals."0.1.0"] +url = "https://packages.typst.org/preview/indic-numerals-0.1.0.tar.gz" +hash = "sha256-qL2C6OHjMRqVTUFYSjVus3iE9HR1CklJdwMjPQ97QHo=" +typstDeps = [] +description = "convert arabic numerals to indic numerals and vice versa" +license = [ + "MIT", +] +homepage = "https://github.com/cecoeco/indic-numerals" + +[ineris-print."0.1.0"] +url = "https://packages.typst.org/preview/ineris-print-0.1.0.tar.gz" +hash = "sha256-hpWdNkHRY4jFN8hJvv0pdu/+qlnGHIb4B1UjLAgoVqo=" +typstDeps = [ + "showybox_2_0_4", +] +description = "A document template using the design guidelines of French national institute for industrial environment and risks" +license = [ + "MIT-0", +] +homepage = "https://github.com/frodonh/typst-packages" + +[ineris-slide."0.1.0"] +url = "https://packages.typst.org/preview/ineris-slide-0.1.0.tar.gz" +hash = "sha256-/LVt89JTIqi7KSrNZAv7bafjehuEqJmWAf92x61BlYg=" +typstDeps = [ + "shadowed_0_2_0", + "showybox_2_0_4", + "touying_0_6_1", +] +description = "A presentation template using the design guidelines of the French institute for industrial environment and risks" +license = [ + "MIT", +] + +[intextual."0.1.1"] +url = "https://packages.typst.org/preview/intextual-0.1.1.tar.gz" +hash = "sha256-9CP/VUh41EhH7pBOsAupE94qSV6gi6lOPJuF5iv684k=" +typstDeps = [] +description = "Flushed left/right text and individual line tagging in equations" +license = [ + "MIT", +] +homepage = "https://github.com/euwbah/intextual" + +[intextual."0.1.0"] +url = "https://packages.typst.org/preview/intextual-0.1.0.tar.gz" +hash = "sha256-AuTGRdTIY9a8ETKXLiEv+ESUJFnF9UGDco/NfPB04Hw=" +typstDeps = [] +description = "Flushed left/right text and individual line tagging in equations" +license = [ + "MIT", +] +homepage = "https://github.com/euwbah/intextual" + +[invicta-thesis."1.0.0"] +url = "https://packages.typst.org/preview/invicta-thesis-1.0.0.tar.gz" +hash = "sha256-1Zo0/JKWkpWeOKGBoBT+iwyqP7GQ+lA9Da3HPFB9U4M=" +typstDeps = [] +description = "Master's thesis for Faculty of Engineering of University of Porto" +license = [ + "MIT", +] +homepage = "https://github.com/Tonevanda/invicta-thesis" + +[invoice-maker."1.1.0"] +url = "https://packages.typst.org/preview/invoice-maker-1.1.0.tar.gz" +hash = "sha256-IT1P65mtzpgUUUHwOIDHoYG8x3GeP3MtSU+OzJFGFVs=" +typstDeps = [] +description = "Generate beautiful invoices from a simple data record" +license = [ + "ISC", +] +homepage = "https://github.com/ad-si/invoice-maker" + +[ionio-illustrate."0.2.0"] +url = "https://packages.typst.org/preview/ionio-illustrate-0.2.0.tar.gz" +hash = "sha256-p+Z4u91PvA2APXlk80ZikJTEk+JIhPpIn64Z6P+rLrY=" +typstDeps = [ + "cetz_0_1_2", +] +description = "Mass spectra with annotations for typst" +license = [ + "MIT", +] +homepage = "https://github.com/JamesxX/ionio-illustrate" + +[ionio-illustrate."0.1.0"] +url = "https://packages.typst.org/preview/ionio-illustrate-0.1.0.tar.gz" +hash = "sha256-Wa/tLkpXkfzBhGgeRnVip7oblihNpdXmcoIGKKqMGaw=" +typstDeps = [ + "cetz_0_1_2", +] +description = "Mass spectra with annotations for typst" +license = [ + "MIT", +] + +[iridis."0.1.0"] +url = "https://packages.typst.org/preview/iridis-0.1.0.tar.gz" +hash = "sha256-ryceOZ0JS+SN90DO7C1n5D2sqizhM9yrXgW+Oxuo8UA=" +typstDeps = [] +description = "A package to colors matching parenthesis" +license = [ + "MIT", +] + +[irif."0.0.1"] +url = "https://packages.typst.org/preview/irif-0.0.1.tar.gz" +hash = "sha256-uNuwdgAAohs+ZsvwUdSXargjcVDoV1ilc7eckRVCXEY=" +typstDeps = [ + "cetz_0_4_2", + "cetz-plot_0_1_3", +] +description = "Numerical methods for integration, differentiation and root finding" +license = [ + "MIT-0", +] + +[isc-hei-bthesis."0.6.0"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.6.0.tar.gz" +hash = "sha256-n3e2GMZHLKtnz8WqshHjbo32eK/TW5SrQDG+Ot7qkMI=" +typstDeps = [ + "acrostiche_0_6_0", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-bthesis."0.5.3"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.5.3.tar.gz" +hash = "sha256-Fg91DRIus2eqYD9P4atooWdYWBla/pb2ciEhUhNpqVM=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-bthesis."0.5.2"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.5.2.tar.gz" +hash = "sha256-QFljcFpF6rWq57HmIODOx2RqyHBGqufvluQB6I7qTOs=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-bthesis."0.5.0"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.5.0.tar.gz" +hash = "sha256-G3ALq44SjUVAOZcGqwcQHwYLGuHEE4Rkhr151tg35oY=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + +[isc-hei-exec-summary."0.6.0"] +url = "https://packages.typst.org/preview/isc-hei-exec-summary-0.6.0.tar.gz" +hash = "sha256-SE0U10GbKFfHndhan6jH7vY6L0AZgjmya97j62XX1y0=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official executive summary for the bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-exec-summary."0.5.3"] +url = "https://packages.typst.org/preview/isc-hei-exec-summary-0.5.3.tar.gz" +hash = "sha256-QtKHrRjswcRY2aQMT9qFR+RN20qp8Er6x5sM+jQ4s48=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official executive summary for the bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-exec-summary."0.5.2"] +url = "https://packages.typst.org/preview/isc-hei-exec-summary-0.5.2.tar.gz" +hash = "sha256-8MoRA3ViivS4QW/+2gMSseLmbZswP1+xkz399JznKwM=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official executive summary for the bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.6.0"] +url = "https://packages.typst.org/preview/isc-hei-report-0.6.0.tar.gz" +hash = "sha256-26k85qM7WxpRdRJM+qQ8hC7jY17zIVsAIGyV0FKoC3s=" +typstDeps = [ + "acrostiche_0_6_0", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.5.3"] +url = "https://packages.typst.org/preview/isc-hei-report-0.5.3.tar.gz" +hash = "sha256-JUkPOj7yGYhsJM4eUInFhAYSagCBMZx2RUa197XkxGA=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.5.2"] +url = "https://packages.typst.org/preview/isc-hei-report-0.5.2.tar.gz" +hash = "sha256-YdPVkSIpD8kPzZEeuVlKMOLIzVZdglY69nJGJHeblYA=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.3.1"] +url = "https://packages.typst.org/preview/isc-hei-report-0.3.1.tar.gz" +hash = "sha256-y8D9d6HGCcgNzuLtp+4hdX1oUhMcduiqzPXgEf2e4rw=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + +[isc-hei-report."0.2.0"] +url = "https://packages.typst.org/preview/isc-hei-report-0.2.0.tar.gz" +hash = "sha256-z+XY4IaAOqxAZxjKDLVb/aou/RVOFSnnrTowcRVua60=" +typstDeps = [ + "acrostiche_0_5_1", + "codelst_2_0_2", + "showybox_2_0_3", +] +description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + +[isc-hei-report."0.1.5"] +url = "https://packages.typst.org/preview/isc-hei-report-0.1.5.tar.gz" +hash = "sha256-+z4/39eEZHqnzoQ335iCLJ2BXGuCPJMlPcXb86g48rE=" +typstDeps = [ + "acrostiche_0_3_0", + "acrostiche_0_3_1", + "codelst_2_0_1", + "showybox_2_0_1", +] +description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + +[isc-hei-report."0.1.3"] +url = "https://packages.typst.org/preview/isc-hei-report-0.1.3.tar.gz" +hash = "sha256-nuzvDLXZ7rfCCKui+K9w12SRFVwcde3nN+thvot6a6g=" +typstDeps = [ + "acrostiche_0_3_0", + "acrostiche_0_3_1", + "codelst_2_0_1", + "showybox_2_0_1", +] +description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + +[isc-hei-report."0.1.0"] +url = "https://packages.typst.org/preview/isc-hei-report-0.1.0.tar.gz" +hash = "sha256-vkDZBocPZJOPIyf2j1oZ5rvzMT0wMG/a2BURXTjv6DA=" +typstDeps = [ + "acrostiche_0_3_0", + "codelst_2_0_1", + "showybox_2_0_1", +] +description = "An official report template for the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + +[itemize."0.2.0"] +url = "https://packages.typst.org/preview/itemize-0.2.0.tar.gz" +hash = "sha256-lpYFxvv5BT9M29CVn3GSDqBv3r3PAEpSR070caAcF7M=" +typstDeps = [ + "elembic_1_1_1", +] +description = "An easy way to customize enum and list" +license = [ + "MIT", +] +homepage = "https://github.com/tianyi-smile/itemize" + +[itemize."0.1.2"] +url = "https://packages.typst.org/preview/itemize-0.1.2.tar.gz" +hash = "sha256-odjgULdhQlhl9+mY4QATSguJ8egMxnTNcSoi1ptzzFA=" +typstDeps = [ + "elembic_1_1_1", +] +description = "An easy way to customize enum and list" +license = [ + "MIT", +] +homepage = "https://github.com/tianyi-smile/itemize" + +[itemize."0.1.1"] +url = "https://packages.typst.org/preview/itemize-0.1.1.tar.gz" +hash = "sha256-xODP6pJQ/3pt4ZZTnwUYjn2vwr7VaRkBMOeJtvSQ8II=" +typstDeps = [ + "elembic_1_1_1", +] +description = "An easy way to customize enum and list" +license = [ + "MIT", +] +homepage = "https://github.com/tianyi-smile/itemize" + +[itemize."0.1.0"] +url = "https://packages.typst.org/preview/itemize-0.1.0.tar.gz" +hash = "sha256-Ul4x4BpuHYAHHK8OsFUEPedWMDbCsmwc8r9oVUzIYFM=" +typstDeps = [ + "elembic_1_1_1", +] +description = "An easy way to customize enum and list" +license = [ + "MIT", +] +homepage = "https://github.com/tianyi-smile/itemize" + +[its-scripted."0.1.0"] +url = "https://packages.typst.org/preview/its-scripted-0.1.0.tar.gz" +hash = "sha256-Q7zPoW9hjAoirl2xb5sG2/tY3ornofX1hq6B6OIQBHo=" +typstDeps = [] +description = "A template for writing movie/tv/theater-scripts in screenplay format" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/danielFHcode/typst-screenplay" + +[iversymbols."1.0.0"] +url = "https://packages.typst.org/preview/iversymbols-1.0.0.tar.gz" +hash = "sha256-AwzFq8VodBokrIFXF3iWJM+iOGA5UV0xiPrwyssVxmk=" +typstDeps = [] +description = "Symbols definition for Iversonian languages" +license = [ + "MIT", +] +homepage = "https://github.com/glpda/typst-iversymbols" + +[jabiz."0.1.2"] +url = "https://packages.typst.org/preview/jabiz-0.1.2.tar.gz" +hash = "sha256-VULtFe+MCBNIo1r2tpXwmkY08vUU2K4AfSONuIE96bg=" +typstDeps = [ + "cjk-unbreak_0_1_1", +] +description = "Template for Japanese business documents. 日本語のビジネス文書テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jabiz" + +[jabiz."0.1.1"] +url = "https://packages.typst.org/preview/jabiz-0.1.1.tar.gz" +hash = "sha256-0lZChZ7XzZ1WUHD5zzUYPvMi8Hgu5LbnmLG73HKNhho=" +typstDeps = [ + "cjk-unbreak_0_1_1", +] +description = "Template for Japanese business documents. 日本語のビジネス文書テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jabiz" + +[jabiz."0.1.0"] +url = "https://packages.typst.org/preview/jabiz-0.1.0.tar.gz" +hash = "sha256-3bNtG+KOksuICZeBpUFRenzEnclwKmqbJxxU3AhOp7Q=" +typstDeps = [] +description = "Template for Japanese business documents. 日本語のビジネス文書テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jabiz" + +[jaconf."0.6.0"] +url = "https://packages.typst.org/preview/jaconf-0.6.0.tar.gz" +hash = "sha256-O4kDiSJC4VRK0W0mrWLfpiG35tqEoGXzZKfMHrlQtGc=" +typstDeps = [ + "cjk-unbreak_0_2_0", + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jaconf" + +[jaconf."0.5.1"] +url = "https://packages.typst.org/preview/jaconf-0.5.1.tar.gz" +hash = "sha256-pTFqoSsvhXyq2zjwLwhPlQ/8pCf5bLzoEhO/49y5Zik=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.5.0"] +url = "https://packages.typst.org/preview/jaconf-0.5.0.tar.gz" +hash = "sha256-bjaYZJTPSx5wdqkYvnEm59dQjG6+ZHvqxPE/vzyTk4s=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.4.1"] +url = "https://packages.typst.org/preview/jaconf-0.4.1.tar.gz" +hash = "sha256-jEKMQvb/KMrwxEP2mBLoWrk+trKigKPVr5LpalW/+II=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.4.0"] +url = "https://packages.typst.org/preview/jaconf-0.4.0.tar.gz" +hash = "sha256-2pAoMSsqx5MuMfJfq3Wr45tORwlrcbbdxVrkZhq9M+M=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.3.0"] +url = "https://packages.typst.org/preview/jaconf-0.3.0.tar.gz" +hash = "sha256-b5um0HbkDzjEGf+4BQ0jl3/kzQ1K/WLnPM8Yf/ezEKU=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.2.0"] +url = "https://packages.typst.org/preview/jaconf-0.2.0.tar.gz" +hash = "sha256-5xmilnRul9O9qoUX0+P/OFa7++jVxu7a3+W2uoKBQtU=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.1.0"] +url = "https://packages.typst.org/preview/jaconf-0.1.0.tar.gz" +hash = "sha256-PhIVlUMIVpcIuWUG9vp9eFLZf1g3qsq/oUCNK3NPEDE=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 国内学会論文の日本語テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf-mscs."0.1.1"] +url = "https://packages.typst.org/preview/jaconf-mscs-0.1.1.tar.gz" +hash = "sha256-6Ha6XG1TOmrRRg2PNWKl/3XKAnE+TJdWrzfSlnRfXnk=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese conference paper of engineering. 工学系の日本語学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf-mscs."0.1.0"] +url = "https://packages.typst.org/preview/jaconf-mscs-0.1.0.tar.gz" +hash = "sha256-Vvp2RFqMP2/Uho0VrA4ZE3DXJuj3cy5cPRaxv280x1o=" +typstDeps = [ + "codly_1_1_1", + "ctheorems_1_1_3", +] +description = "Template for Japanese conference paper of engineering. 工学系の日本語学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jastylest."0.1.2"] +url = "https://packages.typst.org/preview/jastylest-0.1.2.tar.gz" +hash = "sha256-4MIjcyWdA0pMTGNSR7UmYflpKNIMzRe6Zmrr2odF968=" +typstDeps = [] +description = "You can set up style templates for writing reports, papers, and slides in Japanese. It works similarly to LaTeX" +license = [ + "MIT-0", +] +homepage = "https://github.com/raygo0312/jastylest.git" + +[jastylest."0.1.1"] +url = "https://packages.typst.org/preview/jastylest-0.1.1.tar.gz" +hash = "sha256-3b3jtsw3E6EIbsVyB7RE0dBibdjp1P6PHSYN+OAJyww=" +typstDeps = [] +description = "You can set up style templates for writing reports, papers, and slides in Japanese. It works similarly to LaTeX" +license = [ + "MIT-0", +] +homepage = "https://github.com/raygo0312/jastylest.git" + +[jastylest."0.1.0"] +url = "https://packages.typst.org/preview/jastylest-0.1.0.tar.gz" +hash = "sha256-PCCVfomVgNn6R4R77vwK99tOV+0Dn618SJkPxnHTa4o=" +typstDeps = [] +description = "You can set up style templates for writing reports, papers, and slides in Japanese. It works similarly to LaTeX" +license = [ + "MIT-0", +] +homepage = "https://github.com/raygo0312/jastylest.git" + +[jastylest-zh."0.1.1"] +url = "https://packages.typst.org/preview/jastylest-zh-0.1.1.tar.gz" +hash = "sha256-3uAg9oFE0K3dmNJqJHvVnreHTPmXPgsnmCPc1f8SfOQ=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "pointless-size_0_1_1", +] +description = "Article optimized for Chinese typesetting" +license = [ + "MIT", +] +homepage = "https://github.com/mike-unk/jastylest-zh.git" + +[jastylest-zh."0.1.0"] +url = "https://packages.typst.org/preview/jastylest-zh-0.1.0.tar.gz" +hash = "sha256-WHHkRwIGWcgm7ekFuTp5BoIs5DHosiPNj+ZMx8Zo/00=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "pointless-size_0_1_1", +] +description = "Article optimized for Chinese typesetting" +license = [ + "MIT", +] +homepage = "https://github.com/mike-unk/jastylest-zh.git" + +[jlyfish."0.1.0"] +url = "https://packages.typst.org/preview/jlyfish-0.1.0.tar.gz" +hash = "sha256-h7WTNYT4tPbAEF7B50fUP7oHVnNIDJxedS3CMZxcbQ4=" +typstDeps = [ + "based_0_1_0", +] +description = "Julia code evaluation inside your Typst document" +license = [ + "MIT", +] +homepage = "https://github.com/andreasKroepelin/TypstJlyfish.jl" + +[jogs."0.2.4"] +url = "https://packages.typst.org/preview/jogs-0.2.4.tar.gz" +hash = "sha256-WZYXL2dKMK/B2LDDt9iRMkvJO0QZXRarEECNlF1QwTQ=" +typstDeps = [] +description = "QuickJS JavaScript runtime for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/jogs" + +[jogs."0.2.3"] +url = "https://packages.typst.org/preview/jogs-0.2.3.tar.gz" +hash = "sha256-XWXBYCki9munvKJGRrH+mN8gmba1PNN7dpR19HG9Hjk=" +typstDeps = [] +description = "QuickJS JavaScript runtime for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/jogs" + +[jogs."0.2.2"] +url = "https://packages.typst.org/preview/jogs-0.2.2.tar.gz" +hash = "sha256-VlhWrCmqphFJfraNaENwBElyyzGPuFTNax44BtlAr3k=" +typstDeps = [] +description = "QuickJS JavaScript runtime for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/jogs" + +[jogs."0.2.1"] +url = "https://packages.typst.org/preview/jogs-0.2.1.tar.gz" +hash = "sha256-z/MoF0l9qarxCL0dCNIRtYs05Grst1IyYAbIw/KEyxA=" +typstDeps = [] +description = "QuickJS JavaScript runtime for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/jogs" + +[jogs."0.2.0"] +url = "https://packages.typst.org/preview/jogs-0.2.0.tar.gz" +hash = "sha256-gNOZwfjHvz6R3r/FfLSM16jKu81vYK63ZAdpJMo2+Yg=" +typstDeps = [] +description = "QuickJS JavaScript runtime for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/jogs" + +[jogs."0.1.0"] +url = "https://packages.typst.org/preview/jogs-0.1.0.tar.gz" +hash = "sha256-nleCwdDbkqBdWElIoh5CVrszjYsicVAWFjGBb52vB5I=" +typstDeps = [] +description = "QuickJS JavaScript runtime for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/jogs" + +[jotter-polylux."0.1.0"] +url = "https://packages.typst.org/preview/jotter-polylux-0.1.0.tar.gz" +hash = "sha256-j7u4NOvCwMnMp1Vu2N3JqzV0bf7iRTXRZ9xinB2Rhyg=" +typstDeps = [ + "polylux_0_4_0", + "suiji_0_4_0", + "umbra_0_1_1", +] +description = "Handwritten notebook style template for Polylux" +license = [ + "MIT", +] +homepage = "https://github.com/polylux-typ/jotter" + +[js."0.1.3"] +url = "https://packages.typst.org/preview/js-0.1.3.tar.gz" +hash = "sha256-yf7bg3vx2h8KY/VSqL6lJhbiN0Vk0s/BHt7OIpIAUMw=" +typstDeps = [] +description = "Typst template based on LaTeX jsarticle/jsbook document classes" +license = [ + "MIT-0", +] +homepage = "https://github.com/okumuralab/typst-js" + +[js."0.1.2"] +url = "https://packages.typst.org/preview/js-0.1.2.tar.gz" +hash = "sha256-MXv0VPyEzMsuVNZhJXJzjlOJ4qYYeqHqbf3pxq6vyZ4=" +typstDeps = [] +description = "Typst template based on LaTeX jsarticle/jsbook document classes" +license = [ + "MIT-0", +] +homepage = "https://github.com/okumuralab/typst-js" + +[js."0.1.1"] +url = "https://packages.typst.org/preview/js-0.1.1.tar.gz" +hash = "sha256-MDWS5b81xz1LfQw0sWBQB8NC4G8Ol2GDnmBEIj/w89o=" +typstDeps = [] +description = "Typst template based on LaTeX jsarticle/jsbook document classes" +license = [ + "MIT-0", +] +homepage = "https://github.com/okumuralab/typst-js" + +[js."0.1.0"] +url = "https://packages.typst.org/preview/js-0.1.0.tar.gz" +hash = "sha256-DrsvfvaDGVcl+QkHjhnJYPCenBKQAZe47s2abtN/20c=" +typstDeps = [] +description = "Typst template based on LaTeX jsarticle/jsbook document classes" +license = [ + "MIT-0", +] +homepage = "https://github.com/okumuralab/typst-js" + +[jsonpath."0.1.0"] +url = "https://packages.typst.org/preview/jsonpath-0.1.0.tar.gz" +hash = "sha256-bb5AQ9E6t3bM2MVCQHTJIz6VaZL2jeIkjz8Ri5DiE18=" +typstDeps = [] +description = "jsonpath extracts values from dictionary or array using a JSONPath expression as per RFC 9535, except the filter syntax is different" +license = [ + "MIT", +] +homepage = "https://github.com/qjebbs/typst-jsonpath" + +[jsonschemeyst."0.0.1"] +url = "https://packages.typst.org/preview/jsonschemeyst-0.0.1.tar.gz" +hash = "sha256-9AEzhMw6JgUhBozhbbrZyyzXtDu9h/4hTEeUq7WFyg8=" +typstDeps = [] +description = "jsonschema validator for typst" +license = [ + "MIT", +] + +[jumble."0.0.1"] +url = "https://packages.typst.org/preview/jumble-0.0.1.tar.gz" +hash = "sha256-GnQdiXXCTIIILynOiWgbwmmovZ+6x99IjkiGzOnzVVA=" +typstDeps = [ + "tidy_0_4_0", +] +description = "A package providing some hash functions and related stuff" +license = [ + "Apache-2.0", +] +homepage = "https://git.kb28.ch/HEL/jumble" + +[jurz."0.1.0"] +url = "https://packages.typst.org/preview/jurz-0.1.0.tar.gz" +hash = "sha256-m/Mj05WArGW5YDoKNdyt1F0YQTS1Dz5Jw9er8w2vyas=" +typstDeps = [] +description = "Randziffern in Typst" +license = [ + "MIT", +] + +[juti."0.0.2"] +url = "https://packages.typst.org/preview/juti-0.0.2.tar.gz" +hash = "sha256-BcluOxlfOmvwCMGY1tnoLMOGpGw2FK+K4O9VbmAXDIc=" +typstDeps = [] +description = "Template for writing articles for JUTI: Jurnal Ilmiah Teknologi Informasi" +license = [ + "MIT", +] + +[juti."0.0.1"] +url = "https://packages.typst.org/preview/juti-0.0.1.tar.gz" +hash = "sha256-vUaHThW8boRmGh6g8xnTJpyAJD6oDMI9HEq9vtSbzcY=" +typstDeps = [] +description = "Template for writing articles for JUTI: Jurnal Ilmiah Teknologi Informasi" +license = [ + "MIT", +] + +[k-mapper."1.3.0"] +url = "https://packages.typst.org/preview/k-mapper-1.3.0.tar.gz" +hash = "sha256-d9/pdDMbCIiJxveqqHxpe9PRdzZzJ4RNLRvIds98WUM=" +typstDeps = [] +description = "A package to add Karnaugh maps into Typst projects" +license = [ + "MIT", +] +homepage = "https://github.com/derekchai/typst-karnaugh-map" + +[k-mapper."1.2.0"] +url = "https://packages.typst.org/preview/k-mapper-1.2.0.tar.gz" +hash = "sha256-iJj/FMGu/4DAz6yqrUZ62WeFxhXVxszkVyqeS0NOnDg=" +typstDeps = [] +description = "A package to add Karnaugh maps into Typst projects" +license = [ + "MIT", +] +homepage = "https://github.com/derekchai/typst-karnaugh-map" + +[k-mapper."1.1.0"] +url = "https://packages.typst.org/preview/k-mapper-1.1.0.tar.gz" +hash = "sha256-2sqjAMkjCwcgI4OOLfrzwyUc4Rx28EoPHxFeFfYB80E=" +typstDeps = [] +description = "A package to add Karnaugh maps into Typst projects" +license = [ + "MIT", +] +homepage = "https://github.com/derekchai/typst-karnaugh-map" + +[k-mapper."1.0.0"] +url = "https://packages.typst.org/preview/k-mapper-1.0.0.tar.gz" +hash = "sha256-w8GanT6MurAkT3T6nKCWxLMIWwRxbsLSbGSCtcrOqAo=" +typstDeps = [] +description = "A package to add Karnaugh maps into Typst projects" +license = [ + "MIT", +] +homepage = "https://github.com/derekchai/typst-karnaugh-map" + +[kanjimo."0.1.0"] +url = "https://packages.typst.org/preview/kanjimo-0.1.0.tar.gz" +hash = "sha256-6caBsc8kZytwVe0XEPiX0qiw5xPe0lPWDwGJVZcRCzE=" +typstDeps = [] +description = "Create charts with selected kanji for practicing" +license = [ + "MIT", +] +homepage = "https://github.com/istudyatuni/kanjimo" + +[kantan."0.1.0"] +url = "https://packages.typst.org/preview/kantan-0.1.0.tar.gz" +hash = "sha256-8xZmVXT+LP34XM7TFBE6NFyvWjpjhWVuP1/8lEI72jc=" +typstDeps = [] +description = "Easily create kanban boards with Typst" +license = [ + "AGPL-3.0-only", +] +homepage = "https://codeberg.org/Andrew15-5/kantan" + +[kdl-unofficial-template."0.1.0"] +url = "https://packages.typst.org/preview/kdl-unofficial-template-0.1.0.tar.gz" +hash = "sha256-GDTzRTc+9O/8QJ50qZZZlXUxhVYPzq2NRym6yKZ/3v4=" +typstDeps = [ + "cetz_0_3_3", + "droplet_0_3_1", + "suiji_0_3_0", +] +description = "An unofficial template for community scenarios for the TTRPG 'KULT: divinity lost" +license = [ + "MIT", +] + +[kebab-chart."0.2.0"] +url = "https://packages.typst.org/preview/kebab-chart-0.2.0.tar.gz" +hash = "sha256-kQXGnNXEoyIOnhJ/fpvTO31opTzcowzBunOd3dN+h/g=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Chart for temporal span representation" +license = [ + "MIT", +] +homepage = "https://github.com/tguichaoua/kebab-chart" + +[kebab-chart."0.1.0"] +url = "https://packages.typst.org/preview/kebab-chart-0.1.0.tar.gz" +hash = "sha256-iIYiLe8b0yDnCeLIy5RETL/13B61u2itNI1jds6wn9s=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Chart for temporal span representation" +license = [ + "MIT", +] +homepage = "https://github.com/tguichaoua/kebab-chart" + +[keyle."0.2.0"] +url = "https://packages.typst.org/preview/keyle-0.2.0.tar.gz" +hash = "sha256-RhC88JBzKG1muu+hoWB/Y8Q6/KUyeU72EU0OzllpUBA=" +typstDeps = [ + "codelst_2_0_0", + "mantys_0_1_4", + "showybox_2_0_1", +] +description = "This package provides a simple way to style keyboard shortcuts in your documentation" +license = [ + "MIT", +] +homepage = "https://github.com/magicwenli/keyle" + +[keyle."0.1.1"] +url = "https://packages.typst.org/preview/keyle-0.1.1.tar.gz" +hash = "sha256-GPTeNT5cFVzbMgmSZ/1U6+B+gWCkh+R1ppBMqsBtiKE=" +typstDeps = [ + "keyle_0_1_0", + "mantys_0_1_4", +] +description = "This package provides a simple way to style keyboard shortcuts in your documentation" +license = [ + "MIT", +] +homepage = "https://github.com/magicwenli/keyle" + +[keyle."0.1.0"] +url = "https://packages.typst.org/preview/keyle-0.1.0.tar.gz" +hash = "sha256-rCWePSV9alPZfuw8TBw1wYXMexBVepEgmjhbA1ehbKc=" +typstDeps = [ + "mantys_0_1_4", +] +description = "This package provides a simple way to style keyboard shortcuts in your documentation" +license = [ + "MIT", +] +homepage = "https://github.com/magicwenli/keyle" + +[kinase."0.1.0"] +url = "https://packages.typst.org/preview/kinase-0.1.0.tar.gz" +hash = "sha256-WRGyitKZga3XdXwF2MKgE81iVhAJCPJFd1Q+MWCv/6o=" +typstDeps = [ + "mantys_0_1_1", + "tidy_0_2_0", +] +description = "Easy styling for different link types like mails and urls" +license = [ + "MIT", +] + +[kiresume."0.1.17"] +url = "https://packages.typst.org/preview/kiresume-0.1.17.tar.gz" +hash = "sha256-/0IIJl3tUCWDYDt2aoW3HYmRodtLvpOXuVNraa3WqiA=" +typstDeps = [] +description = "A clean and customisable resume template" +license = [ + "Unlicense", +] +homepage = "https://github.com/alpoi/kiresume" + +[klaro-ifsc-sj."0.1.0"] +url = "https://packages.typst.org/preview/klaro-ifsc-sj-0.1.0.tar.gz" +hash = "sha256-ib34/i22ozy0OlhXaOTX5oQn2ITQVHVLYQqBYnDGQDA=" +typstDeps = [] +description = "Report Typst template for IFSC" +license = [ + "MIT-0", +] +homepage = "https://github.com/gabrielluizep/klaro-ifsc-sj" + +[km."0.1.0"] +url = "https://packages.typst.org/preview/km-0.1.0.tar.gz" +hash = "sha256-kWhaIc5GTBxodLNQcVP82mD7CKnuwKzLOnK8em3SLeI=" +typstDeps = [] +description = "Draw simple Karnaugh maps" +license = [ + "MIT", +] +homepage = "https://git.sr.ht/~toto/karnaugh" + +[knowledge-key."1.0.2"] +url = "https://packages.typst.org/preview/knowledge-key-1.0.2.tar.gz" +hash = "sha256-ivyWQu5/o6kLeF8Elv5h60YTLw/l0QBJkAwjcPR02FY=" +typstDeps = [ + "codelst_2_0_2", + "tablex_0_0_9", +] +description = "A compact cheat-sheet" +license = [ + "MIT-0", +] +homepage = "https://github.com/ngoetti/knowledge-key" + +[knowledge-key."1.0.1"] +url = "https://packages.typst.org/preview/knowledge-key-1.0.1.tar.gz" +hash = "sha256-mpbfURVxssF0aVKPvvXRWpGUK9TyuXEoz8zdnJrPKP0=" +typstDeps = [ + "codelst_2_0_1", + "tablex_0_0_8", +] +description = "A compact cheat-sheet" +license = [ + "MIT-0", +] +homepage = "https://github.com/ngoetti/knowledge-key" + +[knowledge-key."1.0.0"] +url = "https://packages.typst.org/preview/knowledge-key-1.0.0.tar.gz" +hash = "sha256-L4eU2sqCSj31tMXBysjVU8i0aAoF9nVoIgqZffV6VKo=" +typstDeps = [ + "codelst_2_0_1", + "tablex_0_0_8", +] +description = "A compact cheat-sheet" +license = [ + "MIT-0", +] +homepage = "https://github.com/ngoetti/knowledge-key" + +[koma-labeling."0.2.0"] +url = "https://packages.typst.org/preview/koma-labeling-0.2.0.tar.gz" +hash = "sha256-vDy5t6MtKav29CgKA5gMyPzD0YRz/s/TIVt9oD6glGY=" +typstDeps = [] +description = "This package introduces a labeling feature to Typst, inspired by the KOMA-Script's labeling environment" +license = [ + "MIT", +] + +[koma-labeling."0.1.0"] +url = "https://packages.typst.org/preview/koma-labeling-0.1.0.tar.gz" +hash = "sha256-jAyBafmtttzpmDfz66HUdCLJ4hyOxqHtYvX7c5KTMrs=" +typstDeps = [] +description = "This package introduces a labeling feature to Typst, inspired by the KOMA-Script's labeling environment" +license = [ + "MIT", +] + +[komet."0.1.0"] +url = "https://packages.typst.org/preview/komet-0.1.0.tar.gz" +hash = "sha256-Hy06Ct0OsvmBZJSK77d7EhGM3u4M/z/spqIt3sSU9CE=" +typstDeps = [] +description = "Selected high-performance computations for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/komet" + +[koty."0.1.0"] +url = "https://packages.typst.org/preview/koty-0.1.0.tar.gz" +hash = "sha256-J72L3OefBIEeLY7xiKGKGyweXSPEUohnbNjNEz6NvGY=" +typstDeps = [] +description = "Choose correct josa(particle) for a Korean word & format numbers in Korean" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/shlewislee/koty" + +[kouhu."0.2.0"] +url = "https://packages.typst.org/preview/kouhu-0.2.0.tar.gz" +hash = "sha256-Q5qLfexfuH7oRNDiyff1/moFN7QplvzkPYdxpjgkR1A=" +typstDeps = [ + "cmarker_0_1_1", + "mantys_0_1_4", + "tidy_0_2_0", +] +description = "Chinese lipsum text generator; 中文乱数假文(Lorem Ipsum)生成器" +license = [ + "MIT", +] +homepage = "https://github.com/Harry-Chen/kouhu" + +[kouhu."0.1.1"] +url = "https://packages.typst.org/preview/kouhu-0.1.1.tar.gz" +hash = "sha256-kMnFLH3KPwmBE4jg/nFpkhshkSAuUBBcuIIF4Jn5580=" +typstDeps = [ + "mantys_0_1_4", + "tidy_0_2_0", +] +description = "Chinese lipsum text generator; 中文乱数假文(Lorem Ipsum)生成器" +license = [ + "MIT", +] +homepage = "https://github.com/Harry-Chen/kouhu" + +[kouhu."0.1.0"] +url = "https://packages.typst.org/preview/kouhu-0.1.0.tar.gz" +hash = "sha256-NQ5xPAnxc8zgM6cY9B364EU4mNDC6QQ8Z3yJDoSUpX8=" +typstDeps = [ + "mantys_0_1_4", + "tidy_0_2_0", +] +description = "Chinese lipsum text generator; 中文乱数假文(Lorem Ipsum)生成器" +license = [ + "MIT", +] +homepage = "https://github.com/Harry-Chen/kouhu" + +[kthesis."0.1.2"] +url = "https://packages.typst.org/preview/kthesis-0.1.2.tar.gz" +hash = "sha256-p8FiG2pRXHh1YCZJXOda4u5/1WXj+q0XWq4FkOfhCVA=" +typstDeps = [ + "glossarium_0_5_8", + "headcount_0_1_0", + "hydra_0_6_1", + "linguify_0_4_2", +] +description = "Unofficial thesis template for KTH Royal Institute of Technology" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/RafDevX/kthesis-typst" + +[kthesis."0.1.1"] +url = "https://packages.typst.org/preview/kthesis-0.1.1.tar.gz" +hash = "sha256-SEGkBuf1UtnO0/DA74gsbSH/BUkWjORsAj7UYb8EwEA=" +typstDeps = [ + "glossarium_0_5_4", + "headcount_0_1_0", + "hydra_0_6_0", + "linguify_0_4_2", +] +description = "Unofficial thesis template for KTH Royal Institute of Technology" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/RafDevX/kthesis-typst" + +[kthesis."0.1.0"] +url = "https://packages.typst.org/preview/kthesis-0.1.0.tar.gz" +hash = "sha256-ZHaFDc5SIUbEuugwbiMi1ZnQfOK/oAjhihwIKlKqwDc=" +typstDeps = [ + "glossarium_0_5_1", + "headcount_0_1_0", + "hydra_0_5_2", + "linguify_0_4_1", +] +description = "Unofficial thesis template for KTH Royal Institute of Technology" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/RafDevX/kthesis-typst" + +[kunskap."0.1.0"] +url = "https://packages.typst.org/preview/kunskap-0.1.0.tar.gz" +hash = "sha256-drCRPbJP5vdJ1/oAcEVVlt8/UO+eHVH+GYRAsvJQYlg=" +typstDeps = [] +description = "A template with generous spacing for reports, assignments, course documents, and similar (shorter) documents" +license = [ + "MIT-0", +] +homepage = "https://github.com/mbollmann/typst-kunskap" + +[labtyp."0.1.0"] +url = "https://packages.typst.org/preview/labtyp-0.1.0.tar.gz" +hash = "sha256-moVnxeUgf+MwN0KJMxfARFVFg/LsZMciPL9unp992+s=" +typstDeps = [] +description = "Label text and extract to json using typst query" +license = [ + "MIT", +] +homepage = "https://github.com/evidlabel/labtyp" + +[lacy-ubc-math-project."0.2.0"] +url = "https://packages.typst.org/preview/lacy-ubc-math-project-0.2.0.tar.gz" +hash = "sha256-QPhVZOJm2s4ds8SLTrVQbbiGZkYaMc/mhwZlcenoaoU=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "equate_0_3_2", + "lilaq_0_3_0", + "physica_0_9_5", + "showman_0_1_2", + "unify_0_7_1", +] +description = "A UBC MATH 100/101 group project template" +license = [ + "MIT", +] +homepage = "https://github.com/lace-wing/lacy-ubc-math-project" + +[lacy-ubc-math-project."0.1.1"] +url = "https://packages.typst.org/preview/lacy-ubc-math-project-0.1.1.tar.gz" +hash = "sha256-F8BESXsANR3yQ3Rjm1yb4fgVSxuNt6WhHkB6StNydPU=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", + "equate_0_2_1", + "metro_0_3_0", + "mitex_0_2_4", + "physica_0_9_3", + "physica_0_9_4", + "showman_0_1_2", +] +description = "A UBC MATH 100/101 group project template" +license = [ + "MIT", +] +homepage = "https://github.com/lace-wing/lacy-ubc-math-project" + +[lacy-ubc-math-project."0.1.0"] +url = "https://packages.typst.org/preview/lacy-ubc-math-project-0.1.0.tar.gz" +hash = "sha256-eapcN5p7yKXxYU9RNMM2DYFxVdb7ZdaLUY0r8UgBMxk=" +typstDeps = [ + "cetz_0_3_1", + "cetz-plot_0_1_0", + "equate_0_2_1", + "metro_0_3_0", + "mitex_0_2_4", + "physica_0_9_3", + "physica_0_9_4", + "showman_0_1_2", +] +description = "A UBC MATH 100 group project template" +license = [ + "MIT", +] +homepage = "https://github.com/lace-wing/lacy-ubc-math-project" + +[lambdabus."0.1.0"] +url = "https://packages.typst.org/preview/lambdabus-0.1.0.tar.gz" +hash = "sha256-+6YRgcUR930JrAkv27NSM5fEKw4jC84wBCQXNBgSGuY=" +typstDeps = [] +description = "Easily parse, normalize and display simple λ-Calculus expressions" +license = [ + "MIT", +] +homepage = "https://github.com/luca-schlecker/typst-lambdabus" + +[larrow."1.0.0"] +url = "https://packages.typst.org/preview/larrow-1.0.0.tar.gz" +hash = "sha256-mzfcZVzldR9+gvq+An1j/Fc1Oh26NqGcU96TbIXxtXs=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Draw and style arrows between labels" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/Mambouna/larrow" + +[lasagna."0.1.0"] +url = "https://packages.typst.org/preview/lasagna-0.1.0.tar.gz" +hash = "sha256-5wp2UXpeMAJepsYriZ8i2gSaIBtiSGpfkGVlTVzTkBc=" +typstDeps = [] +description = "Add layers, toggle them using tags easily" +license = [ + "MIT", +] +homepage = "https://github.com/IsaacTay/lasagna.git" + +[lasaveur."0.1.4"] +url = "https://packages.typst.org/preview/lasaveur-0.1.4.tar.gz" +hash = "sha256-rtbnsArQc2OnD9R62s+dCO1QKQqbW3DepOkyZ+vvjLc=" +typstDeps = [] +description = "Porting vim-latex's math shorthands to Typst. An accommendating vim syntax file is provided in the repo" +license = [ + "MIT", +] +homepage = "https://github.com/yangwenbo99/typst-lasaveur" + +[lasaveur."0.1.3"] +url = "https://packages.typst.org/preview/lasaveur-0.1.3.tar.gz" +hash = "sha256-ckpw5mZ21zDRV67vZR8yccZXwLzxNbntzZZaPpQhLIs=" +typstDeps = [] +description = "Porting vim-latex's math shorthands to Typst. An accommendating vim syntax file is provided in the repo" +license = [ + "MIT", +] +homepage = "https://github.com/yangwenbo99/typst-lasaveur" + +[laskutys."1.1.0"] +url = "https://packages.typst.org/preview/laskutys-1.1.0.tar.gz" +hash = "sha256-Zm+E+QMAGJMMXZfJQT5WzcoK5ZH5dlhJZHbm8NxHkrs=" +typstDeps = [ + "linguify_0_4_2", + "oxifmt_1_0_0", + "tiaoma_0_3_0", +] +description = "Make invoices satisfying Finnish standards (VH/3634/00.01.00/2023) and with bank barcode and/or EPC QR code" +license = [ + "MIT-0", +] +homepage = "https://github.com/TheJiahao/laskutys" + +[laskutys."1.0.0"] +url = "https://packages.typst.org/preview/laskutys-1.0.0.tar.gz" +hash = "sha256-L2Gvc+S7m2LQdEb6VztrXPj/DulV0aRARUdKtYhYaTw=" +typstDeps = [ + "linguify_0_4_2", + "oxifmt_1_0_0", + "tiaoma_0_3_0", +] +description = "Make invoices satisfying Finnish standards (VH/3634/00.01.00/2023) and with bank barcode and/or EPC QR code" +license = [ + "MIT-0", +] +homepage = "https://github.com/TheJiahao/laskutys" + +[latedef."0.1.0"] +url = "https://packages.typst.org/preview/latedef-0.1.0.tar.gz" +hash = "sha256-L1+lMDnYxw6IE6Gu3IOe7AmjUG0eAW/2fQ3MOJIFfo0=" +typstDeps = [] +description = "Use now, define later" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/T0mstone/typst-latedef" + +[latex-lookalike."0.1.4"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.4.tar.gz" +hash = "sha256-jqdXb7WgAosPzNvbgJGm6cJPN66ogMbV5aRiIhRES28=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.3"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.3.tar.gz" +hash = "sha256-HAiQuES9J57OxYuOtx7Bjj7vJWtCmzBMJQhsu0rh3Zo=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.2"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.2.tar.gz" +hash = "sha256-XXzY7J1HhFffj+kXFerV5ft57vXmtGpxEF9TFDE3EtY=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.1"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.1.tar.gz" +hash = "sha256-+DmDx5A9Jm5GmMM96e3Zt84ey4YYLx9Tez78M2YBELM=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.0"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.0.tar.gz" +hash = "sha256-CbauKjElRLgWBt+pYRSbuKqEB6uDZqaP9qltrZaO+Dk=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latexlike-report."1.0.0"] +url = "https://packages.typst.org/preview/latexlike-report-1.0.0.tar.gz" +hash = "sha256-RGtMby3IkWGRbOI70BtfGyg93ntsOnC772t4NVyhDBM=" +typstDeps = [ + "chic-hdr_0_5_0", + "equate_0_3_2", +] +description = "A simple report for Typst with LaTeX style, fully customizable" +license = [ + "MIT", +] +homepage = "https://github.com/jorgexbeta/latexlike-report.git" + +[lavandula."0.1.1"] +url = "https://packages.typst.org/preview/lavandula-0.1.1.tar.gz" +hash = "sha256-AgN8aUYZNgReiUX1XJMrzzWGsSoE7wMMnJdDlZVBUS4=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "A modern, clean and customizable resume template" +license = [ + "MIT", +] +homepage = "https://github.com/face0xff/lavandula" + +[lavandula."0.1.0"] +url = "https://packages.typst.org/preview/lavandula-0.1.0.tar.gz" +hash = "sha256-Gc2DfwKzMA9unlIeMFGdEgHUKbREqVPl+iBghLCYeWs=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "A modern, clean and customizable resume template" +license = [ + "MIT", +] +homepage = "https://github.com/face0xff/lavandula" + +[layout-ltd."0.1.0"] +url = "https://packages.typst.org/preview/layout-ltd-0.1.0.tar.gz" +hash = "sha256-opKfAj/Ax3WWsjqUE4li6EVESgY0I3bSGjnpk4MvRqU=" +typstDeps = [] +description = "Limit layout iterations for debugging" +license = [ + "MIT", +] +homepage = "https://github.com/davystrong/layout-ltd" + +[leipzig-glossing."0.5.0"] +url = "https://packages.typst.org/preview/leipzig-glossing-0.5.0.tar.gz" +hash = "sha256-75TQDdX3XFIkPIGPfCorpM/JuHb7JNSURgJh/KxtvGE=" +typstDeps = [] +description = "Linguistic interlinear glosses according to the Leipzig Glossing rules" +license = [ + "MIT", +] +homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing" + +[leipzig-glossing."0.4.0"] +url = "https://packages.typst.org/preview/leipzig-glossing-0.4.0.tar.gz" +hash = "sha256-gr6aJELM5fX4+/tbwEZCyIIwh6k1h+feOQkjjPXT2P4=" +typstDeps = [] +description = "Linguistic interlinear glosses according to the Leipzig Glossing rules" +license = [ + "MIT", +] +homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing" + +[leipzig-glossing."0.3.0"] +url = "https://packages.typst.org/preview/leipzig-glossing-0.3.0.tar.gz" +hash = "sha256-oVLJXOb1cDLVsmfO2TP1RSUXfudjNxDVOdWHTZUmkCU=" +typstDeps = [] +description = "Linguistic interlinear glosses according to the Leipzig Glossing rules" +license = [ + "MIT", +] +homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing" + +[leipzig-glossing."0.2.0"] +url = "https://packages.typst.org/preview/leipzig-glossing-0.2.0.tar.gz" +hash = "sha256-QaE7iQkqLKia3/11jLz0W/e3qwcSqEOyxIIaoCm6sP0=" +typstDeps = [] +description = "Linguistic interlinear glosses according to the Leipzig Glossing rules" +license = [ + "MIT", +] +homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing" + +[leipzig-glossing."0.1.0"] +url = "https://packages.typst.org/preview/leipzig-glossing-0.1.0.tar.gz" +hash = "sha256-7OuUs3oTmFKhhPJ9Byiil9K3MYfk4PtqEevEq2Z+LpY=" +typstDeps = [] +description = "Linguistic interlinear glosses according to the Leipzig Glossing rules" +license = [ + "MIT", +] +homepage = "https://code.everydayimshuflin.com/greg/typst-lepizig-glossing" + +[lemmify."0.1.8"] +url = "https://packages.typst.org/preview/lemmify-0.1.8.tar.gz" +hash = "sha256-OUgZ657tLaEY0bGlN4RomRI7uh0WGXKDcAvgnxaDpNo=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.7"] +url = "https://packages.typst.org/preview/lemmify-0.1.7.tar.gz" +hash = "sha256-wOOv1/zMELqct7xR9E8NhEkZrAUZjxrNpAmHC7GWpYk=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.6"] +url = "https://packages.typst.org/preview/lemmify-0.1.6.tar.gz" +hash = "sha256-JTBSnexoFlfQtCT7l/WTpoUpea6qwSfjMwHCv48qf7k=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.5"] +url = "https://packages.typst.org/preview/lemmify-0.1.5.tar.gz" +hash = "sha256-kXsxiXK4MtYns1oUeN1izlMIVi5e9x1YSTdOHZohLWI=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.4"] +url = "https://packages.typst.org/preview/lemmify-0.1.4.tar.gz" +hash = "sha256-Yu0ZBUNt62NgWnusc1LMnvPG5im6xTGOGPrYokki73A=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.3"] +url = "https://packages.typst.org/preview/lemmify-0.1.3.tar.gz" +hash = "sha256-WSqyHg2GmReHNpEKgT0pcNPlrPZLp/zSmAMm5CkdIg4=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.2"] +url = "https://packages.typst.org/preview/lemmify-0.1.2.tar.gz" +hash = "sha256-l4ZV/LDvF50le6jfxePLNCzrwalMEhgtV1u5cKy0Klo=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.1"] +url = "https://packages.typst.org/preview/lemmify-0.1.1.tar.gz" +hash = "sha256-AjWCj40qq0jEMe39R6bZFlWB2A37Tm1dc+O2pRq392U=" +typstDeps = [] +description = "Theorem typesetting library" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[lemmify."0.1.0"] +url = "https://packages.typst.org/preview/lemmify-0.1.0.tar.gz" +hash = "sha256-rC6ggMrQsfLEze25gAzZn3/wWa1o3HeVcAypw4+Yql8=" +typstDeps = [] +description = "A library for typesetting mathematical theorems" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Marmare314/lemmify" + +[leonux."1.1.0"] +url = "https://packages.typst.org/preview/leonux-1.1.0.tar.gz" +hash = "sha256-+kzhNhI9CeQ297PYDQ3L+BQLxZnwc/oJafNyapBY/yU=" +typstDeps = [] +description = "Minimalistic Typst slides (similar to LaTeX beamer" +license = [ + "MIT", +] +homepage = "https://github.com/LordBlacky/leonux" + +[leonux."1.0.0"] +url = "https://packages.typst.org/preview/leonux-1.0.0.tar.gz" +hash = "sha256-r9W+jllahfpEiHMTMHQ5zMMU7LPtfdnwVnYvMWqtpaY=" +typstDeps = [] +description = "Minimalistic Typst slides (similar to LaTeX beamer" +license = [ + "MIT", +] +homepage = "https://github.com/LordBlacky/leonux" + +[lets-go."0.1.0"] +url = "https://packages.typst.org/preview/lets-go-0.1.0.tar.gz" +hash = "sha256-j2s/szII6HdC5v2fU/GLIetLkm2+ftuT6EIP3Vy0u+Y=" +typstDeps = [] +description = "Draw go game boards easily, with some customization features" +license = [ + "MIT", +] +homepage = "https://github.com/nmielec/lets-go" + +[letter-pro."3.0.0"] +url = "https://packages.typst.org/preview/letter-pro-3.0.0.tar.gz" +hash = "sha256-Ow22loLjb/wiiB3iSmdZirbtfDR2XIveWgFcnWctBtI=" +typstDeps = [] +description = "DIN 5008 letter template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Sematre/typst-letter-pro" + +[letter-pro."2.1.0"] +url = "https://packages.typst.org/preview/letter-pro-2.1.0.tar.gz" +hash = "sha256-kCPmuAZ7dwY1dsbpegyNS0cOjuIpV2DfFHSKBxi0SAE=" +typstDeps = [] +description = "DIN 5008 letter template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Sematre/typst-letter-pro" + +[letterloom."1.0.0"] +url = "https://packages.typst.org/preview/letterloom-1.0.0.tar.gz" +hash = "sha256-f15LQT7JF0NxpkNHACNrbLO1fJtyIHVYxxFETEkvEVk=" +typstDeps = [] +description = "The letterloom package is a user-friendly and customizable template designed to streamline the creation of professional-looking letters" +license = [ + "Unlicense", +] +homepage = "https://github.com/nandac/letterloom" + +[letterloom."0.1.0"] +url = "https://packages.typst.org/preview/letterloom-0.1.0.tar.gz" +hash = "sha256-qum5YHiLRKG+lVUIiqAY82Eo7+07g9dErf6qEQRoob8=" +typstDeps = [] +description = "The letterloom package is a user-friendly, highly customizable template for creating professional letters with ease" +license = [ + "Unlicense", +] +homepage = "https://github.com/nandac/letterloom" + +[libra."0.1.0"] +url = "https://packages.typst.org/preview/libra-0.1.0.tar.gz" +hash = "sha256-gr7l1lW843DQsgbnD7NeqZ28PxlgHVl3Bv9aZGrAMkQ=" +typstDeps = [] +description = "Balance your lines" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/mentonin/libra" + +[light-cv."0.2.1"] +url = "https://packages.typst.org/preview/light-cv-0.2.1.tar.gz" +hash = "sha256-WmcGyk2WzzCBK60V7BR04pO2i1ADQC/fw0aUFefBBw0=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "Minimalistic CV template for your own CV. Please install the font awesome fonts on your system before using the template" +license = [ + "MIT", +] +homepage = "https://github.com/AnsgarLichter/cv-typst-template" + +[light-cv."0.2.0"] +url = "https://packages.typst.org/preview/light-cv-0.2.0.tar.gz" +hash = "sha256-GYYEH6YzC+yWoItv6om5HruDMqe1DbhiCYQ65bV6VDc=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "Minimalistic CV template for your own CV. Please install the font awesome fonts on your system before using the template" +license = [ + "MIT", +] +homepage = "https://github.com/AnsgarLichter/cv-typst-template" + +[light-cv."0.1.1"] +url = "https://packages.typst.org/preview/light-cv-0.1.1.tar.gz" +hash = "sha256-Qou5K4e9AY9a8zPtTXZWvOmzdc8kpSnKhnvjSIBbSZg=" +typstDeps = [ + "fontawesome_0_1_0", + "light-cv_0_1_0", +] +description = "Minimalistic CV template for your own CV. Please install the font awesome fonts on your system before using the template" +license = [ + "MIT", +] +homepage = "https://github.com/AnsgarLichter/cv-typst-template" + +[light-cv."0.1.0"] +url = "https://packages.typst.org/preview/light-cv-0.1.0.tar.gz" +hash = "sha256-VErt6vjrvKCZ9ULxVwB8LQVfmO/gYB798nkklGXTcvA=" +typstDeps = [ + "fontawesome_0_1_0", +] +description = "Minimalistic CV template for your own CV. Please install the font awesome fonts on your system before using the template" +license = [ + "MIT", +] +homepage = "https://github.com/AnsgarLichter/cv-typst-template" + +[light-report-uia."0.1.0"] +url = "https://packages.typst.org/preview/light-report-uia-0.1.0.tar.gz" +hash = "sha256-7cu9FpnqoZZjtAkQlt0IGSdndnifRGTaPCSzf/60v7k=" +typstDeps = [ + "codly_1_0_0", +] +description = "Template for reports at the University of Agder" +license = [ + "MIT", +] +homepage = "https://github.com/sebastos1/light-report-uia" + +[lilaq."0.5.0"] +url = "https://packages.typst.org/preview/lilaq-0.5.0.tar.gz" +hash = "sha256-C57XfnLsvVMqzkbyXN73Wa1vnuW1n3jbmt8PSstv1WA=" +typstDeps = [ + "elembic_1_1_1", + "tiptoe_0_3_1", + "zero_0_5_0", +] +description = "Scientific data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + +[lilaq."0.4.0"] +url = "https://packages.typst.org/preview/lilaq-0.4.0.tar.gz" +hash = "sha256-TIw0Ur2sFQgjGNby6ISK3ltlpPIQ3N+UbqciSMlS0o0=" +typstDeps = [ + "elembic_1_1_0", + "tiptoe_0_3_1", + "zero_0_4_0", +] +description = "Scientific data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + +[lilaq."0.3.0"] +url = "https://packages.typst.org/preview/lilaq-0.3.0.tar.gz" +hash = "sha256-YdAsrkapRmN/U+CE5nEoxPlwjivgTCdWH8Lm9FW75xw=" +typstDeps = [ + "tiptoe_0_3_0", + "zero_0_3_3", +] +description = "Scientific data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + +[lilaq."0.2.0"] +url = "https://packages.typst.org/preview/lilaq-0.2.0.tar.gz" +hash = "sha256-0wYB8LeODvJ6/ueItWAPP2D8i8ifFfpk7oR6Vp7rrWw=" +typstDeps = [ + "tiptoe_0_3_0", + "zero_0_3_3", +] +description = "Scientific data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + +[lilaq."0.1.0"] +url = "https://packages.typst.org/preview/lilaq-0.1.0.tar.gz" +hash = "sha256-y7GeVOIdEaOLEvSCJF1K028iRcR6kTmTlaWnsGx9Vw0=" +typstDeps = [ + "tiptoe_0_3_0", + "zero_0_3_3", +] +description = "Data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + +[lineal."0.1.0"] +url = "https://packages.typst.org/preview/lineal-0.1.0.tar.gz" +hash = "sha256-ZO+OooKSfnEmUKFyPykhd6Trpkn1m9CcwzSqcs0586Q=" +typstDeps = [ + "touying_0_5_3", +] +description = "Build elegent slide decks with Typst" +license = [ + "MIT", +] +homepage = "https://github.com/ellsphillips/lineal" + +[lingotree."1.0.0"] +url = "https://packages.typst.org/preview/lingotree-1.0.0.tar.gz" +hash = "sha256-4y7QptYL3dM4Za4/Iv35X1Ofavyf0QC211a8gRaMHUU=" +typstDeps = [ + "cetz_0_4_2", + "mannot_0_3_0", +] +description = "Draws linguistic syntactic trees" +license = [ + "MIT", +] +homepage = "https://github.com/KenyC/typst-lingotree" + +[linguify."0.4.2"] +url = "https://packages.typst.org/preview/linguify-0.4.2.tar.gz" +hash = "sha256-ZwDpQZT19wqo2nrhIHaMHZPTyHam3/BhMlsYuPLR8a0=" +typstDeps = [] +description = "Load strings for different languages easily" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/linguify" + +[linguify."0.4.1"] +url = "https://packages.typst.org/preview/linguify-0.4.1.tar.gz" +hash = "sha256-OymscdQwJpTjaqyKEqJ5GyFrmSMmTwvPhnpfPE8XRWU=" +typstDeps = [] +description = "Load strings for different languages easily" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-linguify" + +[linguify."0.4.0"] +url = "https://packages.typst.org/preview/linguify-0.4.0.tar.gz" +hash = "sha256-3zEqzFbcXYYhUDLxvcqtpQsO7SbCCyu5CbhqP2Ew1W0=" +typstDeps = [] +description = "Load strings for different languages easily" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-linguify" + +[linguify."0.3.1"] +url = "https://packages.typst.org/preview/linguify-0.3.1.tar.gz" +hash = "sha256-7nmJn4vnG5BreqIrnWHKF9peAaSCHhuejVdXrgrdmKg=" +typstDeps = [] +description = "Load strings for different languages easily" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-linguify" + +[linguify."0.3.0"] +url = "https://packages.typst.org/preview/linguify-0.3.0.tar.gz" +hash = "sha256-zz0kirV1jWXcoX1Yv4Vk+16jDo5Cqqx7xvoyUlcbwBw=" +typstDeps = [] +description = "Load strings for different languages easily" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-linguify" + +[linguify."0.2.0"] +url = "https://packages.typst.org/preview/linguify-0.2.0.tar.gz" +hash = "sha256-3wf1ohs/an6QcwIDSi4qM0slu3O2cV6PuE/uxzTbI7s=" +typstDeps = [] +description = "Load strings for different languages easily" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-linguify" + +[linguify."0.1.0"] +url = "https://packages.typst.org/preview/linguify-0.1.0.tar.gz" +hash = "sha256-gBO7A5cArtcj7CFHJswykXBYEN5ZnSNc5gW9MsBwpE8=" +typstDeps = [] +description = "Load strings for different languages easily" +license = [ + "MIT", +] +homepage = "https://github.com/jomaway/typst-linguify" + +[linked-cv."0.0.1"] +url = "https://packages.typst.org/preview/linked-cv-0.0.1.tar.gz" +hash = "sha256-vNsifVzF7EocdAWM4eFrjGVVd62IMM8mwWuVCpYoSd0=" +typstDeps = [] +description = "A beautiful CV template that emulates the LinkedIn UI" +license = [ + "MIT", +] +homepage = "https://github.com/ellsphillips/linked-cv" + +[linkify."0.1.1"] +url = "https://packages.typst.org/preview/linkify-0.1.1.tar.gz" +hash = "sha256-UZ9ewiKMMs0hT3vR4NQ4SMJPlQzRwZ42iyHZDDradtU=" +typstDeps = [ + "based_0_2_0", + "percencode_0_1_0", +] +description = "Generate URLs and nicely formatted links to web media contents" +license = [ + "MIT", +] +homepage = "https://github.com/vanleefxp/linkify_typ" + +[linkify."0.1.0"] +url = "https://packages.typst.org/preview/linkify-0.1.0.tar.gz" +hash = "sha256-aCWY9t4msIBvFrYqK6kG/dR9IngrE2mtKTtEiBHj5zo=" +typstDeps = [ + "based_0_2_0", + "percencode_0_1_0", +] +description = "Generate URLs and nicely formatted links to web media contents" +license = [ + "MIT", +] + +[linkst."0.2.1"] +url = "https://packages.typst.org/preview/linkst-0.2.1.tar.gz" +hash = "sha256-52Sc5VFGry2OSR2Wuxk+wuPWDaGLlzJuS8hXsP8DXzc=" +typstDeps = [ + "cetz_0_4_0", +] +description = "A knot drawing package for knot theory" +license = [ + "MIT-0", +] + +[linkst."0.1.0"] +url = "https://packages.typst.org/preview/linkst-0.1.0.tar.gz" +hash = "sha256-LVklnr/CcjK5TrZUlyWN8ovLsu33Oqn9RFhsn8X+DsE=" +typstDeps = [ + "cetz_0_3_3", +] +description = "A knot drawing package for knot theory" +license = [ + "MIT-0", +] + +[linphon."0.1.0"] +url = "https://packages.typst.org/preview/linphon-0.1.0.tar.gz" +hash = "sha256-q6cIbvbh9jEEfKOfcd6bCZ7JEr01MKMH2AbT8G98X4k=" +typstDeps = [] +description = "Set phonological feature matrices, linear rewrite rules, and more" +license = [ + "MIT", +] +homepage = "https://github.com/thatfloflo/typst-linphon" + +[litfass."0.1.1"] +url = "https://packages.typst.org/preview/litfass-0.1.1.tar.gz" +hash = "sha256-o91DUjBvdQXbwhtbEAlGXcPMifaUTPcT/DVsuu2rHNo=" +typstDeps = [] +description = "A typst package to design content like posters based on a tiling layout" +license = [ + "MIT", +] + +[litfass."0.1.0"] +url = "https://packages.typst.org/preview/litfass-0.1.0.tar.gz" +hash = "sha256-Tzul9IqpXlDeMJ/z5WY+KOnu3hx1Nej+m2vRXZK952Y=" +typstDeps = [] +description = "A typst package to design content like posters based on a tiling layout" +license = [ + "MIT", +] + +[lovelace."0.3.0"] +url = "https://packages.typst.org/preview/lovelace-0.3.0.tar.gz" +hash = "sha256-thSCDGxcTfykwUYjUsxBC7Xnei6dXiGybA8wyUoqKjo=" +typstDeps = [] +description = "Algorithms in pseudocode, unopinionated and flexible" +license = [ + "MIT", +] +homepage = "https://github.com/andreasKroepelin/lovelace" + +[lovelace."0.2.0"] +url = "https://packages.typst.org/preview/lovelace-0.2.0.tar.gz" +hash = "sha256-FzsdguyMAGm+wTragSODfEd+S/+7WLaXJbpZW2rlkuw=" +typstDeps = [] +description = "Algorithms in pseudocode, unopinionated and flexible" +license = [ + "MIT", +] +homepage = "https://github.com/andreasKroepelin/lovelace" + +[lovelace."0.1.0"] +url = "https://packages.typst.org/preview/lovelace-0.1.0.tar.gz" +hash = "sha256-gN5Emx9/sl/ols4tQoiBLEjpVvI6oOaJmx5ehYZqhIM=" +typstDeps = [] +description = "Algorithms in pseudocode, unopinionated and flexible" +license = [ + "MIT", +] +homepage = "https://github.com/andreasKroepelin/lovelace" + +[lucide."0.1.0"] +url = "https://packages.typst.org/preview/lucide-0.1.0.tar.gz" +hash = "sha256-Fs1wvkkDr6iYZrwOFcJI+J/vEv05SqM8e5YgdGqPez8=" +typstDeps = [] +description = "A Typst library for Lucide icons" +license = [ + "MIT", +] +homepage = "https://github.com/Lieunoir/typst-lucide" + +[lucky-icml."0.7.0"] +url = "https://packages.typst.org/preview/lucky-icml-0.7.0.tar.gz" +hash = "sha256-r9+WcDaDrRc1RozrwLFWbh8m7W0lXSn7Bsh2K0RM2FI=" +typstDeps = [ + "algorithmic_0_1_0", + "lemmify_0_1_7", +] +description = "ICML-style paper template to publish at conferences for International Conference on Machine Learning" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[lucky-icml."0.2.1"] +url = "https://packages.typst.org/preview/lucky-icml-0.2.1.tar.gz" +hash = "sha256-Dts44RoNPmKnA+/ZkEgy2Snjtrq4Gy9hPLRkiFJCIN4=" +typstDeps = [ + "algorithmic_0_1_0", + "tablex_0_0_7", +] +description = "ICML-style paper template to publish at conferences for International Conference on Machine Learning" +license = [ + "MIT", +] +homepage = "https://github.com/daskol/typst-templates" + +[lumen."0.1.2"] +url = "https://packages.typst.org/preview/lumen-0.1.2.tar.gz" +hash = "sha256-25ZXn7Fg1T7vav7oekne13JVyIJNwtBdram9OqRh3Sk=" +typstDeps = [] +description = "unofficial template of the Université libre de Bruxelles thesis front cover" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/mononym/typst-ulb-phd-cover" + +[lumen."0.1.1"] +url = "https://packages.typst.org/preview/lumen-0.1.1.tar.gz" +hash = "sha256-mJv6jC/A4Ncnm+0BKwQuZ53e+EhuOrbRLg/lH73rWRw=" +typstDeps = [] +description = "unofficial template of the Université libre de Bruxelles thesis front cover" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/mononym/typst-ulb-phd-cover" + +[lumen."0.1.0"] +url = "https://packages.typst.org/preview/lumen-0.1.0.tar.gz" +hash = "sha256-cat+9OULmeOXdhH+2To2mZryAHA1whMZiczzs/veRB0=" +typstDeps = [] +description = "unofficial template of the Université libre de Bruxelles thesis front cover" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/mononym/typst-ulb-phd-cover" + +[lure."0.1.0"] +url = "https://packages.typst.org/preview/lure-0.1.0.tar.gz" +hash = "sha256-AhJHPrxXiptVvI2mvIbwyzQg1X10cmmCmGxsrriIrPI=" +typstDeps = [] +description = "Parse and normalize URLs, based on the WHATWG URL Standard, powered by rust-url and WebAssembly" +license = [ + "MIT", +] +homepage = "https://github.com/YDX-2147483647/typst-lure" + +[lyceum."0.1.0"] +url = "https://packages.typst.org/preview/lyceum-0.1.0.tar.gz" +hash = "sha256-R9YJpG9Qh3Wfrad9kSZKLOJXMScffGX7adVigIb0mKs=" +typstDeps = [] +description = "Academic book template in Typst" +license = [ + "MIT", +] + +[m-jaxon."0.1.2"] +url = "https://packages.typst.org/preview/m-jaxon-0.1.2.tar.gz" +hash = "sha256-xeQSdBubE8ZYeQTslv3sj7/1o0LTkgyddBeZPtc1WCM=" +typstDeps = [ + "jogs_0_2_4", +] +description = "Render LaTeX equation in typst using MathJax" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/m-jaxon" + +[m-jaxon."0.1.1"] +url = "https://packages.typst.org/preview/m-jaxon-0.1.1.tar.gz" +hash = "sha256-ye2dPp64nLk+FOupkPEOwdN8u2x7C5lDsfx5NfmNtTc=" +typstDeps = [ + "jogs_0_2_2", +] +description = "Render LaTeX equation in typst using MathJax" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/m-jaxon" + +[m-jaxon."0.1.0"] +url = "https://packages.typst.org/preview/m-jaxon-0.1.0.tar.gz" +hash = "sha256-quqhnnEqvtMKhLCdyneh/iR1CLTlQdX35cB4JqcL42E=" +typstDeps = [ + "jogs_0_2_1", +] +description = "Render LaTeX equation in typst using MathJax" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/m-jaxon" + +[machiatto."0.2.0"] +url = "https://packages.typst.org/preview/machiatto-0.2.0.tar.gz" +hash = "sha256-8Gu312IG5B9MhQoTZMhQGMS0aDtoz7W3ubkxslEKonQ=" +typstDeps = [ + "suboutline_0_3_0", +] +description = "A package to help develop publications under MoKa Reads Specification" +license = [ + "MIT", +] +homepage = "https://github.com/Moka-Reads/machiatto" + +[machiatto."0.1.0"] +url = "https://packages.typst.org/preview/machiatto-0.1.0.tar.gz" +hash = "sha256-s0fYYTMIuHrHnTqBwa132FiMi5ge0ZGezEOa6t67LCI=" +typstDeps = [ + "minitoc_0_1_0", +] +description = "A package to help develop publications under MoKa Reads Specification" +license = [ + "MIT", +] +homepage = "https://github.com/Moka-Reads/machiatto" + +[magnifying-glass."0.1.0"] +url = "https://packages.typst.org/preview/magnifying-glass-0.1.0.tar.gz" +hash = "sha256-K4NjY2JJKSijf8UVL7ujT0F2DghmV4Xu7jE9/Bzhb1s=" +typstDeps = [] +description = "Magnify part of image or content" +license = [ + "AGPL-3.0-only", +] +homepage = "https://codeberg.org/Andrew15-5/magnifying-glass" + +[mahou-cv."0.1.0"] +url = "https://packages.typst.org/preview/mahou-cv-0.1.0.tar.gz" +hash = "sha256-kPyD4KWb2dMlFRnHKAFVsX5znpj6pEjNqnJxSHMHJNg=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "A clean and composable CV template" +license = [ + "MIT", +] +homepage = "https://github.com/NanamiNakano/typst-mahou-cv" + +[mannot."0.3.1"] +url = "https://packages.typst.org/preview/mannot-0.3.1.tar.gz" +hash = "sha256-s1lGFHMpauJBO9OsHTHg5XtFqLZLTZOJjs6X6ANN/Nw=" +typstDeps = [ + "cetz_0_4_2", + "codly_1_3_0", + "tidy_0_4_3", + "tiptoe_0_3_2", +] +description = "A package for marking and annotating in math blocks" +license = [ + "MIT", +] +homepage = "https://github.com/ryuryu-ymj/mannot" + +[mannot."0.3.0"] +url = "https://packages.typst.org/preview/mannot-0.3.0.tar.gz" +hash = "sha256-akdMPerbH8WpVQ1OACR9HOceZunKGTkj6jfh7s6ChFA=" +typstDeps = [ + "cetz_0_3_4", + "codly_1_2_0", + "tidy_0_4_0", + "tidy_0_4_2", + "tiptoe_0_3_0", +] +description = "A package for marking and annotating in math blocks" +license = [ + "MIT", +] +homepage = "https://github.com/ryuryu-ymj/mannot" + +[mannot."0.2.3"] +url = "https://packages.typst.org/preview/mannot-0.2.3.tar.gz" +hash = "sha256-FByqhbapg8hXEr2F+LsIz9chdNXLHoiOaotB6JxT+jE=" +typstDeps = [ + "codly_1_2_0", + "tidy_0_4_0", + "tidy_0_4_2", +] +description = "A package for marking and annotating in math blocks" +license = [ + "MIT", +] +homepage = "https://github.com/ryuryu-ymj/mannot" + +[mannot."0.2.2"] +url = "https://packages.typst.org/preview/mannot-0.2.2.tar.gz" +hash = "sha256-RyfrlOhE3KfyWYAp2PaGVRKKk/k+phT356aXP5/Tpvk=" +typstDeps = [ + "codly_1_0_0", + "tidy_0_4_0", +] +description = "A package for marking and annotating in math blocks" +license = [ + "MIT", +] +homepage = "https://github.com/ryuryu-ymj/mannot" + +[mannot."0.2.1"] +url = "https://packages.typst.org/preview/mannot-0.2.1.tar.gz" +hash = "sha256-iVErp+ntOVBt5giK3gVhki+jEEjmaK26pPovf3J+zhM=" +typstDeps = [ + "codly_1_0_0", + "tidy_0_4_0", +] +description = "A package for marking and annotating in math blocks" +license = [ + "MIT", +] +homepage = "https://github.com/ryuryu-ymj/mannot" + +[mannot."0.2.0"] +url = "https://packages.typst.org/preview/mannot-0.2.0.tar.gz" +hash = "sha256-haBmKWWU2Iu6YEqNwd2c4O3rBiRLtwoeEtTHFJ1zmkQ=" +typstDeps = [ + "codly_1_0_0", + "tidy_0_4_0", +] +description = "A package for marking and annotating in math blocks" +license = [ + "MIT", +] +homepage = "https://github.com/ryuryu-ymj/mannot" + +[mannot."0.1.0"] +url = "https://packages.typst.org/preview/mannot-0.1.0.tar.gz" +hash = "sha256-Ytxmf0SPplbWpVIfCH3FTX5v5x9Fd5W4IO77Iq+FrRU=" +typstDeps = [ + "codly_1_0_0", + "tidy_0_3_0", +] +description = "A package for highlighting and annotating in math blocks" +license = [ + "MIT", +] +homepage = "https://github.com/ryuryu-ymj/mannot" + +[mantys."1.0.2"] +url = "https://packages.typst.org/preview/mantys-1.0.2.tar.gz" +hash = "sha256-qa9bE5mZsYklVctoanQ3NYJ2E0Lf8yLTl5EC0+HFFo4=" +typstDeps = [ + "codly_1_3_0", + "fauxreilly_0_1_1", + "gentle-clues_1_2_0", + "hydra_0_6_1", + "marginalia_0_1_4", + "octique_0_1_0", + "showybox_2_0_4", + "tidy_0_4_3", + "typearea_0_2_0", + "valkyrie_0_2_2", +] +description = "Helpers to build manuals for Typst packages and templates" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-mantys" + +[mantys."1.0.1"] +url = "https://packages.typst.org/preview/mantys-1.0.1.tar.gz" +hash = "sha256-4JVg0Z8j/k4GPIPyGGmTll5CPRbwRriPu8jJyJQysYU=" +typstDeps = [ + "codly_1_2_0", + "fauxreilly_0_1_1", + "gentle-clues_1_0_0", + "hydra_0_5_2", + "marginalia_0_1_2", + "octique_0_1_0", + "showybox_2_0_4", + "swank-tex_0_1_0", + "tidy_0_4_0", + "tidy_0_4_1", + "typearea_0_2_0", + "valkyrie_0_2_2", +] +description = "Helpers to build manuals for Typst packages and templates" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-mantys" + +[mantys."1.0.0"] +url = "https://packages.typst.org/preview/mantys-1.0.0.tar.gz" +hash = "sha256-8YXZbaTJpuuemUghlSuL4qQm1D9jmdon0FW/M9Re9Rk=" +typstDeps = [ + "codly_1_2_0", + "fauxreilly_0_1_1", + "gentle-clues_1_0_0", + "hydra_0_5_2", + "marginalia_0_1_1", + "octique_0_1_0", + "showybox_2_0_3", + "swank-tex_0_1_0", + "tidy_0_4_0", + "typearea_0_2_0", + "valkyrie_0_2_1", +] +description = "Helpers to build manuals for Typst packages and templates" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-mantys" + +[mantys."0.1.4"] +url = "https://packages.typst.org/preview/mantys-0.1.4.tar.gz" +hash = "sha256-2tKfCDi0NIhJxV6YVZOU9Ur9UjDs7jPZV4IdFWcBSFQ=" +typstDeps = [ + "codelst_2_0_0", + "hydra_0_4_0", + "showybox_2_0_1", + "t4t_0_3_2", + "tidy_0_2_0", +] +description = "Helpers to build manuals for Typst packages" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-mantys" + +[mantys."0.1.3"] +url = "https://packages.typst.org/preview/mantys-0.1.3.tar.gz" +hash = "sha256-xcgod2RE4f7UrK/vd+5Eb8VktQcquXhnzJ+JpVBjaXw=" +typstDeps = [ + "codelst_2_0_0", + "hydra_0_4_0", + "showybox_2_0_1", + "t4t_0_3_2", + "tidy_0_2_0", +] +description = "Helpers to build manuals for Typst packages" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-mantys" + +[mantys."0.1.1"] +url = "https://packages.typst.org/preview/mantys-0.1.1.tar.gz" +hash = "sha256-yt2eaewS/7SO4+wxkunhwiBkcnv1MBHYaDONBashZ7w=" +typstDeps = [ + "codelst_2_0_0", + "showybox_2_0_1", + "t4t_0_3_2", + "tidy_0_2_0", +] +description = "Helpers to build manuals for Typst packages" +license = [ + "MIT", +] +homepage = "https://github.com/jneug/typst-mantys" + +[manuscr-ismin."0.1.0"] +url = "https://packages.typst.org/preview/manuscr-ismin-0.1.0.tar.gz" +hash = "sha256-vHCxn7msNu6AsmaozKRrzdNCh/CnQEKiqdnpZZYKCEY=" +typstDeps = [] +description = "Template used for writing reports and/or various documents at the École des Mines de Saint-Étienne" +license = [ + "MIT", +] +homepage = "https://github.com/senaalem/ISMIN_reports_template" + +[marge."0.1.0"] +url = "https://packages.typst.org/preview/marge-0.1.0.tar.gz" +hash = "sha256-Vasq7cVjsSXn4xoqTN0gly+i5bZZV6bxOAjFVqkaQ2E=" +typstDeps = [] +description = "Easy-to-use but powerful and smart margin notes" +license = [ + "MIT", +] +homepage = "https://github.com/EpicEricEE/typst-marge" + +[marginalia."0.3.0"] +url = "https://packages.typst.org/preview/marginalia-0.3.0.tar.gz" +hash = "sha256-GkXbKa+z+8AULWM6SujWvuOBhPvvwNvWN7c5oSY2evw=" +typstDeps = [] +description = "Configurable margin-notes with smart positioning and matching wide-blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.2.4"] +url = "https://packages.typst.org/preview/marginalia-0.2.4.tar.gz" +hash = "sha256-FGuVvz8Jhe9zXZ9x6kGxTOpjTFGPZYlBLRytng2MW4Y=" +typstDeps = [] +description = "Configurable margin-notes with smart positioning and matching wide-blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.2.3"] +url = "https://packages.typst.org/preview/marginalia-0.2.3.tar.gz" +hash = "sha256-MlRBH+5enH8cb+E2+8X0X4I9wuB8mgbH0k5SONdUN08=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.2.2"] +url = "https://packages.typst.org/preview/marginalia-0.2.2.tar.gz" +hash = "sha256-WVRgVUXK3VK/vurr+8w0P0zf9kYoQ6PkLSI0QoLetWc=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.2.1"] +url = "https://packages.typst.org/preview/marginalia-0.2.1.tar.gz" +hash = "sha256-sQIJVS+YdY+QZ1FzwT3AtMGuOo5Zj0bmf0D/UGlrmeA=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.2.0"] +url = "https://packages.typst.org/preview/marginalia-0.2.0.tar.gz" +hash = "sha256-TRB22gdgwVCS/PFqsHpkBc8Yl4t3a+eEGHVv5iRxxjQ=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.1.4"] +url = "https://packages.typst.org/preview/marginalia-0.1.4.tar.gz" +hash = "sha256-Z58a+K5+mGxBaRTbI6Z+e034nfJSjW4FV2tXjHqc1gk=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.1.3"] +url = "https://packages.typst.org/preview/marginalia-0.1.3.tar.gz" +hash = "sha256-c93UkMnYriR+vakF2O2r+yy1NtH6yAQAk1x/1KQER1g=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.1.2"] +url = "https://packages.typst.org/preview/marginalia-0.1.2.tar.gz" +hash = "sha256-+8n5x7MLJlh9coSGMSszW4VfkLNtZcklqdxkX+4pfxU=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.1.1"] +url = "https://packages.typst.org/preview/marginalia-0.1.1.tar.gz" +hash = "sha256-9rQcC/u7b7VZ3kC4wjjwVeLF4/vWRmx0otWESJHwzbU=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marginalia."0.1.0"] +url = "https://packages.typst.org/preview/marginalia-0.1.0.tar.gz" +hash = "sha256-EsJHC3tDmx4mAtaV8ig+a2erb6avq0EPnEtog4p7Erk=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + +[marina-uol-thesis."1.0.0"] +url = "https://packages.typst.org/preview/marina-uol-thesis-1.0.0.tar.gz" +hash = "sha256-KgM63o/1npLcO3d62T534BXd3B7bCSyENEfCgvsaYXk=" +typstDeps = [] +description = "Unofficial thesis template for the University of Lincoln" +license = [ + "MIT", +] +homepage = "https://github.com/krisjdev/university-of-lincoln-thesis" + +[markly."0.3.0"] +url = "https://packages.typst.org/preview/markly-0.3.0.tar.gz" +hash = "sha256-tOTkwsozXxUaOPFWUhiMjltd6yNjMaJskdb869AJjdU=" +typstDeps = [ + "cetz_0_3_3", +] +description = "Typst package for bleed, cut and registration marks" +license = [ + "MIT", +] +homepage = "https://github.com/cskeeters/typst-markly" + +[markly."0.2.0"] +url = "https://packages.typst.org/preview/markly-0.2.0.tar.gz" +hash = "sha256-mZ3ROvJSXt5cvU9JcoHyuGoTqGfL5IE0ahqN+YD+iC8=" +typstDeps = [ + "cetz_0_3_1", +] +description = "Typst package for bleed, cut and registration marks" +license = [ + "MIT", +] +homepage = "https://github.com/cskeeters/typst-markly" + +[matador."0.1.0"] +url = "https://packages.typst.org/preview/matador-0.1.0.tar.gz" +hash = "sha256-Bh8ffOsuxYAV9WzqP6T4fw1WBCsA0d6i8QAFDyRrkV0=" +typstDeps = [] +description = "Parser for .mat files" +license = [ + "MIT", +] +homepage = "https://github.com/AcqRel/matador" + +[matofletcher."0.1.1"] +url = "https://packages.typst.org/preview/matofletcher-0.1.1.tar.gz" +hash = "sha256-UUeM/e0eqinqVUiE5zgq+8RdzJSFW++POAAiun6yIXE=" +typstDeps = [ + "fletcher_0_5_8", + "tidy_0_4_3", + "titleize_0_1_1", +] +description = "Easier diagrams with fletcher (fork of autofletcher" +license = [ + "MIT", +] +homepage = "https://codeberg.org/Andrew15-5/matofletcher" + +[matset."0.1.0"] +url = "https://packages.typst.org/preview/matset-0.1.0.tar.gz" +hash = "sha256-PXzwRXLAH98V2L6TR/Y+9UZRgXxs4vKgXm1ciYZ7UCM=" +typstDeps = [] +description = "An ergonomic expression evaluator in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/OptimisticPeach/matset" + +[may."0.1.1"] +url = "https://packages.typst.org/preview/may-0.1.1.tar.gz" +hash = "sha256-qXCnwn4gk5x3rsmTVdBitdU40dSi3/NC5IOc4w96SO8=" +typstDeps = [ + "physica_0_9_5", + "touying_0_6_1", + "wrap-it_0_1_1", +] +description = "A simple and elegant document template for multiple daily tasks" +license = [ + "MIT", +] +homepage = "https://github.com/Carlos-Mero/may" + +[may."0.1.0"] +url = "https://packages.typst.org/preview/may-0.1.0.tar.gz" +hash = "sha256-ABrAb/n3PYZy0gmm2z6unrVgxwDbKayywRjKmtCCQs0=" +typstDeps = [ + "physica_0_9_5", + "touying_0_6_1", + "wrap-it_0_1_1", +] +description = "A simple and elegant document template for multiple daily tasks" +license = [ + "MIT", +] +homepage = "https://github.com/Carlos-Mero/may" + +[may."0.0.1"] +url = "https://packages.typst.org/preview/may-0.0.1.tar.gz" +hash = "sha256-wntZIT9ENZKZx4Vs50b6LrH6DGI7ZGQEpoQiF/P+XFk=" +typstDeps = [ + "physica_0_9_5", + "wrap-it_0_1_1", +] +description = "A simple and elegant document template for multiple daily tasks" +license = [ + "MIT", +] +homepage = "https://github.com/Carlos-Mero/may" + +[mcm-scaffold."0.2.0"] +url = "https://packages.typst.org/preview/mcm-scaffold-0.2.0.tar.gz" +hash = "sha256-4KSCC7XlZi9eJGm71Ui+dxDFKqkIcl1QYt0CfGXxSgg=" +typstDeps = [ + "mitex_0_2_5", +] +description = "A Typst template for COMAP's Mathematical Contest in MCM/ICM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/sxdl/MCM-Typst-template" + +[mcm-scaffold."0.1.0"] +url = "https://packages.typst.org/preview/mcm-scaffold-0.1.0.tar.gz" +hash = "sha256-9vB07x85EnOPFB1JKBiloo4MuSJxxHHdyUFdwACvifk=" +typstDeps = [ + "mitex_0_2_2", +] +description = "A Typst template for COMAP's Mathematical Contest in MCM/ICM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/sxdl/MCM-Typst-template" + +[meander."0.2.5"] +url = "https://packages.typst.org/preview/meander-0.2.5.tar.gz" +hash = "sha256-wVC4hYo5znCHfk6sBnZU7PLA+SAyNHgwTBXgIA6Te1M=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.2.4"] +url = "https://packages.typst.org/preview/meander-0.2.4.tar.gz" +hash = "sha256-TQch87tEUVVT9uwAmh2K3FmOwDge0WSQrQVBPFwIg8A=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.2.3"] +url = "https://packages.typst.org/preview/meander-0.2.3.tar.gz" +hash = "sha256-gq6DAurRsDW5G0rpXA306rLkQ76EisaW2/GuaBotQmU=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.2.2"] +url = "https://packages.typst.org/preview/meander-0.2.2.tar.gz" +hash = "sha256-IPJ9tcI5jF3WO6a8XKAUquipvmlAuob/GxkxzIoN0D8=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.2.1"] +url = "https://packages.typst.org/preview/meander-0.2.1.tar.gz" +hash = "sha256-rDPwBSOBxhbaaX7FmcyBSa7TjDSvob2x+VIUQVIc/uM=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.2.0"] +url = "https://packages.typst.org/preview/meander-0.2.0.tar.gz" +hash = "sha256-54ZKSim/kYPbn4/cs1IfCdwrC6+7g9aUuqo9uzTQJww=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.1.0"] +url = "https://packages.typst.org/preview/meander-0.1.0.tar.gz" +hash = "sha256-JXnvPC1K1LtYX4IqaY1qUCVzn0HkW6Feq331ib+7z5w=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[mechanical-system-cetz-34j."0.1.0"] +url = "https://packages.typst.org/preview/mechanical-system-cetz-34j-0.1.0.tar.gz" +hash = "sha256-PPoQ0Gy6Xh19JPPnL2uyGhVomZbOHOOUCFJDp/U/cTc=" +typstDeps = [ + "cetz_0_3_0", +] +description = "CeTZ library for drawing mechanical systems" +license = [ + "MIT", +] +homepage = "https://github.com/34j/typst-cetz-mechanical-system" + +[melt."0.1.0"] +url = "https://packages.typst.org/preview/melt-0.1.0.tar.gz" +hash = "sha256-QSqvdHnu/hnUOY6R7Drru7UuT65xkVusjKJ+24VbE6g=" +typstDeps = [] +description = "Introspect fonts" +license = [ + "MIT", +] +homepage = "https://github.com/RungeCC/melt" + +[mephistypsteles."0.4.0"] +url = "https://packages.typst.org/preview/mephistypsteles-0.4.0.tar.gz" +hash = "sha256-c2JP3m/i7snfC5RO1p9uKzI0UYPCsR4G36hHVS2+PTg=" +typstDeps = [ + "cetz_0_1_0", +] +description = "The devil's reflection, using typst in typst" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/T0mstone/mephistypsteles" + +[mephistypsteles."0.3.0"] +url = "https://packages.typst.org/preview/mephistypsteles-0.3.0.tar.gz" +hash = "sha256-/XWM4SMGT+ZUAEb0QCNxNp8JkHqGInjwY3/zXWrQkls=" +typstDeps = [] +description = "The devil's reflection, using typst in typst" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/T0mstone/mephistypsteles" + +[mephistypsteles."0.2.0"] +url = "https://packages.typst.org/preview/mephistypsteles-0.2.0.tar.gz" +hash = "sha256-/hSShsjHrPIH+XqXDpAZvXXRr6bc7eBWWP9LttWzb18=" +typstDeps = [] +description = "The devil's reflection, using typst in typst" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/T0mstone/mephistypsteles" + +[mephistypsteles."0.1.0"] +url = "https://packages.typst.org/preview/mephistypsteles-0.1.0.tar.gz" +hash = "sha256-vwiyuUYAZInRyHUljVUZCZl4fTP2H/41zE3S5m5dmOM=" +typstDeps = [] +description = "The devil's reflection, using typst in typst" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/T0mstone/mephistypsteles" + +[meppp."0.2.1"] +url = "https://packages.typst.org/preview/meppp-0.2.1.tar.gz" +hash = "sha256-tvLTyqXGm9S51yXFuHglYjZc2c4CYsW5CA3qv95pnFI=" +typstDeps = [ + "cuti_0_2_1", +] +description = "Template for modern physics experiment reports at the Physics School of PKU" +license = [ + "MIT", +] +homepage = "https://github.com/pku-typst/meppp" + +[meppp."0.2.0"] +url = "https://packages.typst.org/preview/meppp-0.2.0.tar.gz" +hash = "sha256-OveaoE6hQeb/tgY9YF6yUTSREjPZ5LoEcEjrgYxKmy4=" +typstDeps = [] +description = "Template for modern physics experiment reports at the Physics School of PKU" +license = [ + "MIT", +] +homepage = "https://github.com/pku-typst/meppp" + +[meppp."0.1.0"] +url = "https://packages.typst.org/preview/meppp-0.1.0.tar.gz" +hash = "sha256-VLGPT6B5rNf6LX05TppT+ewTbRT6E6wh58LsJcrxHFY=" +typstDeps = [] +description = "Template for modern physics experiment reports at the Physics School of PKU" +license = [ + "MIT", +] +homepage = "https://github.com/CL4R3T/meppp" + +[mercator."0.1.1"] +url = "https://packages.typst.org/preview/mercator-0.1.1.tar.gz" +hash = "sha256-AL6pJCWLG5M2JnGy+mFIf03Xg33gWHj8Xji0xQd7AMI=" +typstDeps = [] +description = "🌎 Render GeoJSON in typst" +license = [ + "MIT", +] +homepage = "https://github.com/bernsteining/mercator/" + +[mercator."0.1.0"] +url = "https://packages.typst.org/preview/mercator-0.1.0.tar.gz" +hash = "sha256-PLhFjXTu7yky/a3RCsu2a/Kr/Jhp7cLthc+A9iAVNjU=" +typstDeps = [] +description = "Render GeoJSON in typst" +license = [ + "MIT", +] +homepage = "https://github.com/bernsteining/mercator/" + +[messeji."0.3.0"] +url = "https://packages.typst.org/preview/messeji-0.3.0.tar.gz" +hash = "sha256-vqIQjUdm4KvrDNTr5SnWqzVwSkG/dRVvQy/0W6o0P/g=" +typstDeps = [ + "codly_1_3_0", + "tidy_0_4_2", +] +description = "Typeset multi-page chat histories, including from external JSON files" +license = [ + "MIT", +] +homepage = "https://github.com/Tanikai/messeji" + +[messeji."0.2.0"] +url = "https://packages.typst.org/preview/messeji-0.2.0.tar.gz" +hash = "sha256-ObsJGFyE7RTc6QBr/Vrvf4bwxfs2qGEcAceAxOpHlaM=" +typstDeps = [] +description = "Typeset multi-page chat histories, including from external JSON files" +license = [ + "MIT", +] +homepage = "https://github.com/Tanikai/messeji" + +[messeji."0.1.0"] +url = "https://packages.typst.org/preview/messeji-0.1.0.tar.gz" +hash = "sha256-Aq217WNVh5jq7qrrP6xpcu5hXrPm4zQrHhL4Xugy01o=" +typstDeps = [] +description = "Typeset multi-page chat histories, with JSON support" +license = [ + "MIT", +] +homepage = "https://github.com/Tanikai/messeji" + +[metalogo."1.2.0"] +url = "https://packages.typst.org/preview/metalogo-1.2.0.tar.gz" +hash = "sha256-BY9rUnWqGp2LvKOscA8DIYSuLuBb4zDwgd/rpe/jIFs=" +typstDeps = [] +description = "Typeset various LaTeX compiler logos" +license = [ + "MIT", +] +homepage = "https://github.com/lonkaars/typst-metalogo" + +[metalogo."1.1.0"] +url = "https://packages.typst.org/preview/metalogo-1.1.0.tar.gz" +hash = "sha256-sQgXAzowpv9VGDq9FFl9fjSESyyRnkij2d5bjSEUzoU=" +typstDeps = [] +description = "Typeset various LaTeX logos" +license = [ + "MIT", +] +homepage = "https://github.com/lonkaars/typst-metalogo.git" + +[metalogo."1.0.2"] +url = "https://packages.typst.org/preview/metalogo-1.0.2.tar.gz" +hash = "sha256-4RF3uGrWbYpZGMStKPiTMPWkhrELMdo0WZos2DEEyUI=" +typstDeps = [] +description = "Typeset various LaTeX logos" +license = [ + "MIT", +] +homepage = "https://github.com/lonkaars/typst-metalogo.git" + +[metro."0.3.0"] +url = "https://packages.typst.org/preview/metro-0.3.0.tar.gz" +hash = "sha256-95MU3Zb9EL7sebXn9ddiemKnmu9iO7J9SgX5S5inrGg=" +typstDeps = [ + "oxifmt_0_2_0", + "t4t_0_3_2", +] +description = "Typset units and numbers with options" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/fenjalien/metro" + +[metro."0.2.0"] +url = "https://packages.typst.org/preview/metro-0.2.0.tar.gz" +hash = "sha256-HA6QHYRiWnwxEu1/rb7aqq1n05uZ+axAxuZPhDEmw0w=" +typstDeps = [ + "t4t_0_3_2", +] +description = "Typset units and numbers with options" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/fenjalien/metro" + +[metro."0.1.1"] +url = "https://packages.typst.org/preview/metro-0.1.1.tar.gz" +hash = "sha256-N2e6BRt1Tql6gyosr+w25T41sj55Xp0mvBqnMoVzvSY=" +typstDeps = [ + "t4t_0_2_0", + "t4t_0_3_2", +] +description = "Typset units and numbers with options" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/fenjalien/metro" + +[metro."0.1.0"] +url = "https://packages.typst.org/preview/metro-0.1.0.tar.gz" +hash = "sha256-RHu2RMnAUARKzCgkr8jbEC7/lKiqwR2/lAYveW5CXBg=" +typstDeps = [ + "t4t_0_2_0", +] +description = "Typset units and numbers with options" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/fenjalien/metro" + +[metronic."1.1.0"] +url = "https://packages.typst.org/preview/metronic-1.1.0.tar.gz" +hash = "sha256-rgHjw+wDHWFIb0NqVfmcOO+yXDlpgjiduR4U3KTbNDw=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "A clean, colorful, and modern CV template" +license = [ + "MIT", +] +homepage = "https://github.com/patrixr/metronic-cv" + +[metronic."1.0.0"] +url = "https://packages.typst.org/preview/metronic-1.0.0.tar.gz" +hash = "sha256-MuIZr+GV9ysLA5djgHa6XYSST4XIj9wosSiwDheCSqU=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "A clean, colorful, and modern CV template" +license = [ + "MIT", +] +homepage = "https://github.com/patrixr/metronic-cv" + +[metropolis-polylux."0.1.0"] +url = "https://packages.typst.org/preview/metropolis-polylux-0.1.0.tar.gz" +hash = "sha256-2e/etvchGyyih2CsOwBBeQYxe6Ak/H3o25k6wApEMWg=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Metropolis style template for Polylux" +license = [ + "MIT", +] +homepage = "https://github.com/polylux-typ/metropolis" + +[miage-rapide-tp."0.1.2"] +url = "https://packages.typst.org/preview/miage-rapide-tp-0.1.2.tar.gz" +hash = "sha256-WmlEiIIg1THwzgDk3xcXEAIBd+ZTZYpb5fWT8kgQ35Q=" +typstDeps = [] +description = "Quickly generate a report for MIAGE practical work" +license = [ + "MIT-0", +] + +[miage-rapide-tp."0.1.1"] +url = "https://packages.typst.org/preview/miage-rapide-tp-0.1.1.tar.gz" +hash = "sha256-WLk2i1xOMnk/3dUBGamesMAbbStN9hQ/y7pSfEB5YMI=" +typstDeps = [] +description = "A template to quickly generate a report for MIAGE practical work" +license = [ + "MIT-0", +] + +[miage-rapide-tp."0.1.0"] +url = "https://packages.typst.org/preview/miage-rapide-tp-0.1.0.tar.gz" +hash = "sha256-iqnNBYwHnzpSf7PotKngB8t3PPxSKol4RhZKL2X4EfY=" +typstDeps = [] +description = "A template to quickly generate a report for MIAGE practical work" +license = [ + "MIT-0", +] + +[min-article."0.1.0"] +url = "https://packages.typst.org/preview/min-article-0.1.0.tar.gz" +hash = "sha256-vjjyAb39oC44sHWT3lBVw8G+V/cEaaaxSXssBYJeQmo=" +typstDeps = [ + "linguify_0_4_0", +] +description = "Simple and easy way to write ABNT-compliant articles" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-article" + +[min-book."1.3.0"] +url = "https://packages.typst.org/preview/min-book-1.3.0.tar.gz" +hash = "sha256-smVBNUl/pGgFVaxVJFJCDDCpkgJ/oQuswjWMLjQ/GM0=" +typstDeps = [] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."1.2.1"] +url = "https://packages.typst.org/preview/min-book-1.2.1.tar.gz" +hash = "sha256-5iCwJwBZmSfo6MbdHfnKd+lUrjyPWtzzBq8J+Sklcto=" +typstDeps = [] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."1.2.0"] +url = "https://packages.typst.org/preview/min-book-1.2.0.tar.gz" +hash = "sha256-UZyqmjP69EqrUX1QkVjlrh1KGMRGkjxzzg1ggopMi38=" +typstDeps = [] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."1.1.0"] +url = "https://packages.typst.org/preview/min-book-1.1.0.tar.gz" +hash = "sha256-r64D8Ie2A0b+swwRHmlD6RVSj8heW9Qk774e6NLML88=" +typstDeps = [ + "numbly_0_1_0", +] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."1.0.0"] +url = "https://packages.typst.org/preview/min-book-1.0.0.tar.gz" +hash = "sha256-mw88Ui43I5pufLM8Uwvtjsd8J9kgwnCubg1iP3AFBCo=" +typstDeps = [ + "numbly_0_1_0", +] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."0.1.1"] +url = "https://packages.typst.org/preview/min-book-0.1.1.tar.gz" +hash = "sha256-kLz6yxShVF+lp+ib5T3JQcLshJ3h8QYl+RmyeJ4vVio=" +typstDeps = [ + "numbly_0_1_0", +] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."0.1.0"] +url = "https://packages.typst.org/preview/min-book-0.1.0.tar.gz" +hash = "sha256-pBfBF7HPoSj4k0fxv4FA0tA3jRiaKnGr5Bzy+BDxcJw=" +typstDeps = [ + "numbly_0_1_0", +] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-manual."0.2.1"] +url = "https://packages.typst.org/preview/min-manual-0.2.1.tar.gz" +hash = "sha256-vvJO5bd+LY7RCmkt0La008wKxNbQABewEs1zAepC6/c=" +typstDeps = [ + "pkg-name_0_4_2", +] +description = "Modern but sober manuals inspired by the manpages of old" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-manual" + +[min-manual."0.2.0"] +url = "https://packages.typst.org/preview/min-manual-0.2.0.tar.gz" +hash = "sha256-aT5UEweCGWAGCWEtojE1KKALoEGWdvAivgAgixFa128=" +typstDeps = [ + "pkg-name_0_4_2", +] +description = "Modern but sober manuals inspired by the manpages of old" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-manual" + +[min-manual."0.1.0"] +url = "https://packages.typst.org/preview/min-manual-0.1.0.tar.gz" +hash = "sha256-jqwfu2iOgnoHPO3zvw8b/qo4Zq+dhoWcqFl0ljLoQg8=" +typstDeps = [ + "pkg-name_0_4_2", +] +description = "Simple and sober manuals inspired by the OG Linux manpages" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-manual" + +[min-resume."0.1.0"] +url = "https://packages.typst.org/preview/min-resume-0.1.0.tar.gz" +hash = "sha256-mOtLc/qkZ/FoV4sFudhOOKMBxxxROWOeLYJGyeqYIkY=" +typstDeps = [ + "linguify_0_4_2", +] +description = "Simple and professional résumé for professional people" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-resume" + +[minerva-report-fcfm."0.2.2"] +url = "https://packages.typst.org/preview/minerva-report-fcfm-0.2.2.tar.gz" +hash = "sha256-HK/jzmCXp6i6+Iy/7RfCrKPWp6J1NTb59oLi11SJmfw=" +typstDeps = [] +description = "Template de artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM" +license = [ + "MIT-0", +] +homepage = "https://github.com/Dav1com/minerva-report-fcfm" + +[minerva-report-fcfm."0.2.1"] +url = "https://packages.typst.org/preview/minerva-report-fcfm-0.2.1.tar.gz" +hash = "sha256-+eKKL9iQ3Gw160T7qsQh75QB8iGbE8jYCAnnGU518zQ=" +typstDeps = [] +description = "Template de artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM" +license = [ + "MIT-0", +] +homepage = "https://github.com/Dav1com/minerva-report-fcfm" + +[minerva-report-fcfm."0.2.0"] +url = "https://packages.typst.org/preview/minerva-report-fcfm-0.2.0.tar.gz" +hash = "sha256-AS6L5ynVGu6DdM2uEVMJhBYeQsn5WlpEW3PAbuL859Y=" +typstDeps = [ + "minerva-report-fcfm_0_1_0", +] +description = "Template de artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM" +license = [ + "MIT-0", +] +homepage = "https://github.com/Dav1com/minerva-report-fcfm" + +[minerva-report-fcfm."0.1.0"] +url = "https://packages.typst.org/preview/minerva-report-fcfm-0.1.0.tar.gz" +hash = "sha256-l0Zf7A0wIRh2VdsEsDYBZAQSjIXaTK3/vuX6H/2zfpA=" +typstDeps = [] +description = "Template para crear artículos, informes y tareas para la Facultad de Ciencias Físicas y Matemáticas (FCFM), pero puede ser personalizado para cualquier universidad" +license = [ + "MIT-0", +] +homepage = "https://github.com/Dav1com/minerva-report-fcfm" + +[minerva-thesis."0.2.0"] +url = "https://packages.typst.org/preview/minerva-thesis-0.2.0.tar.gz" +hash = "sha256-NgQzAXTwqHrYVe+h3q+MZbrKVBN44wjyRQ05QlDXcKU=" +typstDeps = [ + "abbr_0_2_3", + "alexandria_0_2_1", + "subpar_0_2_2", +] +description = "Doctoral and master's theses with both Ghent University specific and generic features" +license = [ + "MIT", +] +homepage = "https://github.com/lvandevelde/typst-minerva-thesis" + +[minerva-thesis."0.1.3"] +url = "https://packages.typst.org/preview/minerva-thesis-0.1.3.tar.gz" +hash = "sha256-GPwurX32A3rfFCLQ3O/TnzumCxBHwWhht5AWwdSJWnM=" +typstDeps = [ + "subpar_0_2_2", +] +description = "Theses following guidelines at Ghent University and with some additional functions and features" +license = [ + "MIT", +] +homepage = "https://github.com/lvandevelde/Typst-UGent-thesis" + +[minideck."0.2.1"] +url = "https://packages.typst.org/preview/minideck-0.2.1.tar.gz" +hash = "sha256-UuH/zXlYpibGZaQgpiifTmmA/8swJ+OUAlgWkBghsYk=" +typstDeps = [ + "cetz_0_2_2", + "fletcher_0_5_0", + "pinit_0_1_4", +] +description = "Simple dynamic slides" +license = [ + "MIT", +] +homepage = "https://github.com/knuesel/typst-minideck" + +[minienvs."0.1.0"] +url = "https://packages.typst.org/preview/minienvs-0.1.0.tar.gz" +hash = "sha256-LN2bZyrDUJk+cYvaYDnp2cqvePZgZ79hTpcXlTUB04g=" +typstDeps = [] +description = "Theorem environments with minimal fuss" +license = [ + "MIT", +] + +[minimal-cv."0.2.0"] +url = "https://packages.typst.org/preview/minimal-cv-0.2.0.tar.gz" +hash = "sha256-SGHp8rtk125grQBOMH8LvS+PSOB8+SzKS4XE9QfQFfo=" +typstDeps = [] +description = "A clean and customizable CV template" +license = [ + "MIT-0", +] +homepage = "https://github.com/lelimacon/typst-minimal-cv" + +[minimal-cv."0.1.0"] +url = "https://packages.typst.org/preview/minimal-cv-0.1.0.tar.gz" +hash = "sha256-YQrVb43sOKaG3kgNma2GVYT+xA5pmPlIfbrkAu/wtSA=" +typstDeps = [] +description = "A clean and customizable CV template" +license = [ + "MIT", +] +homepage = "https://github.com/lelimacon/typst-minimal-cv" + +[minimal-note."0.10.0"] +url = "https://packages.typst.org/preview/minimal-note-0.10.0.tar.gz" +hash = "sha256-bipnk5hl+qg3ejVq2Qxfo8iuRRApjZxIVTK/28rBmkY=" +typstDeps = [ + "algorithmic_1_0_0", +] +description = "Notes with colorful minimalism" +license = [ + "MIT-0", +] +homepage = "https://github.com/Michel-Liao/minimal-note" + +[minimal-presentation."0.7.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.7.0.tar.gz" +hash = "sha256-Vory9li+8aMwQ8ceEmqTar8I9QqKXguu1LH2Lugf1/Y=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + +[minimal-presentation."0.6.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.6.0.tar.gz" +hash = "sha256-OqITcVSkhql4T3oVctyE36f5Tm3eZ6JtrVYAYjvRl7M=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + +[minimal-presentation."0.5.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.5.0.tar.gz" +hash = "sha256-QbsFtdy+XKqyziFAZM+vJABItdTh2YD8X2UKNtbeqqw=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + +[minimal-presentation."0.4.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.4.0.tar.gz" +hash = "sha256-09AsVkZKpQJOjI0QcJvCp/pb6kjWfoBgfOMRUS4ARac=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + +[minimal-presentation."0.3.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.3.0.tar.gz" +hash = "sha256-XJILcfNHpFKubfFj5fPYRKR/+0L479x9VJuSBCS7TVA=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + +[minimal-presentation."0.2.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.2.0.tar.gz" +hash = "sha256-ANO8P8da2Vw67ehN+Hh+LpKSOu+eK+S94oYbivgydmQ=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + +[minimal-presentation."0.1.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.1.0.tar.gz" +hash = "sha256-MD0/ukxUD65zNk4C2/RXyKqHRCSmJRxKGyx2phGnNiE=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + +[minimal-thesis-luebeck."0.8.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.8.0.tar.gz" +hash = "sha256-OcV2RAzGpR2UNFeU3W7HM3n6M+t+viubK4r44NszJpk=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_2", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.7.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.7.0.tar.gz" +hash = "sha256-7QX4v57u/KQmkFO2BOI5xVnH18Noj/JUsq/VFREKYpc=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.6.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.6.0.tar.gz" +hash = "sha256-aDWKaMSpInSrpoNh09RQqjW8KJj5Uv7VCqayX7dJ618=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.5.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.5.0.tar.gz" +hash = "sha256-t8DVWepVFjOt1M8LcDbZGYizjrCunFNrCIbwJirM9YQ=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.4.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.4.0.tar.gz" +hash = "sha256-p/r2Jf0T+64MEtL6oMSXo1lfeQgsGQe9iMOXYYtgRss=" +typstDeps = [ + "abbr_0_2_3", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.3.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.3.0.tar.gz" +hash = "sha256-wnkoejwmSwl2Xy+Lca3QHOL9ng6vZ7sCoQ/T/obZRw8=" +typstDeps = [ + "abbr_0_2_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.2.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.2.0.tar.gz" +hash = "sha256-/FtKpzaAFft0PJehThEVSL665p+QWgE4CxZlN0HdjjI=" +typstDeps = [ + "abbr_0_1_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.1.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.1.0.tar.gz" +hash = "sha256-8wgdLxDtP2ZeWTRAvJQehADf35vPplC2MP34o5SJ/oc=" +typstDeps = [ + "abbr_0_1_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] + +[minimal-unilim-thesis."0.1.1"] +url = "https://packages.typst.org/preview/minimal-unilim-thesis-0.1.1.tar.gz" +hash = "sha256-6iEN4JnsL6p08knbDbpaFh9QionD3A2nX/A7hUuax10=" +typstDeps = [] +description = "Minimal example for a thesis at University of Limoges" +license = [ + "MIT", +] +homepage = "https://github.com/kawiluca/packages-unilim-thesis" + +[minimal-unilim-thesis."0.1.0"] +url = "https://packages.typst.org/preview/minimal-unilim-thesis-0.1.0.tar.gz" +hash = "sha256-70B6Z/FT8RXyCaGe6bNdcyTOTjnMKoIxsazL3aKH8pg=" +typstDeps = [] +description = "Minimal example for a thesis at University of Limoges" +license = [ + "MIT", +] +homepage = "https://github.com/kawiluca/template-typst-unilim" + +[minimalbc."0.0.1"] +url = "https://packages.typst.org/preview/minimalbc-0.0.1.tar.gz" +hash = "sha256-JN6jgcnII6jPACdceOqtpnb9kx43fkyLK7Z21PmwvPg=" +typstDeps = [] +description = "Sleek, minimalist design for professional business cards. Emphasizing clarity and elegance" +license = [ + "MIT", +] +homepage = "https://github.com/sevehub/minimalbc" + +[minimalistic-latex-cv."0.1.1"] +url = "https://packages.typst.org/preview/minimalistic-latex-cv-0.1.1.tar.gz" +hash = "sha256-pvfADpumtC5wx/O70rT4TfOEsEQssL/uXEOsOLdhAzU=" +typstDeps = [] +description = "A minimalistic LaTeX-style CV template for professionals" +license = [ + "MIT-0", +] + +[minimalistic-latex-cv."0.1.0"] +url = "https://packages.typst.org/preview/minimalistic-latex-cv-0.1.0.tar.gz" +hash = "sha256-q1iqeCHDLdya8h9MDxFns03LyidWL2GLoLsRvdCLyfs=" +typstDeps = [] +description = "A minimalistic LaTeX-style CV template for professionals" +license = [ + "MIT-0", +] + +[minitoc."0.1.0"] +url = "https://packages.typst.org/preview/minitoc-0.1.0.tar.gz" +hash = "sha256-4VtBpY3MKbWtGZIkKnbPVm17ChcV53/MgIj+AkZ/X6I=" +typstDeps = [] +description = "An outline function just for one section and nothing else" +license = [ + "GPL-3.0-only", +] +homepage = "https://gitlab.com/human_person/typst-local-outline" + +[mino."0.1.3"] +url = "https://packages.typst.org/preview/mino-0.1.3.tar.gz" +hash = "sha256-PTCaNxInFPFj0qGXzXlrslPxgZ5RgYFHSsryWWAJyYY=" +typstDeps = [ + "jogs_0_2_4", +] +description = "Render tetris fumen in typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/mino" + +[mino."0.1.2"] +url = "https://packages.typst.org/preview/mino-0.1.2.tar.gz" +hash = "sha256-6RODyq64Bvkl7AXQju2pL4A3Nq/NbO8VfZs9szuJJtM=" +typstDeps = [ + "jogs_0_2_3", +] +description = "Render tetris fumen in typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/mino" + +[mino."0.1.1"] +url = "https://packages.typst.org/preview/mino-0.1.1.tar.gz" +hash = "sha256-cl4dktVerwNhAgochCpXeOmNMNI0FERrzNiTtNGWBLs=" +typstDeps = [ + "jogs_0_2_1", +] +description = "Render tetris fumen in typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/mino" + +[mino."0.1.0"] +url = "https://packages.typst.org/preview/mino-0.1.0.tar.gz" +hash = "sha256-OwlYBdaeQzDAgr82l+AiOI4Fz9HWeG+NJ4yt7fn+oxg=" +typstDeps = [ + "jogs_0_2_1", +] +description = "Render tetris fumen in typst" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/mino" + +[mitex."0.2.6"] +url = "https://packages.typst.org/preview/mitex-0.2.6.tar.gz" +hash = "sha256-u9wWAsK76NjJTDDxNtlp+vucB9Yiop0Sw2+kJyejRZM=" +typstDeps = [] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mitex-rs/mitex" + +[mitex."0.2.5"] +url = "https://packages.typst.org/preview/mitex-0.2.5.tar.gz" +hash = "sha256-kvVQT22lWFLxlfXwWC9wWgZXVJMJEf63Uuzri0/NnqY=" +typstDeps = [] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mitex-rs/mitex" + +[mitex."0.2.4"] +url = "https://packages.typst.org/preview/mitex-0.2.4.tar.gz" +hash = "sha256-4NGNciNJQaMhE6AQneKqDzeh16jT2uxORCWEUuN4Lvc=" +typstDeps = [ + "xarrow_0_2_0", +] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mitex-rs/mitex" + +[mitex."0.2.3"] +url = "https://packages.typst.org/preview/mitex-0.2.3.tar.gz" +hash = "sha256-ThPfdRH6cCkoMR58JQYOANTY4axtOIWhDh+OV+xKPO4=" +typstDeps = [ + "xarrow_0_2_0", +] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mitex-rs/mitex" + +[mitex."0.2.2"] +url = "https://packages.typst.org/preview/mitex-0.2.2.tar.gz" +hash = "sha256-zCzfz3iS5Zko31QrI1Hd1qLBGETg2dgVwd4LHDq5njQ=" +typstDeps = [ + "xarrow_0_2_0", +] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mitex-rs/mitex" + +[mitex."0.2.1"] +url = "https://packages.typst.org/preview/mitex-0.2.1.tar.gz" +hash = "sha256-0YonqnjL0+kQaLdOVi+JrzHTGX61F0yCPOYqGu9ntK0=" +typstDeps = [ + "xarrow_0_2_0", +] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mitex-rs/mitex" + +[mitex."0.2.0"] +url = "https://packages.typst.org/preview/mitex-0.2.0.tar.gz" +hash = "sha256-Kh4uMywIoS7EFsQc4WQ23EmNDKD4qqErd6GjkyyO3+c=" +typstDeps = [ + "xarrow_0_2_0", +] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/mitex-rs/mitex" + +[mitex."0.1.0"] +url = "https://packages.typst.org/preview/mitex-0.1.0.tar.gz" +hash = "sha256-94SandlTzLX+awqNrciJjuSbF9MVZ4hLT6dXQq+qJsM=" +typstDeps = [ + "xarrow_0_2_0", +] +description = "LaTeX support for Typst, powered by Rust and WASM" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/OrangeX4/mitex" + +[modern-acad-cv."0.1.4"] +url = "https://packages.typst.org/preview/modern-acad-cv-0.1.4.tar.gz" +hash = "sha256-FPgeJ02NPf8LJkluLdlus2oQCjQHtuqaKJB3ufjiOlo=" +typstDeps = [ + "fontawesome_0_5_0", + "use-academicons_0_1_0", +] +description = "A CV template for academics based on moderncv LaTeX package" +license = [ + "MIT", +] +homepage = "https://github.com/philkleer/typst-modern-acad-cv" + +[modern-acad-cv."0.1.3"] +url = "https://packages.typst.org/preview/modern-acad-cv-0.1.3.tar.gz" +hash = "sha256-md1GRHWOxDNNy4iavFGqSmgpxMKJR8KGsT0pR2XAPso=" +typstDeps = [ + "fontawesome_0_5_0", + "use-academicons_0_1_0", +] +description = "A CV template for academics based on moderncv LaTeX package" +license = [ + "MIT", +] +homepage = "https://github.com/philkleer/typst-modern-acad-cv" + +[modern-acad-cv."0.1.2"] +url = "https://packages.typst.org/preview/modern-acad-cv-0.1.2.tar.gz" +hash = "sha256-+XAabIM+vK0hVC3+5/7jwSnH+C+vH+EfuwhYS9q2XdM=" +typstDeps = [ + "fontawesome_0_5_0", + "use-academicons_0_1_0", +] +description = "A CV template for academics based on moderncv LaTeX package" +license = [ + "MIT", +] +homepage = "https://github.com/philkleer/typst-modern-acad-cv" + +[modern-acad-cv."0.1.1"] +url = "https://packages.typst.org/preview/modern-acad-cv-0.1.1.tar.gz" +hash = "sha256-XVzghoV6ZMbN38FKZK/V5izTKcBv+vnr4UhIywM7NX4=" +typstDeps = [ + "fontawesome_0_5_0", + "modern-acad-cv_0_1_0", + "use-academicons_0_1_0", +] +description = "A CV template for academics based on moderncv LaTeX package" +license = [ + "MIT", +] +homepage = "https://github.com/bpkleer/typst-modern-acad-cv" + +[modern-acad-cv."0.1.0"] +url = "https://packages.typst.org/preview/modern-acad-cv-0.1.0.tar.gz" +hash = "sha256-3plPylFuGxUSuFvdyj/RpbtvbIIlLAf/AFsXVl/59jc=" +typstDeps = [ + "fontawesome_0_4_0", + "use-academicons_0_1_0", +] +description = "A CV template for academics based on moderncv LaTeX package" +license = [ + "MIT", +] +homepage = "https://github.com/bpkleer/typst-modern-acad-cv" + +[modern-bnu-course-paper."0.1.0"] +url = "https://packages.typst.org/preview/modern-bnu-course-paper-0.1.0.tar.gz" +hash = "sha256-HC9zUal/ffbx7O0Ynsmb9OtgS9gJH+dxYfDSFmtiN5Q=" +typstDeps = [ + "algo_0_3_4", + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_2_4", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "北京师范大学课程论文模板。Modern Beijing Normal University Course Paper" +license = [ + "MIT", +] +homepage = "https://github.com/EuanTop/modern-bnu-course-paper" + +[modern-bnu-thesis."0.0.2"] +url = "https://packages.typst.org/preview/modern-bnu-thesis-0.0.2.tar.gz" +hash = "sha256-pMg00ozQH/SRCyd/BR94OMd7lmg701RG5BGUTMXbvNY=" +typstDeps = [ + "algo_0_3_6", + "cuti_0_3_0", + "i-figured_0_2_4", + "pinit_0_2_2", + "tablex_0_0_9", +] +description = "北京师范大学学位论文模板。Modern Beijing Normal University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/mosrat/modern-bnu-thesis" + +[modern-bnu-thesis."0.0.1"] +url = "https://packages.typst.org/preview/modern-bnu-thesis-0.0.1.tar.gz" +hash = "sha256-Zw7INRq6oBSgl7ip/e6SlUgqrAvgwzTmbW0ODOQBFOU=" +typstDeps = [ + "algo_0_3_4", + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "pinit_0_1_3", + "tablex_0_0_8", +] +description = "北京师范大学学位论文模板。Modern Beijing Normal University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/mosrat/modern-bnu-thesis" + +[modern-buaa-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-buaa-thesis-0.1.1.tar.gz" +hash = "sha256-y4X7IWYd4+SW+DQG7GmNT/T5cEvwp6JRxXcsKn1/ot4=" +typstDeps = [ + "cuti_0_3_0", + "lovelace_0_3_0", + "subpar_0_2_2", +] +description = "A modern thesis template for BUAA" +license = [ + "MIT", +] +homepage = "https://github.com/wangjq4214/buaa-thesis" + +[modern-buaa-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-buaa-thesis-0.1.0.tar.gz" +hash = "sha256-++OOFppMGyurhhbXBMtrIKVofN+ldhqcdYH3m+8g0aA=" +typstDeps = [ + "cuti_0_3_0", + "lovelace_0_3_0", + "subpar_0_2_2", +] +description = "A modern thesis template for BUAA" +license = [ + "MIT", +] +homepage = "https://github.com/wangjq4214/buaa-thesis" + +[modern-cqut-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-cqut-thesis-0.1.0.tar.gz" +hash = "sha256-75yWFP5K6VmsPKff/BvzKHK15Bch6CwRXEHsTIaZJYQ=" +typstDeps = [ + "ctheorems_1_1_3", + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "outrageous_0_3_0", + "pinit_0_2_2", + "showybox_2_0_3", + "tablex_0_0_8", +] +description = "重庆理工大学学位论文模板。 A Thesis Tamplate for CQUT" +license = [ + "MIT", +] +homepage = "https://github.com/aFei-CQUT/modern-cqut-thesis" + +[modern-cug-report."0.1.3"] +url = "https://packages.typst.org/preview/modern-cug-report-0.1.3.tar.gz" +hash = "sha256-ZTkd+ujt4R24DS+w0wWZl+Y9g6DkGwyg4SNKYjG3o90=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_10", + "cuti_0_3_0", + "mannot_0_3_1", + "mitex_0_2_6", + "physica_0_9_7", + "showybox_2_0_4", +] +description = "Chinese Technical report writing standards" +license = [ + "MIT", +] +homepage = "https://github.com/CUG-hydro/modern-cug-report.typ" + +[modern-cug-report."0.1.1"] +url = "https://packages.typst.org/preview/modern-cug-report-0.1.1.tar.gz" +hash = "sha256-tDNx5sL+we4WNxEFa+oHMNfe9nvbB717gKz87Jjobmk=" +typstDeps = [ + "cuti_0_2_1", + "mitex_0_2_4", + "physica_0_9_3", + "showybox_2_0_3", +] +description = "Chinese Technical report writing standards" +license = [ + "MIT", +] +homepage = "https://github.com/CUG-hydro/modern-cug-report.typ" + +[modern-cug-report."0.1.0"] +url = "https://packages.typst.org/preview/modern-cug-report-0.1.0.tar.gz" +hash = "sha256-j+wgh8EXdPjuWRYmfVnjhEIvYSGuAPeEclj5vD7HjVI=" +typstDeps = [ + "codly_1_0_0", + "cuti_0_2_1", + "mitex_0_2_4", + "physica_0_9_3", + "showybox_2_0_3", +] +description = "Chinese Technical report writing standards" +license = [ + "MIT", +] +homepage = "https://github.com/CUG-hydro/modern-cug-report.typ" + +[modern-cug-thesis."0.2.6"] +url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.6.tar.gz" +hash = "sha256-HoN1j5PIQ0UxafuHgQNTRc0eaoIhTLMD+ejMyZwIcGQ=" +typstDeps = [ + "cuti_0_2_1", + "i-figured_0_2_4", + "subpar_0_2_1", + "tablex_0_0_8", + "wordometer_0_1_4", +] +description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Rsweater/cug-thesis-typst" + +[modern-cug-thesis."0.2.5"] +url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.5.tar.gz" +hash = "sha256-pTrPUNNss/RmAS+JE/F48lvpBQOg75gHhPQ8YMsxKak=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_2_4", + "outrageous_0_1_0", + "subpar_0_2_0", + "tablex_0_0_8", +] +description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Rsweater/cug-thesis-typst" + +[modern-cug-thesis."0.2.4"] +url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.4.tar.gz" +hash = "sha256-3SpjKehYDxl6YPWuJq1PZs4ZEutB464wAQ42XQEbeiQ=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_2_4", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Rsweater/cug-thesis-typst" + +[modern-cug-thesis."0.2.3"] +url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.3.tar.gz" +hash = "sha256-3mZSi5/bcYVQWg+H9/nD2Tph3bMiEq0w491lIhD92QQ=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_2_4", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Rsweater/cug-thesis-typst" + +[modern-cug-thesis."0.2.2"] +url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.2.tar.gz" +hash = "sha256-F50iaDduV2nS1brJO3s9BBUwGWqnAYgj17SXbd/Nzxo=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_2_4", + "indenta_0_0_3", + "modern-cug-thesis_0_2_1", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Rsweater/cug-thesis-typst" + +[modern-cug-thesis."0.2.1"] +url = "https://packages.typst.org/preview/modern-cug-thesis-0.2.1.tar.gz" +hash = "sha256-3ST8IuzSV4ZW/7y0e5C/vvjsnDnbUMHiUUXP+FxA4vc=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_2_4", + "indenta_0_0_3", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Rsweater/cug-thesis-typst" + +[modern-cug-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-cug-thesis-0.1.0.tar.gz" +hash = "sha256-2FIo2PUltG+8HVtIkxwOh1mlhvc902zlJ4qIzQvVALw=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_2_4", + "indenta_0_0_3", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中国地质大学(武汉)学位论文模板。China University of Geosciences Thesis based on Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Rsweater/cug-thesis-typst" + +[modern-cv."0.9.0"] +url = "https://packages.typst.org/preview/modern-cv-0.9.0.tar.gz" +hash = "sha256-WDxVubQ1UYDUnjMgpYTwbQQ+0QoP7Ya9ZfyKPBfkWtI=" +typstDeps = [ + "fontawesome_0_6_0", + "linguify_0_4_2", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.8.0"] +url = "https://packages.typst.org/preview/modern-cv-0.8.0.tar.gz" +hash = "sha256-p8ZkhcYvO3vdidAYRYobapreiZSqE4Pihd0eEeLIQ24=" +typstDeps = [ + "fontawesome_0_5_0", + "linguify_0_4_1", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.7.0"] +url = "https://packages.typst.org/preview/modern-cv-0.7.0.tar.gz" +hash = "sha256-AHUyHvNmcobnCGjfInft4i/JWnTQp+o5dSznx/xl6cU=" +typstDeps = [ + "fontawesome_0_5_0", + "linguify_0_4_1", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.6.0"] +url = "https://packages.typst.org/preview/modern-cv-0.6.0.tar.gz" +hash = "sha256-3MRMAuavyQzggHtgd6g5LjfqeF1+26Y6+AUwAbGCmdk=" +typstDeps = [ + "fontawesome_0_2_1", + "linguify_0_4_0", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.5.0"] +url = "https://packages.typst.org/preview/modern-cv-0.5.0.tar.gz" +hash = "sha256-iT4H5axgHaNQGDJzrla917YiqxFC6uNP7X9PmM2mAhY=" +typstDeps = [ + "fontawesome_0_2_1", + "linguify_0_4_0", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.4.0"] +url = "https://packages.typst.org/preview/modern-cv-0.4.0.tar.gz" +hash = "sha256-o2G8VnzHVDxJ/ooJaewVfNWU6kvTAmJ+/H/Hb+pGlQc=" +typstDeps = [ + "fontawesome_0_2_1", + "linguify_0_4_0", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.3.1"] +url = "https://packages.typst.org/preview/modern-cv-0.3.1.tar.gz" +hash = "sha256-2zE5Wa/4XQbzudDfxnh/SJudunnvVZh94QDc51IwAmM=" +typstDeps = [ + "fontawesome_0_1_0", + "linguify_0_4_0", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.3.0"] +url = "https://packages.typst.org/preview/modern-cv-0.3.0.tar.gz" +hash = "sha256-0gMx15la5PddPO7gdwRZJDvMvGmJzmOZtDZ312VuDNE=" +typstDeps = [ + "fontawesome_0_1_0", + "linguify_0_4_0", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.2.0"] +url = "https://packages.typst.org/preview/modern-cv-0.2.0.tar.gz" +hash = "sha256-VfsX6L1N7yYiDQ838lto6FSGomcSUSzqGTle81qP7OQ=" +typstDeps = [ + "fontawesome_0_1_0", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-cv."0.1.0"] +url = "https://packages.typst.org/preview/modern-cv-0.1.0.tar.gz" +hash = "sha256-htS0bAEgSfCnFt/BP6Hr/dY4gB0hvnxKWWOz1EEMtCI=" +typstDeps = [ + "fontawesome_0_1_0", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + +[modern-ecnu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-ecnu-thesis-0.3.0.tar.gz" +hash = "sha256-26L1M0A2j6+DNZq0/R+kjO8xDeI8oKGvvZpco0vl2yw=" +typstDeps = [ + "cuti_0_2_1", + "hydra_0_5_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "kouhu_0_1_0", + "outrageous_0_3_0", + "pinit_0_1_3", + "tablex_0_0_8", + "wordometer_0_1_4", +] +description = "华东师范大学本科 / 研究生学位论文模板。Modern East China Normal University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/jtchen2k/modern-ecnu-thesis" + +[modern-ecnu-thesis."0.2.0"] +url = "https://packages.typst.org/preview/modern-ecnu-thesis-0.2.0.tar.gz" +hash = "sha256-d9JuuJUbBPELbgJ0KHVX+hcYzap41sd8CD023oPu1Jk=" +typstDeps = [ + "cuti_0_2_1", + "hydra_0_5_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "kouhu_0_1_0", + "outrageous_0_3_0", + "pinit_0_1_3", + "tablex_0_0_8", + "wordometer_0_1_4", +] +description = "华东师范大学本科 / 研究生学位论文模板。Modern East China Normal University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/jtchen2k/modern-ecnu-thesis" + +[modern-ecnu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-ecnu-thesis-0.1.0.tar.gz" +hash = "sha256-S/x3L3NdnsH3J5QbpGUVc9MA6TFcRCugOnLVowfDsqA=" +typstDeps = [ + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "kouhu_0_1_0", + "outrageous_0_1_0", + "pinit_0_1_3", + "tablex_0_0_8", + "wordometer_0_1_4", +] +description = "华东师范大学学位论文模板。Modern East China Normal University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/jtchen2k/modern-ecnu-thesis" + +[modern-fzu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-fzu-thesis-0.1.0.tar.gz" +hash = "sha256-P0EY6Li2lbZJljzkKZXi+icfqPmq49jdVCcBv+x8nGQ=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_1_0", + "i-figured_0_2_4", + "lovelace_0_3_0", + "numbly_0_1_0", + "pinit_0_2_2", + "tablex_0_0_9", + "zebraw_0_5_4", +] +description = "福州大学学位论文模板。Modern Fuzhou University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/zenor0/modern-fzu-thesis" + +[modern-g7-32."0.2.0"] +url = "https://packages.typst.org/preview/modern-g7-32-0.2.0.tar.gz" +hash = "sha256-4XhQ3/+/kPDXumxdtFFE6dxkhk8V5zIZaJ+NQlya71k=" +typstDeps = [] +description = "Template for academic documents in compliance with GOST 7.32‑2017" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/typst-g7-32/modern-g7-32" + +[modern-g7-32."0.1.0"] +url = "https://packages.typst.org/preview/modern-g7-32-0.1.0.tar.gz" +hash = "sha256-eueqW82lVMD0Ii45pLAlD4Rw7NuF9mdfuTWXgQ1Oylw=" +typstDeps = [ + "numberingx_0_0_1", +] +description = "Template for academic documents in compliance with GOST 7.32‑2017" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/typst-g7-32/modern-g7-32" + +[modern-hfut-report."0.1.0"] +url = "https://packages.typst.org/preview/modern-hfut-report-0.1.0.tar.gz" +hash = "sha256-N+hNyWfSzxYDFUaB4qPiZUsoO6nt3YtS62slggHJnLU=" +typstDeps = [ + "i-figured_0_2_4", + "zh-format_0_1_0", +] +description = "合肥工业大学课程现代设计报告模板。Modern report template for HFUT" +license = [ + "MIT", +] +homepage = "https://github.com/KercyDing/modern-hfut-report" + +[modern-hkust-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-hkust-thesis-0.1.0.tar.gz" +hash = "sha256-sBNXAJYFrm88NhvxpTKrHXIGGDqa6dPJRry45CKLAO0=" +typstDeps = [ + "abbr_0_2_3", + "booktabs_0_0_4", + "datify-core_1_0_0", + "numbly_0_1_0", + "titleize_0_1_1", +] +description = "📄 Thesis Template for HKUST-GZ in typst" +license = [ + "MIT", +] +homepage = "https://gitlab.hkust-gz.edu.cn/jlu625/typst-thesis-template" + +[modern-hsh-thesis."1.1.1"] +url = "https://packages.typst.org/preview/modern-hsh-thesis-1.1.1.tar.gz" +hash = "sha256-X7gt1MdV8F+vArCrPDwMfLlA3ZndNgo0tOXJo7OV/8M=" +typstDeps = [ + "big-todo_0_2_0", + "codly_1_3_0", + "gentle-clues_1_2_0", + "gloss-awe_0_0_5", + "hydra_0_6_0", + "treet_0_1_1", + "wrap-it_0_1_1", +] +description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4" +license = [ + "MIT", +] +homepage = "https://github.com/MrToWy/hsh-thesis" + +[modern-hsh-thesis."1.1.0"] +url = "https://packages.typst.org/preview/modern-hsh-thesis-1.1.0.tar.gz" +hash = "sha256-A+DECSPBeSUhEXlDGCL7xBWrQ83NGD5Xy0rAaa7TNJk=" +typstDeps = [ + "big-todo_0_2_0", + "codly_1_3_0", + "gentle-clues_1_2_0", + "gloss-awe_0_0_5", + "hydra_0_6_0", + "treet_0_1_1", + "wrap-it_0_1_1", +] +description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4" +license = [ + "MIT", +] +homepage = "https://github.com/MrToWy/hsh-thesis" + +[modern-hsh-thesis."1.0.2"] +url = "https://packages.typst.org/preview/modern-hsh-thesis-1.0.2.tar.gz" +hash = "sha256-RXQYwYaz/mAXMuDX7DS+Wpr8Op6x6nF2G0KB88HCauM=" +typstDeps = [ + "big-todo_0_2_0", + "codly_1_2_0", + "gentle-clues_1_2_0", + "gloss-awe_0_0_5", + "hydra_0_6_0", + "treet_0_1_1", + "wrap-it_0_1_1", +] +description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4" +license = [ + "MIT", +] +homepage = "https://github.com/MrToWy/hsh-thesis" + +[modern-hsh-thesis."1.0.1"] +url = "https://packages.typst.org/preview/modern-hsh-thesis-1.0.1.tar.gz" +hash = "sha256-pLF1k5wwDtANkEDQ66Tqikn+Rsk6I8dPUez81DzizAY=" +typstDeps = [ + "big-todo_0_2_0", + "codly_1_0_0", + "gentle-clues_0_9_0", + "gloss-awe_0_0_5", + "hydra_0_5_1", + "treet_0_1_0", + "wrap-it_0_1_0", +] +description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4" +license = [ + "MIT", +] +homepage = "https://github.com/MrToWy/hsh-thesis" + +[modern-hsh-thesis."1.0.0"] +url = "https://packages.typst.org/preview/modern-hsh-thesis-1.0.0.tar.gz" +hash = "sha256-5XIOMC3hmc+5OhIOPnt4nmg2TyioSVZvxaZY8uj3j1g=" +typstDeps = [ + "big-todo_0_2_0", + "codly_1_0_0", + "gentle-clues_0_9_0", + "gloss-awe_0_0_5", + "hydra_0_3_0", + "treet_0_1_0", + "wrap-it_0_1_0", +] +description = "Template for writing a bachelors or masters thesis at the Hochschule Hannover, Faculty 4" +license = [ + "MIT", +] +homepage = "https://github.com/MrToWy/hsh-thesis" + +[modern-hust-cse-report."0.1.0"] +url = "https://packages.typst.org/preview/modern-hust-cse-report-0.1.0.tar.gz" +hash = "sha256-xp03V7PC+OnC/NnQUm5A4awBjg9W2XXRwgyZUqYzaYY=" +typstDeps = [ + "cuti_0_3_0", +] +description = "An unofficial lab report template for the School of Cyber Science and Engineering at HUST" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/DzmingLi/hust-cse-report" + +[modern-innopolis-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-innopolis-thesis-0.1.0.tar.gz" +hash = "sha256-72F1Bhh3iIGFm3XwtcB2TCHSbjus5nSoO4ICCP+QIpk=" +typstDeps = [] +description = "Thesis template for Innopolis University" +license = [ + "MIT", +] +homepage = "https://github.com/sh3b0/innopolis-thesis" + +[modern-iu-thesis."0.1.4"] +url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.4.tar.gz" +hash = "sha256-/zONmk7558Gi4HzZAtVlQ0fzWVe5sDEqnHwq1TEnOgE=" +typstDeps = [] +description = "Modern Typst thesis template for Indiana University" +license = [ + "MIT", +] +homepage = "https://github.com/bojohnson5/modern-iu-thesis" + +[modern-iu-thesis."0.1.3"] +url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.3.tar.gz" +hash = "sha256-tdGlp+bW/S7MAc7bi7lkXwbx48y7UVCWtviiRlkeTVI=" +typstDeps = [] +description = "Modern Typst thesis template for Indiana University" +license = [ + "MIT", +] +homepage = "https://github.com/bojohnson5/modern-iu-thesis" + +[modern-iu-thesis."0.1.2"] +url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.2.tar.gz" +hash = "sha256-D7f+z1GZAomGWR+DhcwXEC0vkj03GpCMmQoWuCdq6Cc=" +typstDeps = [] +description = "Modern Typst thesis template for Indiana University" +license = [ + "MIT", +] +homepage = "https://github.com/bojohnson5/modern-iu-thesis" + +[modern-iu-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.1.tar.gz" +hash = "sha256-2ki23KYifJMk0zCVnFTu/KlJsmo5LeOT8UoCeuecsdQ=" +typstDeps = [] +description = "Modern Typst thesis template for Indiana University" +license = [ + "MIT", +] +homepage = "https://github.com/bojohnson5/modern-iu-thesis" + +[modern-iu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.0.tar.gz" +hash = "sha256-xda/9KVnb8I0ob1mZMChzqEBw7uBoaUGTwdhFujeV5k=" +typstDeps = [] +description = "Modern Typst thesis template for Indiana University" +license = [ + "MIT", +] +homepage = "https://github.com/bojohnson5/modern-iu-thesis" + +[modern-mla."0.1.0"] +url = "https://packages.typst.org/preview/modern-mla-0.1.0.tar.gz" +hash = "sha256-JGsMcYkoS8P5D/n94WPCE1vCQIhGOHbu4adZ5T0UYQ4=" +typstDeps = [] +description = "Template for MLA formats" +license = [ + "MIT", +] +homepage = "https://nest.pijul.com/DzmingLi/typst-mla-template" + +[modern-nenu-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-nenu-thesis-0.1.1.tar.gz" +hash = "sha256-Kl4vjpIcZ+Umx2nqqhiYZpJuoySKTrfCffiKeQESG7g=" +typstDeps = [ + "cetz_0_4_2", + "cheq_0_3_0", + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "gentle-clues_1_2_0", + "i-figured_0_2_4", + "kouhu_0_2_0", + "lovelace_0_3_0", + "modern-nenu-thesis_0_1_0", + "numbly_0_1_0", + "shiroa_0_2_3", + "tablex_0_0_9", + "tidy_0_4_3", +] +description = "A thesis template for NENU students" +license = [ + "MIT", +] +homepage = "https://github.com/virgiling/NENU-Thesis-Typst" + +[modern-nenu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-nenu-thesis-0.1.0.tar.gz" +hash = "sha256-VTZxh33UXcUDsglbmskbTJNEeM21tga942QtJwYQf9U=" +typstDeps = [ + "cetz_0_4_2", + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "gentle-clues_1_2_0", + "i-figured_0_2_4", + "kouhu_0_2_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "tablex_0_0_9", + "tidy_0_4_3", +] +description = "A thesis template for NENU students" +license = [ + "MIT", +] +homepage = "https://github.com/virgiling/NENU-Thesis-Typst" + +[modern-nju-thesis."0.4.0"] +url = "https://packages.typst.org/preview/modern-nju-thesis-0.4.0.tar.gz" +hash = "sha256-3F1HXZfxlLgbcTNfe37YHIW5M/EY5zGy4thnlVFBfzU=" +typstDeps = [ + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "pinit_0_2_2", + "tablex_0_0_9", +] +description = "南京大学学位论文模板。Modern Nanjing University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/nju-lug/modern-nju-thesis" + +[modern-nju-thesis."0.3.4"] +url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.4.tar.gz" +hash = "sha256-7LS1T5FEfT2wImsa4j/V3RyE0sgL7B1mskceyqw7XtM=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "pinit_0_1_3", + "tablex_0_0_8", +] +description = "南京大学学位论文模板。Modern Nanjing University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/nju-lug/modern-nju-thesis" + +[modern-nju-thesis."0.3.3"] +url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.3.tar.gz" +hash = "sha256-/UwN2FHrMxqghpbpOvD6M70WkrINo+VMMXRqwjh5xgA=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "pinit_0_1_3", + "tablex_0_0_8", +] +description = "南京大学学位论文模板。Modern Nanjing University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/nju-lug/modern-nju-thesis" + +[modern-nju-thesis."0.3.2"] +url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.2.tar.gz" +hash = "sha256-iOURaHUn+z7+83WGNWB+XI+d8x7m/kt69hOp2m7c8F8=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "pinit_0_1_3", + "tablex_0_0_8", +] +description = "南京大学学位论文模板。Modern Nanjing University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/touying-typ/touying" + +[modern-nju-thesis."0.3.1"] +url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.1.tar.gz" +hash = "sha256-T/XZH/zAPYoZIo3bI6OHgx4rglyNmlD8g2Wvi08MBqc=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "pinit_0_1_3", + "tablex_0_0_8", +] +description = "南京大学学位论文模板。Modern Nanjing University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/touying-typ/touying" + +[modern-nju-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-nju-thesis-0.3.0.tar.gz" +hash = "sha256-MIuxHhHVUAMsi+NWzZQtBMna4CqFwvZ2Ms9mx2PDrRs=" +typstDeps = [ + "anti-matter_0_0_2", + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "pinit_0_1_3", + "tablex_0_0_8", +] +description = "南京大学学位论文模板。Modern Nanjing University Thesis" +license = [ + "MIT", +] +homepage = "https://github.com/nju-lug/modern-nju-thesis" + +[modern-ovgu-fma-polylux."1.0.0"] +url = "https://packages.typst.org/preview/modern-ovgu-fma-polylux-1.0.0.tar.gz" +hash = "sha256-fUXLgeIVGYWXFntGeblVh3TuUw10qZ7Sa3DsG25e9rw=" +typstDeps = [ + "ez-today_0_3_0", + "polylux_0_4_0", +] +description = "Unofficial template for creating presentations with Polylux in the style of the Faculty of Mathematics at the Otto-von-Guericke-University Magdeburg" +license = [ + "MIT", +] +homepage = "https://github.com/tibirius24/modern-ovgu-fma-polylux" + +[modern-ovgu-fma-polylux."0.2.0"] +url = "https://packages.typst.org/preview/modern-ovgu-fma-polylux-0.2.0.tar.gz" +hash = "sha256-AE77lJp+tAOPHWV2eN+nRgpCA8wm4rEBJJ4a0mb79hA=" +typstDeps = [ + "ez-today_0_3_0", + "polylux_0_4_0", +] +description = "Unofficial template for creating presentations with Polylux in the style of the Faculty of Mathematics at the Otto-von-Guericke-University Magdeburg" +license = [ + "MIT", +] + +[modern-ovgu-fma-polylux."0.1.0"] +url = "https://packages.typst.org/preview/modern-ovgu-fma-polylux-0.1.0.tar.gz" +hash = "sha256-lNkmssNGU3A+07AyaRzY1oHn253I+xRKX59IJWkgf1s=" +typstDeps = [ + "ez-today_0_3_0", + "polylux_0_4_0", +] +description = "Unofficial template for creating presentations with Polylux in the style of the Faculty of Mathematics at the Otto-von-Guericke-University Magdeburg" +license = [ + "MIT", +] + +[modern-report-umfds."0.1.2"] +url = "https://packages.typst.org/preview/modern-report-umfds-0.1.2.tar.gz" +hash = "sha256-YVoSuE6U+FJFLTe71/8vFpd3oP6bRGQ6ovBAiniVUWU=" +typstDeps = [] +description = "A template for writing reports for the Faculty of Sciences of the University of Montpellier" +license = [ + "MIT-0", +] +homepage = "https://github.com/UM-nerds/modern-report-umfds" + +[modern-report-umfds."0.1.1"] +url = "https://packages.typst.org/preview/modern-report-umfds-0.1.1.tar.gz" +hash = "sha256-Vjuk1yYOCV5kfHebHrrhWxDeLVE4dOVokQ4WhnxwHJs=" +typstDeps = [] +description = "A template for writing reports for the Faculty of Sciences of the University of Montpellier" +license = [ + "MIT-0", +] +homepage = "https://github.com/UM-nerds/modern-report-umfds" + +[modern-report-umfds."0.1.0"] +url = "https://packages.typst.org/preview/modern-report-umfds-0.1.0.tar.gz" +hash = "sha256-Fgxyw6/BmeiB+oWabdoZ/8dmJbKau0ZKTXOmryi+OPE=" +typstDeps = [] +description = "A template for writing reports for the Faculty of Sciences of the University of Montpellier" +license = [ + "MIT-0", +] +homepage = "https://github.com/UM-nerds/modern-report-umfds" + +[modern-resume."0.1.0"] +url = "https://packages.typst.org/preview/modern-resume-0.1.0.tar.gz" +hash = "sha256-J7ACHS7XS/vTX5CBZW/Z+W2y87m+MR39StgBQu/A/wE=" +typstDeps = [] +description = "A modern resume/CV template" +license = [ + "Unlicense", +] +homepage = "https://github.com/peterpf/modern-typst-resume" + +[modern-russian-dissertation."0.0.1"] +url = "https://packages.typst.org/preview/modern-russian-dissertation-0.0.1.tar.gz" +hash = "sha256-dFgLnAx1rwcVmwu6vogKMmR8i+7wBntylDsZZcgXQ+U=" +typstDeps = [ + "codly_0_2_0", + "physica_0_9_3", + "tablex_0_0_8", + "unify_0_5_0", +] +description = "A russian phd thesis template" +license = [ + "MIT", +] +homepage = "https://github.com/SergeyGorchakov/russian-phd-thesis-template-typst" + +[modern-se-kul-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-se-kul-thesis-0.1.0.tar.gz" +hash = "sha256-5mVvT7tdhp1w46FZuvxLRK5G09eVfk1zbXTXlBTXLEY=" +typstDeps = [ + "hydra_0_6_2", +] +description = "Unofficial Master's thesis template for writing a thesis at the engineering science faculty at KU Leuven" +license = [ + "MIT", +] +homepage = "https://github.com/benjamineeckh/kul-typst-template" + +[modern-shu-thesis."0.3.3"] +url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.3.tar.gz" +hash = "sha256-DgolzfJo0xU5W9dofKZt2wjOJJgke8CsIsa0/74Iv/s=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科毕业论文模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/XY-cpp/typst-shu-thesis" + +[modern-shu-thesis."0.3.2"] +url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.2.tar.gz" +hash = "sha256-BSo6yklzgBm5DuJtrhaSbnVKRKO8lVUviSA1oB6rAs8=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科毕业论文模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/XY-cpp/typst-shu-thesis" + +[modern-shu-thesis."0.3.1"] +url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.1.tar.gz" +hash = "sha256-25P4yWiDyB1aKjaYjfSeZzJZr7RUuDacp87HQ0zQU/Y=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科毕业论文模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/XY-cpp/typst-shu-thesis" + +[modern-shu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-shu-thesis-0.3.0.tar.gz" +hash = "sha256-O2lL3iMeNhkev+ak2zz0KZs2Hjw0xXbRKd1TE6UxPqQ=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科毕业论文模板" +license = [ + "MIT", +] +homepage = "https://github.com/XY-cpp/typst-shu-thesis" + +[modern-shu-thesis."0.2.0"] +url = "https://packages.typst.org/preview/modern-shu-thesis-0.2.0.tar.gz" +hash = "sha256-Bz9MLdymirQRwOSSu0+70eCJObRld4zdTnBXo+k9GV8=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_2_0", + "numbly_0_1_0", +] +description = "上海大学本科毕业论文模板" +license = [ + "MIT", +] +homepage = "https://github.com/XY-cpp/typst-shu-thesis" + +[modern-shu-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-shu-thesis-0.1.1.tar.gz" +hash = "sha256-RY73DkkPyJJuXnCgVYC8SDUW9YRMcWgifZjtDOlKTRw=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海大学本科毕业论文模板" +license = [ + "MIT", +] +homepage = "https://github.com/XY-cpp/typst-shu-thesis" + +[modern-shu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-shu-thesis-0.1.0.tar.gz" +hash = "sha256-aae7Sx1ZM9AZHDV5nlEV8LT7m8A+4s5hrRJY1/l/kZg=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海大学本科毕业论文模板" +license = [ + "MIT", +] +homepage = "https://github.com/XY-cpp/typst-shu-thesis" + +[modern-sjtu-thesis."0.5.1"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.5.1.tar.gz" +hash = "sha256-smLLOXtmnMx8eiG/6dv/eoPF4KLK1vYv4DgFJYquXaQ=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_10", + "cuti_0_3_0", + "equate_0_3_2", + "fletcher_0_5_8", + "i-figured_0_2_4", + "itemize_0_2_0", + "lilaq_0_5_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "suiji_0_4_0", + "theorion_0_4_1", + "unify_0_7_1", + "wordometer_0_1_5", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhtaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.5.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.5.0.tar.gz" +hash = "sha256-mT20e+5dQeK6uq/kkVOp/VV69cPOBFcKxgqkCyzTTuE=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "equate_0_3_2", + "fletcher_0_5_8", + "i-figured_0_2_4", + "itemize_0_1_2", + "lilaq_0_4_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "suiji_0_4_0", + "theorion_0_4_0", + "unify_0_7_1", + "wordometer_0_1_4", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhtaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.4.1"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.4.1.tar.gz" +hash = "sha256-syG66QD8d+MNFNfmvhFHDU3OhvySr/Mk/+IWOfj8F9Y=" +typstDeps = [ + "a2c-nums_0_0_1", + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "equate_0_3_2", + "fletcher_0_5_8", + "i-figured_0_2_4", + "lilaq_0_3_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "suiji_0_4_0", + "theorion_0_3_3", + "unify_0_7_1", + "wordometer_0_1_4", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.4.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.4.0.tar.gz" +hash = "sha256-6+G9VfP5baTLTuc6TZtsXzCkwjLpfvG7qVIxeUqqcNs=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_3_0", + "numbly_0_1_0", + "wordometer_0_1_4", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.3.0.tar.gz" +hash = "sha256-FEgTSjR/f9ZOzhq3JPjZJMNROUYHm5pTUfRzCrExSX0=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.2.2"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.2.tar.gz" +hash = "sha256-B3FDybHWM5G2cKeBQefMExVcYf4b2yc/gff5GfcWc6M=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.2.1"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.1.tar.gz" +hash = "sha256-OTr8YH7Z3ORoj8tsDgk/+0n76lromICUkY1RklChWTk=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.2.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.2.0.tar.gz" +hash = "sha256-dfcBB5kKYE/5GyX/QA+f+rwMVBHooOOcyEvzFAdC7RY=" +typstDeps = [ + "a2c-nums_0_0_1", + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/modern-sjtu-thesis" + +[modern-sjtu-thesis."0.1.2"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.1.2.tar.gz" +hash = "sha256-ftyfROArD2TG5cZI0dcJ3ebfqdWnMNpWNDPRlbXlspc=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", +] +description = "上海交通大学研究生学位论文 Typst 模板。Shanghai Jiao Tong University Graduate Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/typst-sjtu-thesis-master" + +[modern-sjtu-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.1.1.tar.gz" +hash = "sha256-7NsuJtSawUWVu9cO848umWtMu27EXkfJ8v8Hz4boMhs=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "numbly_0_1_0", + "outrageous_0_3_0", +] +description = "上海交通大学硕士学位论文 Typst 模板。Shanghai Jiao Tong University Graduate Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/typst-sjtu-thesis-master" + +[modern-sjtu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.1.0.tar.gz" +hash = "sha256-2tj8RkbzC52W6VegrE+YavUYVfFBXfqTMO2WztefPtg=" +typstDeps = [ + "cuti_0_2_1", + "i-figured_0_2_4", + "numbly_0_1_0", + "outrageous_0_1_0", +] +description = "上海交通大学硕士学位论文 Typst 模板。Shanghai Jiao Tong University Master Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/typst-sjtu-thesis-master" + +[modern-sustech-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-sustech-thesis-0.1.1.tar.gz" +hash = "sha256-QDo0ILNewya1ecyfMX1lcqzG5OvUkPOOZuTcEb2vfNQ=" +typstDeps = [] +description = "南方科技大学本科毕业设计(论文)模板. SUSTech Bachelor Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/Duolei-Wang/sustech-thesis-typst" + +[modern-sustech-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-sustech-thesis-0.1.0.tar.gz" +hash = "sha256-dp2wyxgYMX2DJA1odakPKZusJ/4GeoOe9HT+YkKo2F0=" +typstDeps = [] +description = "南方科技大学本科毕业设计(论文)模板. SUSTech Bachelor Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/Duolei-Wang/sustech-thesis-typst" + +[modern-sysu-thesis."0.4.0"] +url = "https://packages.typst.org/preview/modern-sysu-thesis-0.4.0.tar.gz" +hash = "sha256-bC2JvIBViitWFsBsswq6cyQ9tRQvRb+lKe6dgObmlIY=" +typstDeps = [ + "anti-matter_0_0_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "numblex_0_1_1", + "numbly_0_1_0", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis" +license = [ + "MIT", +] +homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis" + +[modern-sysu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-sysu-thesis-0.3.0.tar.gz" +hash = "sha256-P1ay33X2fzmnK+FIO7/C7znU10QKKuGbQZctSysfJQw=" +typstDeps = [ + "anti-matter_0_0_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "numblex_0_1_1", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis" +license = [ + "MIT", +] +homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis" + +[modern-sysu-thesis."0.2.0"] +url = "https://packages.typst.org/preview/modern-sysu-thesis-0.2.0.tar.gz" +hash = "sha256-FTvHq6q+Z7aDzFZknbB/ZEnp8gId44/6NOxnIYvyh0Q=" +typstDeps = [ + "anti-matter_0_0_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "numblex_0_1_1", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis" +license = [ + "MIT", +] +homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis" + +[modern-sysu-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-sysu-thesis-0.1.1.tar.gz" +hash = "sha256-exx84YlSALjILLaJ5MAR0elZXhuQuRqgJb6a1xDluqk=" +typstDeps = [ + "anti-matter_0_0_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis" +license = [ + "MIT", +] +homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis" + +[modern-sysu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-sysu-thesis-0.1.0.tar.gz" +hash = "sha256-/dJWKfvvPOA6m1+Oe6snpaVvfNPzWaQH34HKlN5wrBw=" +typstDeps = [ + "anti-matter_0_0_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "tablex_0_0_8", +] +description = "中山大学学位论文 Typst 模板,A Typst template for SYSU thesis" +license = [ + "MIT", +] +homepage = "https://gitlab.com/sysu-gitlab/thesis-template/better-thesis" + +[modern-sysu-touying."0.1.0"] +url = "https://packages.typst.org/preview/modern-sysu-touying-0.1.0.tar.gz" +hash = "sha256-LRp4xjm4wtyKf5fCfZtQJN6dPyi/QakdEIUwk1ic/iA=" +typstDeps = [ + "touying_0_6_1", +] +description = "中山大学幻灯片 Typst 模板,A Typst template for SYSU presentation" +license = [ + "MIT", +] +homepage = "https://github.com/sysu/modern-sysu-touying" + +[modern-szu-thesis."0.4.0"] +url = "https://packages.typst.org/preview/modern-szu-thesis-0.4.0.tar.gz" +hash = "sha256-Tz3zDaCYNfLGuzSSdTnrkV+pX/uo/MPGSGwfFiPlKEg=" +typstDeps = [ + "cuti_0_3_0", + "hydra_0_6_0", + "i-figured_0_2_4", + "numbly_0_1_0", + "pinit_0_2_2", + "tablex_0_0_9", +] +description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis" +license = [ + "MIT", +] +homepage = "https://gitee.com/yjdyamv/modern-szu-thesis" + +[modern-szu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-szu-thesis-0.3.0.tar.gz" +hash = "sha256-PAnKU0ccuZITAL+anqSACkYMzNqXKHmGS0kg5skjSgA=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "tablex_0_0_9", +] +description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis" +license = [ + "MIT", +] +homepage = "https://gitee.com/yjdyamv/modern-szu-thesis" + +[modern-szu-thesis."0.2.0"] +url = "https://packages.typst.org/preview/modern-szu-thesis-0.2.0.tar.gz" +hash = "sha256-BBQp5FizcgQgd4hfKfzXby+PG3TuhtmkoV2IiCgbZpo=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "outrageous_0_3_0", + "tablex_0_0_9", +] +description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis" +license = [ + "MIT", +] +homepage = "https://gitee.com/yjdyamv/modern-szu-thesis" + +[modern-szu-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-szu-thesis-0.1.1.tar.gz" +hash = "sha256-EHCewSw0xT1cRPi6CH72IA0Hk7Kef6RoB5bdU4LGpws=" +typstDeps = [ + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "tablex_0_0_9", +] +description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis" +license = [ + "MIT", +] +homepage = "https://gitee.com/yjdyamv/modern-szu-thesis" + +[modern-szu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-szu-thesis-0.1.0.tar.gz" +hash = "sha256-PbQVGaWqUM1KRVZnjK5a5PO/M1rSt2mdxpOgtSwO9F4=" +typstDeps = [ + "cuti_0_2_1", + "i-figured_0_1_0", + "i-figured_0_2_4", + "outrageous_0_1_0", + "tablex_0_0_9", +] +description = "深圳大学学位论文模板由南京大学学位论文模板修改而成。Modern Shenzhen University Thesis is modified from modern-nju-thesis" +license = [ + "MIT", +] + +[modern-technique-report."0.1.0"] +url = "https://packages.typst.org/preview/modern-technique-report-0.1.0.tar.gz" +hash = "sha256-QCgSPrgnKpvKPwzpbaAVO+at2MIlbGA58g2tgTFboqw=" +typstDeps = [] +description = "A template for creating modern-style technique report in Typst" +license = [ + "MIT", +] + +[modern-ucas-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-ucas-thesis-0.1.0.tar.gz" +hash = "sha256-poI/Jg1TBlmKqGxGeXYqF63OjOuMsZxmh6cVkw6kQSc=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "pinit_0_2_2", + "tablex_0_0_9", +] +description = "Master's or doctoral thesis at the University of Chinese Academy of Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/WayneXuCN/modern-ucas-thesis" + +[modern-uestc-thesis."1.0.0"] +url = "https://packages.typst.org/preview/modern-uestc-thesis-1.0.0.tar.gz" +hash = "sha256-NjOkA1jp6Y0wBYIiaJ8bW5ZnGatK9RL3v+6bs/TxgNw=" +typstDeps = [ + "i-figured_0_2_4", + "muchpdf_0_1_0", + "numbly_0_1_0", + "pointless-size_0_1_2", + "zebraw_0_5_4", +] +description = "电子科技大学硕士学位论文模板.Modern UESTC Thesis Template" +license = [ + "MIT", +] + +[modern-uit-thesis."0.1.6"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.6.tar.gz" +hash = "sha256-UyFBhs7rQwHYED4sV3Tnb+vqtq3ZDADn42Tu9qF4q+c=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", + "glossarium_0_5_6", + "physica_0_9_5", + "subpar_0_2_2", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-uit-thesis."0.1.5"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.5.tar.gz" +hash = "sha256-p4oGYHf/Dd84CPWeEFOv5odM6tBOGORH9uo9Ju5efEg=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", + "glossarium_0_5_6", + "physica_0_9_5", + "subpar_0_2_2", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-uit-thesis."0.1.4"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.4.tar.gz" +hash = "sha256-dmsNjOD9kf4PHggxX0r1Dzfra9h9T7EmzuIYG1T3ggM=" +typstDeps = [ + "codly_1_2_0", + "ctheorems_1_1_3", + "glossarium_0_5_4", + "physica_0_9_5", + "subpar_0_2_1", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-uit-thesis."0.1.3"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.3.tar.gz" +hash = "sha256-xaxqLTU1F4kRzhUABdnb2E2A1xnNwNlRhaFhm5aJnQw=" +typstDeps = [ + "codly_1_2_0", + "ctheorems_1_1_3", + "glossarium_0_5_0", + "glossarium_0_5_1", + "outrageous_0_3_0", + "physica_0_9_4", + "subpar_0_2_0", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-uit-thesis."0.1.2"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.2.tar.gz" +hash = "sha256-469FTTHCVdRKp8oxray2RAVsLTnvi0LneBc2z/I2nzk=" +typstDeps = [ + "codly_1_0_0", + "glossarium_0_5_0", + "outrageous_0_3_0", + "physica_0_9_3", + "subpar_0_1_1", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-uit-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.1.tar.gz" +hash = "sha256-ZgQ3L4yHMKrl6EPvXqNUfdSm1fjAxXLyHAPzslPU5CQ=" +typstDeps = [ + "codly_1_0_0", + "outrageous_0_2_0", + "physica_0_9_3", + "subpar_0_1_1", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-uit-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.0.tar.gz" +hash = "sha256-JWDY8UufvD27QFu4haDyDvZAdnOKAheal+/YuSFHdRs=" +typstDeps = [ + "codly_1_0_0", + "outrageous_0_1_0", + "physica_0_9_3", + "subpar_0_1_1", +] +description = "A Modern Thesis Template in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/mrtz-j/typst-thesis-template" + +[modern-um-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-um-thesis-0.1.1.tar.gz" +hash = "sha256-iOgh+EBDI8wlhfOElXwWwgmVeaNLtp3P8TyR36E3fkI=" +typstDeps = [ + "cetz_0_4_2", + "cetz-plot_0_1_3", + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "fletcher_0_5_8", + "hallon_0_1_3", + "i-figured_0_2_4", + "itemize_0_1_2", + "numbly_0_1_0", + "theorion_0_4_1", + "unify_0_7_1", + "wordometer_0_1_5", +] +description = "Thesis for University of Macau. 澳门大学学位论文。" +license = [ + "MIT", +] +homepage = "https://github.com/ShabbyGayBar/modern-um-thesis" + +[modern-um-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-um-thesis-0.1.0.tar.gz" +hash = "sha256-kE/l8FCGLJLphvokMsAPAOBjpC5VnhVZaSCAyyEVCxw=" +typstDeps = [ + "cetz_0_4_1", + "cetz-plot_0_1_2", + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "fletcher_0_5_8", + "hallon_0_1_2", + "i-figured_0_2_4", + "itemize_0_1_2", + "numbly_0_1_0", + "theorion_0_4_0", + "unify_0_7_1", + "wordometer_0_1_5", +] +description = "Thesis for University of Macau. 澳门大学学位论文。" +license = [ + "MIT", +] +homepage = "https://github.com/ShabbyGayBar/modern-um-thesis" + +[modern-unimib-thesis."0.1.1"] +url = "https://packages.typst.org/preview/modern-unimib-thesis-0.1.1.tar.gz" +hash = "sha256-JhW++7nk8wbg5Zvtr49OCH93p4y0aJCkEIQSPwtK+Mk=" +typstDeps = [] +description = "A thesis template of the University of Milano-Bicocca" +license = [ + "MIT", +] +homepage = "https://github.com/michelebanfi/unimib-typst-template" + +[modern-unimib-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-unimib-thesis-0.1.0.tar.gz" +hash = "sha256-C1OcVKF1Bz9MDgg84Dack+35PUgYgEuy77m2+zFdfBY=" +typstDeps = [] +description = "A thesis template of the University of Milano-Bicocca heavily inspired by