typst: add typst packages from typst universe

Changed files
+19996
maintainers
pkgs
+226
maintainers/scripts/update-typst-packages.py
···
+
#!/usr/bin/env nix-shell
+
#!nix-shell -p "python3.withPackages (p: with p; [ tomli tomli-w packaging license-expression])" -i python3
+
+
# This file is formatted with `ruff format`.
+
+
import os
+
import re
+
import tomli
+
import tomli_w
+
import subprocess
+
import concurrent.futures
+
import argparse
+
import tempfile
+
import tarfile
+
from string import punctuation
+
from packaging.version import Version
+
from urllib import request
+
from collections import OrderedDict
+
+
+
class TypstPackage:
+
def __init__(self, **kwargs):
+
self.pname = kwargs["pname"]
+
self.version = kwargs["version"]
+
self.meta = kwargs["meta"]
+
self.path = kwargs["path"]
+
self.repo = (
+
None
+
if "repository" not in self.meta["package"]
+
else self.meta["package"]["repository"]
+
)
+
self.description = self.meta["package"]["description"].rstrip(punctuation)
+
self.license = self.meta["package"]["license"]
+
self.params = "" if "params" not in kwargs else kwargs["params"]
+
self.deps = [] if "deps" not in kwargs else kwargs["deps"]
+
+
@classmethod
+
def package_name_full(cls, package_name, version):
+
version_number = map(lambda x: int(x), version.split("."))
+
version_nix = "_".join(map(lambda x: str(x), version_number))
+
return "_".join((package_name, version_nix))
+
+
def license_tokens(self):
+
import license_expression as le
+
+
try:
+
# FIXME: ad hoc conversion
+
exception_list = [("EUPL-1.2+", "EUPL-1.2")]
+
+
def sanitize_license_string(license_string, lookups):
+
if not lookups:
+
return license_string
+
return sanitize_license_string(
+
license_string.replace(lookups[0][0], lookups[0][1]), lookups[1:]
+
)
+
+
sanitized = sanitize_license_string(self.license, exception_list)
+
licensing = le.get_spdx_licensing()
+
parsed = licensing.parse(sanitized, validate=True)
+
return [s.key for s in licensing.license_symbols(parsed)]
+
except le.ExpressionError as e:
+
print(
+
f'Failed to parse license string "{self.license}" because of {str(e)}'
+
)
+
exit(1)
+
+
def source(self):
+
url = f"https://packages.typst.org/preview/{self.pname}-{self.version}.tar.gz"
+
cmd = [
+
"nix",
+
"store",
+
"prefetch-file",
+
"--unpack",
+
"--hash-type",
+
"sha256",
+
"--refresh",
+
"--extra-experimental-features",
+
"nix-command",
+
]
+
result = subprocess.run(cmd + [url], capture_output=True, text=True)
+
hash = re.search(r"hash\s+\'(sha256-.{44})\'", result.stderr).groups()[0]
+
return url, hash
+
+
def to_name_full(self):
+
return self.package_name_full(self.pname, self.version)
+
+
def to_attrs(self):
+
deps = set()
+
excludes = list(map(
+
lambda e: os.path.join(self.path, e),
+
self.meta["package"]["exclude"] if "exclude" in self.meta["package"] else [],
+
))
+
for root, _, files in os.walk(self.path):
+
for file in filter(lambda f: f.split(".")[-1] == "typ", files):
+
file_path = os.path.join(root, file)
+
if file_path in excludes:
+
continue
+
with open(file_path, "r") as f:
+
deps.update(
+
set(
+
re.findall(
+
r"^\s*#import\s+\"@preview/([\w|-]+):(\d+.\d+.\d+)\"",
+
f.read(),
+
re.MULTILINE,
+
)
+
)
+
)
+
self.deps = list(
+
filter(lambda p: p[0] != self.pname or p[1] != self.version, deps)
+
)
+
source_url, source_hash = self.source()
+
+
return dict(
+
url=source_url,
+
hash=source_hash,
+
typstDeps=[
+
self.package_name_full(p, v)
+
for p, v in sorted(self.deps, key=lambda x: x[0])
+
],
+
description=self.description,
+
license=self.license_tokens(),
+
) | (dict(homepage=self.repo) if self.repo else dict())
+
+
+
def generate_typst_packages(preview_dir, output_file):
+
package_tree = dict()
+
+
print("Parsing metadata... from", preview_dir)
+
for p in os.listdir(preview_dir):
+
package_dir = os.path.join(preview_dir, p)
+
for v in os.listdir(package_dir):
+
package_version_dir = os.path.join(package_dir, v)
+
with open(
+
os.path.join(package_version_dir, "typst.toml"), "rb"
+
) as meta_file:
+
try:
+
package = TypstPackage(
+
pname=p,
+
version=v,
+
meta=tomli.load(meta_file),
+
path=package_version_dir,
+
)
+
if package.pname in package_tree:
+
package_tree[package.pname][v] = package
+
else:
+
package_tree[package.pname] = dict({v: package})
+
except tomli.TOMLDecodeError:
+
print("Invalid typst.toml:", package_version_dir)
+
+
with open(output_file, "wb") as typst_packages:
+
+
def generate_package(pname, package_subtree):
+
sorted_keys = sorted(package_subtree.keys(), key=Version, reverse=True)
+
print(f"Generating metadata for {pname}")
+
return {
+
pname: OrderedDict(
+
(k, package_subtree[k].to_attrs()) for k in sorted_keys
+
)
+
}
+
+
with concurrent.futures.ThreadPoolExecutor(max_workers=100) as executor:
+
sorted_packages = sorted(package_tree.items(), key=lambda x: x[0])
+
futures = list()
+
for pname, psubtree in sorted_packages:
+
futures.append(executor.submit(generate_package, pname, psubtree))
+
packages = OrderedDict(
+
(package, subtree)
+
for future in futures
+
for package, subtree in future.result().items()
+
)
+
print(f"Writing metadata... to {output_file}")
+
tomli_w.dump(packages, typst_packages)
+
+
+
def main(args):
+
PREVIEW_DIR = "packages/preview"
+
TYPST_PACKAGE_TARBALL_URL = (
+
"https://github.com/typst/packages/archive/refs/heads/main.tar.gz"
+
)
+
+
directory = args.directory
+
if not directory:
+
tempdir = tempfile.mkdtemp()
+
print(tempdir)
+
typst_tarball = os.path.join(tempdir, "main.tar.gz")
+
+
print(
+
"Downloading Typst packages source from {} to {}".format(
+
TYPST_PACKAGE_TARBALL_URL, typst_tarball
+
)
+
)
+
with request.urlopen(
+
request.Request(TYPST_PACKAGE_TARBALL_URL), timeout=15.0
+
) as response:
+
if response.status == 200:
+
with open(typst_tarball, "wb+") as f:
+
f.write(response.read())
+
else:
+
print("Download failed")
+
exit(1)
+
with tarfile.open(typst_tarball) as tar:
+
tar.extractall(path=tempdir, filter="data")
+
directory = os.path.join(tempdir, "packages-main")
+
directory = os.path.abspath(directory)
+
+
generate_typst_packages(
+
os.path.join(directory, PREVIEW_DIR),
+
args.output,
+
)
+
+
exit(0)
+
+
+
if __name__ == "__main__":
+
parser = argparse.ArgumentParser()
+
parser.add_argument(
+
"-d", "--directory", help="Local Typst Universe repository", default=None
+
)
+
parser.add_argument(
+
"-o",
+
"--output",
+
help="Output file",
+
default=os.path.join(os.path.abspath("."), "typst-packages-from-universe.toml"),
+
)
+
args = parser.parse_args()
+
main(args)
+19718
pkgs/by-name/ty/typst/typst-packages-from-universe.toml
···
+
[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.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.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"
+
+
[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.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.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.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.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"
+
+
[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.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.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.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."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"
+
+
[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"
+
+
[amlos."0.2.1"]
+
url = "https://packages.typst.org/preview/amlos-0.2.1.tar.gz"
+
hash = "sha256-8fo8mYIedny52OXlJ5M2ops8fTBRXOJ9auT27CWFPME="
+
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",
+
]
+
+
[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"
+
+
[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.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.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.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"
+
+
[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"
+
+
[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.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"
+
+
[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.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"
+
+
[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.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.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.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"
+
+
[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.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.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.0"]
+
url = "https://packages.typst.org/preview/bone-resume-0.3.0.tar.gz"
+
hash = "sha256-K7aEUrw64QqZrxgjWhpEk/bf0lpC0BJ+0uVBhfduxkk="
+
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.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",
+
]
+
+
[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"
+
+
[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"
+
+
[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.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.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.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.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"
+
+
[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"
+
+
[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"
+
+
[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.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.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.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"
+
+
[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.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"
+
+
[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.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"
+
+
[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.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"
+
+
[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.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"
+
+
[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"
+
+
[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"
+
+
[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-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-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.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"
+
+
[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"
+
+
[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"
+
+
[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.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.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.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.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"
+
+
[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.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"
+
+
[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"
+
+
[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.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"
+
+
[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.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.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"
+
+
[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.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.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."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"
+
+
[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"
+
+
[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-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.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.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."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.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"
+
+
[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"
+
+
[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"
+
+
[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",
+
]
+
+
[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.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"
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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",
+
]
+
+
[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",
+
]
+
+
[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"
+
+
[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"
+
+
[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.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"
+
+
[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.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"
+
+
[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",
+
]
+
+
[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",
+
]
+
+
[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"
+
+
[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"
+
+
[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.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",
+
]
+
+
[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.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."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"
+
+
[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.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"
+
+
[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.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"
+
+
[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.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.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"
+
+
[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"
+
+
[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.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"
+
+
[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.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.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"
+
+
[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.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.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.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."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.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"
+
+
[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.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"
+
+
[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"
+
+
[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",
+
]
+
+
[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.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.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.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.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.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.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"
+
+
[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.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"
+
+
[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",
+
]
+
+
[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"
+
+
[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.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.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"
+
+
[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."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.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.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"
+
+
[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"
+
+
[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"
+
+
[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",
+
]
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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",
+
]
+
+
[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"
+
+
[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",
+
]
+
+
[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",
+
]
+
+
[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.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",
+
]
+
+
[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.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"
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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.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"
+
+
[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"
+
+
[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",
+
]
+
+
[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"
+
+
[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"
+
+
[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.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"
+
+
[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.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.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"
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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"
+
+
[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."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.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"
+
+
[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.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-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.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",
+
]
+
+
[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.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.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.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.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-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.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.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.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-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-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-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-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."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-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.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-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-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-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 <https://github.com/eduardz1/UniTO-typst-template/tree/main"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/michelebanfi/unimib-typst-template"
+
+
[modern-unito-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/modern-unito-thesis-0.1.0.tar.gz"
+
hash = "sha256-fXQalmj0rXT0EAcNKXsPenNjBU9qte+CuKyq7lcnW7w="
+
typstDeps = []
+
description = "A thesis template of the University of Turin"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/eduardz1/unito-typst-template"
+
+
[modern-whs-assignment."0.2.1"]
+
url = "https://packages.typst.org/preview/modern-whs-assignment-0.2.1.tar.gz"
+
hash = "sha256-uP8ZDJN5kFfUW/4ZlgQGYfUe9gnxZAvVv6hcwtoZkp0="
+
typstDeps = [
+
"codly_1_3_0",
+
"codly-languages_0_1_8",
+
]
+
description = "Assignment template for Westfälische Hochschule"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/alex289/whs-typst-templates"
+
+
[modern-whs-assignment."0.2.0"]
+
url = "https://packages.typst.org/preview/modern-whs-assignment-0.2.0.tar.gz"
+
hash = "sha256-Ts4t66M7xzRKnVYsyFNgTTbf20zgxN7jda1EN4SmcZ0="
+
typstDeps = [
+
"codly_1_2_0",
+
"codly-languages_0_1_7",
+
]
+
description = "Assignment template for Westfälische Hochschule"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/alex289/whs-typst-templates"
+
+
[modern-whs-assignment."0.1.0"]
+
url = "https://packages.typst.org/preview/modern-whs-assignment-0.1.0.tar.gz"
+
hash = "sha256-7kGAyexPbPVZDY+UFVfGmNEkLJafDzf2M2j8iLFlHL8="
+
typstDeps = [
+
"codly_1_0_0",
+
"codly-languages_0_1_5",
+
"outrageous_0_3_0",
+
]
+
description = "Assignment template for Westfälische Hochschule"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/alex289/whs-typst-templates"
+
+
[modern-whs-thesis."0.3.1"]
+
url = "https://packages.typst.org/preview/modern-whs-thesis-0.3.1.tar.gz"
+
hash = "sha256-QSMYNkM04foBaZFI9Hd+tr6GrzhiHYKo4Fz6LLyTH+E="
+
typstDeps = [
+
"codly_1_3_0",
+
"codly-languages_0_1_8",
+
"glossarium_0_5_3",
+
]
+
description = "Thesis template for Westfälische Hochschule"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/alex289/whs-typst-templates"
+
+
[modern-whs-thesis."0.3.0"]
+
url = "https://packages.typst.org/preview/modern-whs-thesis-0.3.0.tar.gz"
+
hash = "sha256-D/zh8gDqJBDwdyG/1Rf9svb0B1kpG6PswrrcJOa3PxE="
+
typstDeps = [
+
"codly_1_2_0",
+
"codly-languages_0_1_7",
+
"glossarium_0_5_3",
+
]
+
description = "Thesis template for Westfälische Hochschule"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/alex289/whs-typst-templates"
+
+
[modern-whs-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/modern-whs-thesis-0.2.0.tar.gz"
+
hash = "sha256-NKlRv7O0AReo3VdH6GzNAXCbBVTLgcsBq1Dw5oR1IwY="
+
typstDeps = [
+
"codly_1_0_0",
+
"codly-languages_0_1_5",
+
"glossarium_0_5_1",
+
]
+
description = "Thesis template for Westfälische Hochschule"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/alex289/whs-typst-templates"
+
+
[modern-whs-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/modern-whs-thesis-0.1.0.tar.gz"
+
hash = "sha256-L8vac3MCTjMy7BPU5v08yOz1FQ56R2zZZ+Mv3OeSTPA="
+
typstDeps = [
+
"codly_1_0_0",
+
"codly-languages_0_1_5",
+
"glossarium_0_5_1",
+
]
+
description = "Thesis template for Westfälische Hochschule"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/alex289/whs-typst-templates"
+
+
[modern-xmu-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/modern-xmu-thesis-0.2.0.tar.gz"
+
hash = "sha256-QbqWVtg0BHuOndNyfgAWxv4XLqeb4Bqcn0oLHUXCRXo="
+
typstDeps = [
+
"hydra_0_6_0",
+
"i-figured_0_2_4",
+
"metalogo_1_2_0",
+
"numbly_0_1_0",
+
"zebraw_0_4_8",
+
]
+
description = "厦门大学学位论文模板。Modern Xiamen University Thesis"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPCesia/modern-xmu-thesis"
+
+
[modern-xmu-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/modern-xmu-thesis-0.1.0.tar.gz"
+
hash = "sha256-v8o+AANxvTYCyVU0Pm6zp9O3Unu7OSMz1/vAOhD/xzg="
+
typstDeps = [
+
"hydra_0_6_0",
+
"i-figured_0_2_4",
+
"metalogo_1_2_0",
+
"numbly_0_1_0",
+
"zebraw_0_4_8",
+
]
+
description = "厦门大学学位论文模板。Modern Xiamen University Thesis"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPCesia/modern-xmu-thesis"
+
+
[modern-ysu-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/modern-ysu-thesis-0.1.0.tar.gz"
+
hash = "sha256-WFqr/aYN0KudcQbhG61urMY2+Y0vQQN0JbuB4NAy2f0="
+
typstDeps = [
+
"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 Yanshan University Thesis"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Woodman3/modern-ysu-thesis"
+
+
[moderner-cv."0.2.0"]
+
url = "https://packages.typst.org/preview/moderner-cv-0.2.0.tar.gz"
+
hash = "sha256-SLpINhWjyxPfvH5RxvHll1+kg6IDXcCI1SY7AmLxCwA="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
]
+
description = "A resume template based on the moderncv LaTeX package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pavelzw/moderner-cv"
+
+
[moderner-cv."0.1.2"]
+
url = "https://packages.typst.org/preview/moderner-cv-0.1.2.tar.gz"
+
hash = "sha256-+//Yrd1g+PLZVm0O+UMO1e+GfcbhY5s5Wnyf9sQYQ/Q="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
]
+
description = "A resume template based on the moderncv LaTeX package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pavelzw/moderner-cv"
+
+
[moderner-cv."0.1.1"]
+
url = "https://packages.typst.org/preview/moderner-cv-0.1.1.tar.gz"
+
hash = "sha256-5g8pF0Ya6Arjx+uahzJy0uZ8dBQ7SeJuI4UAswYXl7I="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
]
+
description = "A resume template based on the moderncv LaTeX package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pavelzw/moderner-cv"
+
+
[moderner-cv."0.1.0"]
+
url = "https://packages.typst.org/preview/moderner-cv-0.1.0.tar.gz"
+
hash = "sha256-NjOGNHOpi5C1Z/0ZvT2ldwDVk8+vF/rrhR3huB7aOPY="
+
typstDeps = [
+
"fontawesome_0_2_1",
+
]
+
description = "A resume template based on the moderncv LaTeX package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pavelzw/moderner-cv"
+
+
[modernpro-coverletter."0.0.6"]
+
url = "https://packages.typst.org/preview/modernpro-coverletter-0.0.6.tar.gz"
+
hash = "sha256-l0qPsfMNR13q9biyNNT52QpcysAzBaFMI5Ajj2wkUoo="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
]
+
description = "A cover letter template with modern Sans font for job applications and other formal letters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/typst-coverletter"
+
+
[modernpro-coverletter."0.0.5"]
+
url = "https://packages.typst.org/preview/modernpro-coverletter-0.0.5.tar.gz"
+
hash = "sha256-oz8z2MPMom2BESaCL4VDXuwxEd5uFb2NeGnn9w69zys="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
]
+
description = "A cover letter template with modern Sans font for job applications and other formal letters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/typst-coverletter"
+
+
[modernpro-coverletter."0.0.4"]
+
url = "https://packages.typst.org/preview/modernpro-coverletter-0.0.4.tar.gz"
+
hash = "sha256-HqZg4MNsU9KN2XXovsXg0V8bOZQcd6uSnsgtG+iAkbo="
+
typstDeps = [
+
"fontawesome_0_4_0",
+
]
+
description = "A cover letter template with modern Sans font for job applications and other formal letters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/typst-coverletter"
+
+
[modernpro-coverletter."0.0.3"]
+
url = "https://packages.typst.org/preview/modernpro-coverletter-0.0.3.tar.gz"
+
hash = "sha256-6ojz1CO/+9MJmgx0kYi+DbFmRosG1oPx3VW+oZ+VNBk="
+
typstDeps = [
+
"fontawesome_0_4_0",
+
]
+
description = "A cover letter template with modern Sans font for job applications and other formal letters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/typst-coverletter"
+
+
[modernpro-coverletter."0.0.2"]
+
url = "https://packages.typst.org/preview/modernpro-coverletter-0.0.2.tar.gz"
+
hash = "sha256-ifEX/vWdY5Qrro3ODBJfS7QtnicQuJhbMva+mymvQaY="
+
typstDeps = []
+
description = "A cover letter template with modern Sans font for job applications and other formal letters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/typst-coverletter"
+
+
[modernpro-coverletter."0.0.1"]
+
url = "https://packages.typst.org/preview/modernpro-coverletter-0.0.1.tar.gz"
+
hash = "sha256-CLeuxEL1/ex2AiizVmvGU6UWt6IH+wK0xadSecDjlF8="
+
typstDeps = []
+
description = "A cover letter template with modern Sans font for job applications and other formal letters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/typst-coverletter"
+
+
[modernpro-cv."1.1.0"]
+
url = "https://packages.typst.org/preview/modernpro-cv-1.1.0.tar.gz"
+
hash = "sha256-PUOQdjENPiO7uCKzPhvgk5BV5RtlCwKl+VYvZOehDEA="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
]
+
description = "A CV template inspired by Deedy-Resume"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-CV-Resume"
+
+
[modernpro-cv."1.0.2"]
+
url = "https://packages.typst.org/preview/modernpro-cv-1.0.2.tar.gz"
+
hash = "sha256-bMceFMzyoASd9IoI6wF06WVe7UpV7E6XgrXYOdSj45Y="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
]
+
description = "A CV template inspired by Deedy-Resume"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-CV-Resume"
+
+
[modernpro-cv."1.0.1"]
+
url = "https://packages.typst.org/preview/modernpro-cv-1.0.1.tar.gz"
+
hash = "sha256-zcZ1cV9svz96qdM+DEoNSF1hKhmMUE6jLSkdAGOK90Y="
+
typstDeps = []
+
description = "A CV template inspired by Deedy-Resume"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-CV-Resume"
+
+
[modernpro-cv."1.0.0"]
+
url = "https://packages.typst.org/preview/modernpro-cv-1.0.0.tar.gz"
+
hash = "sha256-mPEdwgp1URMPngCIbDWwK+rxkDTtZsAEgi16Zdc2hu8="
+
typstDeps = []
+
description = "A CV template inspired by Deedy-Resume"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-CV-Resume"
+
+
[modpattern."0.1.0"]
+
url = "https://packages.typst.org/preview/modpattern-0.1.0.tar.gz"
+
hash = "sha256-v6B3MyZ2A15rjM/vQVrcViYNIduoW08KzrYyq9tkTRw="
+
typstDeps = []
+
description = "Easily create patterns in typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ludwig-austermann/modpattern"
+
+
[muchpdf."0.1.1"]
+
url = "https://packages.typst.org/preview/muchpdf-0.1.1.tar.gz"
+
hash = "sha256-E1ixacLZmArz2m9vPXEQDnvzqon2lsfyztMUOVxeNks="
+
typstDeps = []
+
description = "Include PDF images in your Typst document"
+
license = [
+
"AGPL-3.0-or-later",
+
]
+
homepage = "https://github.com/frozolotl/muchpdf"
+
+
[muchpdf."0.1.0"]
+
url = "https://packages.typst.org/preview/muchpdf-0.1.0.tar.gz"
+
hash = "sha256-GcdDYR1qvFH+aBawQ1KlAzHlMItwlGK/X24DyRxjPAo="
+
typstDeps = []
+
description = "Include PDF images in your Typst document"
+
license = [
+
"AGPL-3.0-or-later",
+
]
+
homepage = "https://github.com/frozolotl/muchpdf"
+
+
[name-it."0.1.2"]
+
url = "https://packages.typst.org/preview/name-it-0.1.2.tar.gz"
+
hash = "sha256-Pdz3NnF03i37t8k7rmS29MEf4oRW2j0eqQPipyAmw7w="
+
typstDeps = []
+
description = "Get the English names of integers"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/RubixDev/typst-name-it"
+
+
[name-it."0.1.1"]
+
url = "https://packages.typst.org/preview/name-it-0.1.1.tar.gz"
+
hash = "sha256-cDX4Q51rAh9IkGqKVPBTrXuPc4qXtJdqUEL6i+jR2N4="
+
typstDeps = []
+
description = "Get the English names of integers"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/RubixDev/typst-name-it"
+
+
[name-it."0.1.0"]
+
url = "https://packages.typst.org/preview/name-it-0.1.0.tar.gz"
+
hash = "sha256-SEXpMTTVxh5+9CNzcG7551yUKKddAXNJ7cByJd7NRf8="
+
typstDeps = []
+
description = "Get the English names of integers"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/RubixDev/typst-name-it"
+
+
[nassi."0.1.2"]
+
url = "https://packages.typst.org/preview/nassi-0.1.2.tar.gz"
+
hash = "sha256-4I3NUThdU/rDPz2yUd6XJ+7gHUBWuOCBwcG5Dg870fE="
+
typstDeps = [
+
"cetz_0_3_0",
+
]
+
description = "Draw Nassi-Shneiderman diagrams (Struktogramme) with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-nassi"
+
+
[nassi."0.1.1"]
+
url = "https://packages.typst.org/preview/nassi-0.1.1.tar.gz"
+
hash = "sha256-m3wHfIMBZd1cEXGGXgj2JFRaLgitIVZiEo79wFeBAAI="
+
typstDeps = [
+
"cetz_0_2_2",
+
]
+
description = "Draw Nassi-Shneiderman diagrams (Struktogramme) with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-nassi"
+
+
[nassi."0.1.0"]
+
url = "https://packages.typst.org/preview/nassi-0.1.0.tar.gz"
+
hash = "sha256-xyF0/IROGnj+zGJ0uwnfknLkWZk+wFaK6R2hjPz4XXc="
+
typstDeps = [
+
"cetz_0_2_2",
+
]
+
description = "Draw Nassi-Shneiderman diagrams (Struktogramme) with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-nassi"
+
+
[natrix."0.1.0"]
+
url = "https://packages.typst.org/preview/natrix-0.1.0.tar.gz"
+
hash = "sha256-bhlqRCIW4islBouuUq8GabsUrZRYKWLASImuZKoKowg="
+
typstDeps = []
+
description = "Natural and consistent matrix for typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/Enter-tainer/natrix"
+
+
[ncku-later."0.1.0"]
+
url = "https://packages.typst.org/preview/ncku-later-0.1.0.tar.gz"
+
hash = "sha256-/YMnKpZsVNcuKgtxzKhbU4rtCiahuOBwBpK0CDYzmHQ="
+
typstDeps = []
+
description = "A Thesis/Dissertation Template written in Typst for National Cheng Kung University"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Haouo/NCKU-Thesis-Typst"
+
+
[neoplot."0.0.3"]
+
url = "https://packages.typst.org/preview/neoplot-0.0.3.tar.gz"
+
hash = "sha256-zkXZL1Ed9oBVGiuS+pMrT94XFmAFVBIHxdOa6NePXj4="
+
typstDeps = []
+
description = "Gnuplot in Typst"
+
license = [
+
"BSD-3-Clause",
+
]
+
homepage = "https://github.com/KNnut/neoplot"
+
+
[neoplot."0.0.2"]
+
url = "https://packages.typst.org/preview/neoplot-0.0.2.tar.gz"
+
hash = "sha256-mmZoISRv8MdtJaAaBDiJGl1k2ZebQm1JXz7lTwPh3Bs="
+
typstDeps = []
+
description = "Gnuplot in Typst"
+
license = [
+
"BSD-3-Clause",
+
]
+
homepage = "https://github.com/KNnut/neoplot"
+
+
[neoplot."0.0.1"]
+
url = "https://packages.typst.org/preview/neoplot-0.0.1.tar.gz"
+
hash = "sha256-OSepnSkIlxajGKHmotRKEhIghTpeDhwa+/KxFFRav4k="
+
typstDeps = []
+
description = "Gnuplot in Typst"
+
license = [
+
"BSD-3-Clause",
+
]
+
homepage = "https://github.com/KNnut/neoplot"
+
+
[nifty-ntnu-thesis."0.1.2"]
+
url = "https://packages.typst.org/preview/nifty-ntnu-thesis-0.1.2.tar.gz"
+
hash = "sha256-DGdb13aNzB6gB1x9icpxgcZgPnnC1oQXl0vhjwNedkc="
+
typstDeps = [
+
"physica_0_9_4",
+
"subpar_0_2_0",
+
]
+
description = "An NTNU thesis template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/saimnaveediqbal/thesis-NTNU-typst"
+
+
[nifty-ntnu-thesis."0.1.1"]
+
url = "https://packages.typst.org/preview/nifty-ntnu-thesis-0.1.1.tar.gz"
+
hash = "sha256-KdohfSRJ+Fl5U7gwxM7kv29eNRE22Xa2YINf6LDP/Bk="
+
typstDeps = [
+
"physica_0_9_3",
+
"subpar_0_1_1",
+
]
+
description = "An NTNU thesis template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/saimnaveediqbal/thesis-NTNU-typst"
+
+
[nifty-ntnu-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/nifty-ntnu-thesis-0.1.0.tar.gz"
+
hash = "sha256-dGh2H6gqQSGZ2w1irkyBA34RtXr3HsQ+UJB57LtRSxE="
+
typstDeps = [
+
"physica_0_9_3",
+
"subpar_0_1_1",
+
]
+
description = "An NTNU thesis template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/saimnaveediqbal/thesis-NTNU-typst"
+
+
[nonsense."0.1.0"]
+
url = "https://packages.typst.org/preview/nonsense-0.1.0.tar.gz"
+
hash = "sha256-MhY+xzfZ3HcdEd7NFVOIeGoip9+xZBTP4qt+Jo12lI4="
+
typstDeps = []
+
description = "Generate nonsensical math papers or sections of them"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/sylvanfranklin/nonsense"
+
+
[nordic."0.1.0"]
+
url = "https://packages.typst.org/preview/nordic-0.1.0.tar.gz"
+
hash = "sha256-11CY9HI9a1EbEoif8tO5FsvBjH4IwgcdDKRsEeJU7/0="
+
typstDeps = []
+
description = "Nordic color theme"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/nordic-typst"
+
+
[not-jku-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/not-jku-thesis-0.1.0.tar.gz"
+
hash = "sha256-CdIyVXvRx0S7kNPPf/3cWpRICwnHOHB8QhtcSuLDPDQ="
+
typstDeps = [
+
"cheq_0_1_0",
+
"glossarium_0_2_6",
+
"wordometer_0_1_2",
+
"wrap-it_0_1_0",
+
]
+
description = "Customizable not official template for a thesis at the JKU, derived from a template created by Fabian Scherer <https://www.linkedin.com/in/fabian-scherer-de/> with Leon Weber in an advisory role"
+
license = [
+
"MIT-0",
+
]
+
+
[not-tudabeamer-2023."0.2.0"]
+
url = "https://packages.typst.org/preview/not-tudabeamer-2023-0.2.0.tar.gz"
+
hash = "sha256-ypfYI9XO11k8I7HIivpA/4M7L/cVmMyQaqVjRpC3V+k="
+
typstDeps = [
+
"touying_0_6_1",
+
]
+
description = "Not the TU Darmstadt Beamer 2023 template"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/mohe2015/not-tudabeamer-2023"
+
+
[not-tudabeamer-2023."0.1.0"]
+
url = "https://packages.typst.org/preview/not-tudabeamer-2023-0.1.0.tar.gz"
+
hash = "sha256-uBOEeuXusrub7j7uBGD0inHThOUPwklTkY90bhEN5e4="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "Not the TU Darmstadt Beamer 2023 template"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/mohe2015/not-tudabeamer-2023"
+
+
[note-me."0.5.0"]
+
url = "https://packages.typst.org/preview/note-me-0.5.0.tar.gz"
+
hash = "sha256-ayFptayKIUIMeSxBI/LJtrzCTTd0uhbGek9VM0CFnMY="
+
typstDeps = []
+
description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlandiaYingman/note-me"
+
+
[note-me."0.4.0"]
+
url = "https://packages.typst.org/preview/note-me-0.4.0.tar.gz"
+
hash = "sha256-4j+KXRrzR5+EEWvbOVB0YwOYaVqW+fXNDtTbq+EwvU8="
+
typstDeps = []
+
description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlandiaYingman/note-me"
+
+
[note-me."0.3.0"]
+
url = "https://packages.typst.org/preview/note-me-0.3.0.tar.gz"
+
hash = "sha256-fZGBHdcb8r4jYtnNB1JqKFwDZe9bw8YcGsHCkGK/2J8="
+
typstDeps = []
+
description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlandiaYingman/note-me"
+
+
[note-me."0.2.1"]
+
url = "https://packages.typst.org/preview/note-me-0.2.1.tar.gz"
+
hash = "sha256-8nCy9IBKRyS0rHduIXT/Fliqx+lIVeb1T4njsd759g4="
+
typstDeps = []
+
description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlandiaYingman/note-me"
+
+
[note-me."0.1.1"]
+
url = "https://packages.typst.org/preview/note-me-0.1.1.tar.gz"
+
hash = "sha256-tyRmooIGRBirjyEnwDSxwcieXyFj1jpijJ0/VLEsUs0="
+
typstDeps = []
+
description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlandiaYingman/note-me"
+
+
[note-me."0.1.0"]
+
url = "https://packages.typst.org/preview/note-me-0.1.0.tar.gz"
+
hash = "sha256-YAhDFyvQjaIFlBtbQjduKv0xppceiNSv7IRkpJZoq5k="
+
typstDeps = []
+
description = "Adds GitHub-style Admonitions (Alerts) to Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlandiaYingman/note-me"
+
+
[noteworthy."0.2.0"]
+
url = "https://packages.typst.org/preview/noteworthy-0.2.0.tar.gz"
+
hash = "sha256-PLIiXffG9EZ6fgP6HyUQv+wqNNZ0y6+TrKkjmT8zjzg="
+
typstDeps = [
+
"showybox_2_0_4",
+
"theoretic_0_1_1",
+
]
+
description = "A Typst template for creating class notes especially for Mathematics"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tarunjana/noteworthy"
+
+
[noteworthy."0.1.0"]
+
url = "https://packages.typst.org/preview/noteworthy-0.1.0.tar.gz"
+
hash = "sha256-78W5FDEQqjSEOplFGxrr8RAw6q1ez7yCdw5gy26rbDk="
+
typstDeps = [
+
"showybox_2_0_3",
+
"theoretic_0_1_1",
+
]
+
description = "A Typst template for creating class notes especially for Mathematics"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tarunjana/noteworthy"
+
+
[now-radboud-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/now-radboud-thesis-0.1.0.tar.gz"
+
hash = "sha256-W/FUD0C7nUw70CviXnzJsAPOr6wZDNW8eq1dLIv5rFQ="
+
typstDeps = []
+
description = "Thesis template for Radboud University"
+
license = [
+
"BSD-2-Clause",
+
]
+
homepage = "https://github.com/Jorritboer/radboud-thesis-typst"
+
+
[nth."1.0.1"]
+
url = "https://packages.typst.org/preview/nth-1.0.1.tar.gz"
+
hash = "sha256-3R/rIGPP8rHdZZfmBJ7mJgkRQPZEtco+YGlNqGrwQYY="
+
typstDeps = []
+
description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/extua/nth"
+
+
[nth."1.0.0"]
+
url = "https://packages.typst.org/preview/nth-1.0.0.tar.gz"
+
hash = "sha256-64Rwxvk8s537OBrChb3mMHmVUS3k64CHk8Pfy8Gs5fg="
+
typstDeps = []
+
description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/extua/nth"
+
+
[nth."0.2.0"]
+
url = "https://packages.typst.org/preview/nth-0.2.0.tar.gz"
+
hash = "sha256-5eB1aVPm/fXtMRZnMpvR5Vd3410VDjtRX1XRH0TWQas="
+
typstDeps = []
+
description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/extua/nth"
+
+
[nth."0.1.0"]
+
url = "https://packages.typst.org/preview/nth-0.1.0.tar.gz"
+
hash = "sha256-5b3CXzoUgmzSPkIS0l6ea0y9KdLCAuQ5G5EvWXA3k44="
+
typstDeps = []
+
description = "Add english ordinals to numbers, eg. 1st, 2nd, 3rd, 4th"
+
license = [
+
"MIT-0",
+
]
+
+
[nulite."0.1.0"]
+
url = "https://packages.typst.org/preview/nulite-0.1.0.tar.gz"
+
hash = "sha256-K67G/vo5Fbm43MDi0TxNIhhktSTzjayEeyrbcejND84="
+
typstDeps = [
+
"ctxjs_0_1_1",
+
]
+
description = "Generate charts with vegalite"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/j-mueller/typst-vegalite"
+
+
[numberingx."0.0.1"]
+
url = "https://packages.typst.org/preview/numberingx-0.0.1.tar.gz"
+
hash = "sha256-js60ARCG8xaVtbF0iVm9Dx+nzISfNni78UUHyhi51Hw="
+
typstDeps = []
+
description = "Extended numbering patterns using the CSS Counter Styles spec"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/edhebi/numberingx"
+
+
[numblex."0.2.0"]
+
url = "https://packages.typst.org/preview/numblex-0.2.0.tar.gz"
+
hash = "sha256-cGQUhBxOwzUqcY86mOwcPHow+c2HgjgMJQToi5UYfic="
+
typstDeps = [
+
"badgery_0_1_1",
+
"pinit_0_1_4",
+
"showybox_2_0_1",
+
]
+
description = "Numbering helper"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ParaN3xus/numblex"
+
+
[numblex."0.1.1"]
+
url = "https://packages.typst.org/preview/numblex-0.1.1.tar.gz"
+
hash = "sha256-K6ehUwfvHZI5R8rWku4eseKECyuz/vEfCXiIckP19mg="
+
typstDeps = []
+
description = "Numbering helper"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ParaN3xus/numblex"
+
+
[numblex."0.1.0"]
+
url = "https://packages.typst.org/preview/numblex-0.1.0.tar.gz"
+
hash = "sha256-jkwCizbzyNR7vhYIUTgnhOWhDpfRW7RvVUaStexPZl8="
+
typstDeps = []
+
description = "Numbering helper"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ParaN3xus/numblex"
+
+
[numbly."0.1.0"]
+
url = "https://packages.typst.org/preview/numbly-0.1.0.tar.gz"
+
hash = "sha256-82JgsFVWc6xu/bCnP2SfT5nqaKANBrvE7tTxRM71pfc="
+
typstDeps = []
+
description = "A package that helps you to specify different numbering formats for different levels of headings"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/flaribbit/numbly"
+
+
[numty."0.0.5"]
+
url = "https://packages.typst.org/preview/numty-0.0.5.tar.gz"
+
hash = "sha256-hQ0G8J6ZVCrBxbyA4agWBepGHxLf81qCLxw592UuqO0="
+
typstDeps = []
+
description = "Numeric Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PabloRuizCuevas/numty"
+
+
[numty."0.0.4"]
+
url = "https://packages.typst.org/preview/numty-0.0.4.tar.gz"
+
hash = "sha256-Fydu/lJUyf7sG1hrL12Maj2W8nHdXmESfnyHf5U5qkQ="
+
typstDeps = []
+
description = "Numeric Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PabloRuizCuevas/numty"
+
+
[numty."0.0.3"]
+
url = "https://packages.typst.org/preview/numty-0.0.3.tar.gz"
+
hash = "sha256-dGUDPKsn0BqzYQsNzpth60DgnK75KZyn/H3HOeA3tW4="
+
typstDeps = []
+
description = "Numeric Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PabloRuizCuevas/numty"
+
+
[numty."0.0.2"]
+
url = "https://packages.typst.org/preview/numty-0.0.2.tar.gz"
+
hash = "sha256-X5tao0vBsJvj+oUArvspQoPFz50o2aEfVgg+0h9wwQI="
+
typstDeps = []
+
description = "Numeric Typst"
+
license = [
+
"MIT",
+
]
+
+
[numty."0.0.1"]
+
url = "https://packages.typst.org/preview/numty-0.0.1.tar.gz"
+
hash = "sha256-LsfMxvUV9psKf2nH/dkbmrG2oGGPZJ+RU+K6gBDsBqA="
+
typstDeps = []
+
description = "Numeric Typst"
+
license = [
+
"MIT",
+
]
+
+
[oasis-align."0.2.0"]
+
url = "https://packages.typst.org/preview/oasis-align-0.2.0.tar.gz"
+
hash = "sha256-XB8YyrcSP3+jHSik+aE8JybL8Pncju/2MKW3MC85TTA="
+
typstDeps = []
+
description = "Cleanly place content side by side with equal heights using automatic content sizing"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jdpieck/oasis-align"
+
+
[oasis-align."0.1.0"]
+
url = "https://packages.typst.org/preview/oasis-align-0.1.0.tar.gz"
+
hash = "sha256-P8zM9DvzxAtd+wMZ3Dsv73w22c2GimAhL6N1yP3oynI="
+
typstDeps = []
+
description = "Cleanly place content side by side with equal heights using automatic content sizing"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jdpieck/oasis-align"
+
+
[obsidius."0.1.1"]
+
url = "https://packages.typst.org/preview/obsidius-0.1.1.tar.gz"
+
hash = "sha256-+kc5cNaQMYbvMlnk7uROWS4bDMkHEiCPQsWOlzjJqXA="
+
typstDeps = [
+
"cheq_0_2_2",
+
"obsidius_0_1_0",
+
]
+
description = "Modern template for study notes"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/l0drex/obsidius"
+
+
[obsidius."0.1.0"]
+
url = "https://packages.typst.org/preview/obsidius-0.1.0.tar.gz"
+
hash = "sha256-kc3dWe/TSJI7i80ZHAmBqmqwXex6doaCvKicF71xblc="
+
typstDeps = [
+
"cheq_0_2_2",
+
]
+
description = "Modern template for study notes"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/l0drex/obsidius"
+
+
[octique."0.1.0"]
+
url = "https://packages.typst.org/preview/octique-0.1.0.tar.gz"
+
hash = "sha256-rBU06k0iuTMRfSD4s+AsgdVyhvonKzKihh1OCGqvs1w="
+
typstDeps = []
+
description = "GitHub Octicons for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/0x6b/typst-octique"
+
+
[october."1.0.0"]
+
url = "https://packages.typst.org/preview/october-1.0.0.tar.gz"
+
hash = "sha256-WuWV1/OseIvGufcqq7BFO4ynII3V3Q9dI9QDJfuI7bE="
+
typstDeps = []
+
description = "Simple printable year calendar"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/extua/october"
+
+
[ofbnote."0.2.0"]
+
url = "https://packages.typst.org/preview/ofbnote-0.2.0.tar.gz"
+
hash = "sha256-oLcDhMLAwqJ3vAr1pdzYJamLTju8FDWbEwMr/ib6zQc="
+
typstDeps = [
+
"showybox_2_0_1",
+
]
+
description = "A document template using French Office for biodiversity design guidelines"
+
license = [
+
"MIT-0",
+
]
+
+
[one-liner."0.2.0"]
+
url = "https://packages.typst.org/preview/one-liner-0.2.0.tar.gz"
+
hash = "sha256-bl5orWMBgaPJl9IGU+kPBCOGdtJC2AryB3351ZoJrWw="
+
typstDeps = []
+
description = "Automatically adjust the text size to make it fit on one line filling the available space"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/mtolk/one-liner"
+
+
[one-liner."0.1.0"]
+
url = "https://packages.typst.org/preview/one-liner-0.1.0.tar.gz"
+
hash = "sha256-f7aLyhq5sFVjKsmUFpMbqqXA88a5OdnOf/iNMXwiAH0="
+
typstDeps = []
+
description = "Automatically adjust the text size to make it fit on one line filling the available space"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/mtolk/one-liner"
+
+
[optimal-ovgu-thesis."0.1.1"]
+
url = "https://packages.typst.org/preview/optimal-ovgu-thesis-0.1.1.tar.gz"
+
hash = "sha256-O9pjyJ5SQ8cWtXAQt9x/DqtGDijqqwvDKlreCNT2bx4="
+
typstDeps = []
+
description = "A thesis template for Otto von Guericke University Magdeburg"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/v411e/optimal-ovgu-thesis"
+
+
[optimal-ovgu-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/optimal-ovgu-thesis-0.1.0.tar.gz"
+
hash = "sha256-vd9BW0EA9RlV3bkrrStjgPrZRv3bBdCbNLySy5tNNcg="
+
typstDeps = []
+
description = "A thesis template for Otto von Guericke University Magdeburg"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/v411e/optimal-ovgu-thesis"
+
+
[orange-book."0.6.0"]
+
url = "https://packages.typst.org/preview/orange-book-0.6.0.tar.gz"
+
hash = "sha256-ZAuCUReYMujh/T7h2A7zEZER1R66IUcVbfCgnSq89Sg="
+
typstDeps = []
+
description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/flavio20002/typst-orange-template"
+
+
[orange-book."0.5.0"]
+
url = "https://packages.typst.org/preview/orange-book-0.5.0.tar.gz"
+
hash = "sha256-x4rxR2mF02lhEl1XV+eS97kyzETLi3O6bjvgmbnkxHY="
+
typstDeps = []
+
description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/flavio20002/typst-orange-template"
+
+
[orange-book."0.4.0"]
+
url = "https://packages.typst.org/preview/orange-book-0.4.0.tar.gz"
+
hash = "sha256-civayGQHNndzKhwlU+oqitMcXiwLLqpofYkRzC5xsOQ="
+
typstDeps = []
+
description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/flavio20002/typst-orange-template"
+
+
[orange-book."0.3.0"]
+
url = "https://packages.typst.org/preview/orange-book-0.3.0.tar.gz"
+
hash = "sha256-j90flAvBlWhQSGKMG5GBuNFnAnbnbaazIHfR9gcSAWw="
+
typstDeps = []
+
description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/flavio20002/typst-orange-template"
+
+
[orange-book."0.2.0"]
+
url = "https://packages.typst.org/preview/orange-book-0.2.0.tar.gz"
+
hash = "sha256-tVpcEc97zeAULP6DTVisYq0H46wxhr+66Eh1z5X4UXM="
+
typstDeps = []
+
description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/flavio20002/typst-orange-template"
+
+
[orange-book."0.1.0"]
+
url = "https://packages.typst.org/preview/orange-book-0.1.0.tar.gz"
+
hash = "sha256-O9WUlDruwx/ZbBmxgX3WiYO9H5QLG9VtSoLRmYEfY2Y="
+
typstDeps = []
+
description = "A book template inspired by The Legrand Orange Book of Mathias Legrand and Vel"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/flavio20002/typst-orange-template"
+
+
[ori."0.2.2"]
+
url = "https://packages.typst.org/preview/ori-0.2.2.tar.gz"
+
hash = "sha256-2MWM9GPjEyOQXpcAzDXrsEZxNtsaAvtGCm+cVOx5j9o="
+
typstDeps = [
+
"cmarker_0_1_2",
+
"mitex_0_2_5",
+
"numbly_0_1_0",
+
"tablem_0_2_0",
+
"theorion_0_3_2",
+
]
+
description = "Simple enough but expressive template for notes, reports, and documents"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-ori"
+
+
[ori."0.2.1"]
+
url = "https://packages.typst.org/preview/ori-0.2.1.tar.gz"
+
hash = "sha256-P+RGsouE8PW3UkZebAE7p35UC2tm3vcfcKkG1VFKfaY="
+
typstDeps = [
+
"cmarker_0_1_2",
+
"mitex_0_2_5",
+
"numbly_0_1_0",
+
"tablem_0_2_0",
+
"theorion_0_3_1",
+
]
+
description = "Simple enough but expressive template for notes, reports, and documents"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-ori"
+
+
[ori."0.2.0"]
+
url = "https://packages.typst.org/preview/ori-0.2.0.tar.gz"
+
hash = "sha256-xRBF1KY+n2+3csfasHtzeVwh+uZYcwGFgJTrTkj/7D0="
+
typstDeps = [
+
"cmarker_0_1_2",
+
"mitex_0_2_5",
+
"numbly_0_1_0",
+
"tablem_0_2_0",
+
"theorion_0_3_0",
+
]
+
description = "Simple enough but expressive template for notes, reports, and documents"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-ori"
+
+
[ori."0.1.0"]
+
url = "https://packages.typst.org/preview/ori-0.1.0.tar.gz"
+
hash = "sha256-9A3v2K1rLQRmLEcK6cPdCpLuGCcmNwJlzmtIianbINs="
+
typstDeps = [
+
"cmarker_0_1_2",
+
"mitex_0_2_5",
+
"numbly_0_1_0",
+
"tablem_0_2_0",
+
"theorion_0_2_0",
+
]
+
description = "Simple enough but expressive template for notes, reports, and documents"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-ori"
+
+
[ourchat."0.1.0"]
+
url = "https://packages.typst.org/preview/ourchat-0.1.0.tar.gz"
+
hash = "sha256-2fY2FGTSaUD9HDdI1A3SSD20l0nKQKUzcc99z03/deg="
+
typstDeps = []
+
description = "Forge wonderful chat messages"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/QuadnucYard/ourchat-typ"
+
+
[ouset."0.2.0"]
+
url = "https://packages.typst.org/preview/ouset-0.2.0.tar.gz"
+
hash = "sha256-UjcQaPItxwmC1LgZzNZRIUP98zXV4eZ2du/8b3t7uOM="
+
typstDeps = []
+
description = "Package providing over- and underset functions for math mode"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ludwig-austermann/typst-ouset"
+
+
[ouset."0.1.1"]
+
url = "https://packages.typst.org/preview/ouset-0.1.1.tar.gz"
+
hash = "sha256-SyFqeQxDWIVA6PmBJ4cqrqOVcvezJwkn0maVzDszvDQ="
+
typstDeps = []
+
description = "Package providing over- and underset functions for math mode"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ludwig-austermann/typst-ouset"
+
+
[ouset."0.1.0"]
+
url = "https://packages.typst.org/preview/ouset-0.1.0.tar.gz"
+
hash = "sha256-y9VWwZzWE6gwQSdzVZdyEcf/plIaGu+VdguBRhZH8Ms="
+
typstDeps = []
+
description = "Package providing over- and underset functions for math mode"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ludwig-austermann/typst-ouset"
+
+
[outline-summaryst."0.1.0"]
+
url = "https://packages.typst.org/preview/outline-summaryst-0.1.0.tar.gz"
+
hash = "sha256-GXzDNrAvyOmiIvWxnMB+lqdkYGTzNUxC5uTAjsbXv7Q="
+
typstDeps = []
+
description = "A basic template for including a summary for each entry in the table of contents. Useful for writing books"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/aarneng/Outline-Summary"
+
+
[outrageous."0.4.0"]
+
url = "https://packages.typst.org/preview/outrageous-0.4.0.tar.gz"
+
hash = "sha256-cBUYjaxeeRbZhoLeLPmLM/mUxeutjG5QOmBqslJUeO8="
+
typstDeps = [
+
"i-figured_0_2_4",
+
]
+
description = "Easier customization of outline entries"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/RubixDev/typst-outrageous"
+
+
[outrageous."0.3.0"]
+
url = "https://packages.typst.org/preview/outrageous-0.3.0.tar.gz"
+
hash = "sha256-OGHBxZgEoelyKN9GRFjno4BD85/szsdcNnT6tghdR/Y="
+
typstDeps = []
+
description = "Easier customization of outline entries"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/RubixDev/typst-outrageous"
+
+
[outrageous."0.2.0"]
+
url = "https://packages.typst.org/preview/outrageous-0.2.0.tar.gz"
+
hash = "sha256-VxN1ik+CE6UJxP2ZSUSdIJxCmMraoa5nvYvW3Fet0ls="
+
typstDeps = []
+
description = "Easier customization of outline entries"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/RubixDev/typst-outrageous"
+
+
[outrageous."0.1.0"]
+
url = "https://packages.typst.org/preview/outrageous-0.1.0.tar.gz"
+
hash = "sha256-zzCm2YnsAkrLFcxIatITP8LEt8nZHhW11WOK55RdsGQ="
+
typstDeps = []
+
description = "Easier customization of outline entries"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/RubixDev/typst-outrageous"
+
+
[owlbear."0.0.1"]
+
url = "https://packages.typst.org/preview/owlbear-0.0.1.tar.gz"
+
hash = "sha256-hOzglktgOt9SDguI8hxIv2KS2pK9yLSFIjw9NEaPWmI="
+
typstDeps = [
+
"droplet_0_3_1",
+
]
+
description = "Create fancy-looking homebrewn Dungeons and Dragons 2024 edition"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://gitlab.com/doggobit/typst-owlbear"
+
+
[oxifmt."0.2.1"]
+
url = "https://packages.typst.org/preview/oxifmt-0.2.1.tar.gz"
+
hash = "sha256-Cl6Y34d3fi6aB07HIk4zsyy0ucHgWCId0yMVxE4DnWw="
+
typstDeps = []
+
description = "Convenient Rust-like string formatting in Typst"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/PgBiel/typst-oxifmt"
+
+
[oxifmt."0.2.0"]
+
url = "https://packages.typst.org/preview/oxifmt-0.2.0.tar.gz"
+
hash = "sha256-X9AgFOy8ireDrH4Hnvmo2o7X9maMgrw/mkgX9jGcJvc="
+
typstDeps = []
+
description = "Convenient Rust-like string formatting in Typst"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/PgBiel/typst-oxifmt"
+
+
[paddling-tongji-thesis."0.1.1"]
+
url = "https://packages.typst.org/preview/paddling-tongji-thesis-0.1.1.tar.gz"
+
hash = "sha256-Td3duVmDepTzdrAo8nJNF1n8fsu8oTt45kNFvAkHNi8="
+
typstDeps = [
+
"algo_0_3_3",
+
"i-figured_0_2_2",
+
"tablex_0_0_6",
+
]
+
description = "同济大学本科生毕业设计论文模板 | Tongji University Undergraduate Thesis Template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TJ-CSCCG/tongji-undergrad-thesis-typst.git"
+
+
[parcio-thesis."0.2.1"]
+
url = "https://packages.typst.org/preview/parcio-thesis-0.2.1.tar.gz"
+
hash = "sha256-XDh2M16Hlg6EOl9ATbxnEEqrSX1G2RzymYB+gQPB5TU="
+
typstDeps = [
+
"drafting_0_2_2",
+
"subpar_0_2_1",
+
]
+
description = "A simple thesis template based on the ParCIO working group at OvGU Magdeburg"
+
license = [
+
"0BSD",
+
]
+
homepage = "https://github.com/xkevio/parcio-typst/"
+
+
[parcio-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/parcio-thesis-0.2.0.tar.gz"
+
hash = "sha256-6wia86GXraLqTDm08H1RGT+dkOYTISO3Jo8QUVl9aO0="
+
typstDeps = [
+
"drafting_0_2_2",
+
"subpar_0_2_1",
+
]
+
description = "A simple thesis template based on the ParCIO working group at OvGU Magdeburg"
+
license = [
+
"0BSD",
+
]
+
homepage = "https://github.com/xkevio/parcio-typst/"
+
+
[parcio-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/parcio-thesis-0.1.0.tar.gz"
+
hash = "sha256-l0x4+MvU3ATvD2YKndefrkd3p3jr+EOq+d1YTB4WXRA="
+
typstDeps = [
+
"drafting_0_2_0",
+
"subpar_0_1_1",
+
]
+
description = "A simple thesis template based on the ParCIO working group at OvGU Magdeburg"
+
license = [
+
"0BSD",
+
]
+
homepage = "https://github.com/xkevio/parcio-typst/"
+
+
[paris-saclay-thesis-flat."1.0.2"]
+
url = "https://packages.typst.org/preview/paris-saclay-thesis-flat-1.0.2.tar.gz"
+
hash = "sha256-1r97t7XmOmgEWw6HdpTYdI8UCLkaAykHgon+WsfbTyI="
+
typstDeps = [
+
"colorful-boxes_1_4_1",
+
]
+
description = "An unofficial, flat-design template for Paris-Saclay University theses"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/sebmestrallet/typst-paris-saclay-thesis-flat"
+
+
[pavemat."0.2.0"]
+
url = "https://packages.typst.org/preview/pavemat-0.2.0.tar.gz"
+
hash = "sha256-ioR1YD0kpmqmheXasyI1NrbpdjtAOGvzkjGOOkGUuKk="
+
typstDeps = []
+
description = "Style matrices with custom paths, strokes and fills for appealing visualizations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/QuadnucYard/pavemat"
+
+
[pavemat."0.1.0"]
+
url = "https://packages.typst.org/preview/pavemat-0.1.0.tar.gz"
+
hash = "sha256-lQqV7X4ChIhLPujii4xIBBLSiBcm1+SP4dcHCieG4hI="
+
typstDeps = []
+
description = "Style matrices with custom paths, strokes and fills for appealing visualizations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/QuadnucYard/pavemat"
+
+
[peace-of-posters."0.5.4"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.5.4.tar.gz"
+
hash = "sha256-fgOOhaLSCT1wW3lM1hPXlkbOM2FKWvonJWIgsh037O8="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[peace-of-posters."0.5.3"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.5.3.tar.gz"
+
hash = "sha256-xU0w+cGlPxk9FGCoaBS5vc42leK0Yh2iy475NIgiyZU="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[peace-of-posters."0.5.2"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.5.2.tar.gz"
+
hash = "sha256-iwvuUueOqE3RSMXrqVa8+tveTeZOwqc+nlWP8MOH3kE="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[peace-of-posters."0.5.1"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.5.1.tar.gz"
+
hash = "sha256-edmNargI3ipyqWIm/lNlQ8POEq2YMIOFZ5Z5rLmqk2Q="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[peace-of-posters."0.5.0"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.5.0.tar.gz"
+
hash = "sha256-XdH4i70nHlVZE+RIM6cf9yB9AB+AYJGout1pWlC6Sww="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[peace-of-posters."0.4.3"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.4.3.tar.gz"
+
hash = "sha256-5kjqJ1N6IToUqsqrOxLraOTws8iLrH0WO+hIszUHbjQ="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[peace-of-posters."0.4.1"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.4.1.tar.gz"
+
hash = "sha256-cjFib+owp4dA5HUuUZaHBrHI1Y51AacRLoGO8UUUNyo="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[peace-of-posters."0.4.0"]
+
url = "https://packages.typst.org/preview/peace-of-posters-0.4.0.tar.gz"
+
hash = "sha256-6oUFDQnkF3BVMsR4bAIQjwRYFPCrD5rn0isQIeabfWU="
+
typstDeps = []
+
description = "Create scientific posters in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jonaspleyer/peace-of-posters"
+
+
[pesha."0.4.0"]
+
url = "https://packages.typst.org/preview/pesha-0.4.0.tar.gz"
+
hash = "sha256-IsYeDU+O7e4KSTl9+nWJiyRgki3QikYJdoDhZF3kYBQ="
+
typstDeps = []
+
description = "A clean and minimal template for your résumé or CV"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/talal/pesha"
+
+
[pesha."0.3.1"]
+
url = "https://packages.typst.org/preview/pesha-0.3.1.tar.gz"
+
hash = "sha256-kJY03Azmw/vsMn2jv2Y7gtMRFxniodGT6LSOhwgW66g="
+
typstDeps = []
+
description = "A clean and minimal template for your résumé or CV"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/talal/pesha"
+
+
[pesha."0.3.0"]
+
url = "https://packages.typst.org/preview/pesha-0.3.0.tar.gz"
+
hash = "sha256-0jtpMVLhM8sZUkX7wTWFC/l+5ol9TiNwqKJeBY423lg="
+
typstDeps = []
+
description = "A clean and minimal template for your résumé or CV"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/talal/pesha"
+
+
[pesha."0.2.0"]
+
url = "https://packages.typst.org/preview/pesha-0.2.0.tar.gz"
+
hash = "sha256-u8jk2koQiuGLvA6lrbZA9F+JWkvLZEiyyKOQhxECaxs="
+
typstDeps = []
+
description = "A clean and minimal template for your résumé or CV"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/talal/pesha"
+
+
[pesha."0.1.0"]
+
url = "https://packages.typst.org/preview/pesha-0.1.0.tar.gz"
+
hash = "sha256-ZjqLi94c/O9FMD7PEgDRrxrZwQUWFA5ZrL7e+aCRqxg="
+
typstDeps = []
+
description = "A clean and minimal template for your résumé or CV"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/talal/pesha"
+
+
[physica."0.9.5"]
+
url = "https://packages.typst.org/preview/physica-0.9.5.tar.gz"
+
hash = "sha256-A+rbcnST7OvNG8BLKc5I8pyEkEjDeXmOPFq1M7t9ptg="
+
typstDeps = []
+
description = "Math constructs for science and engineering: derivative, differential, vector field, matrix, tensor, Dirac braket, hbar, transpose, conjugate, many operators, and more"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.9.4"]
+
url = "https://packages.typst.org/preview/physica-0.9.4.tar.gz"
+
hash = "sha256-pNFT6hO0/ByZo3Q1WZGfSGP1MJUucNAZMs5w3zPrLPw="
+
typstDeps = []
+
description = "Math constructs for science and engineering: derivative, differential, vector field, matrix, tensor, Dirac braket, hbar, transpose, conjugate, many operators, and more"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.9.3"]
+
url = "https://packages.typst.org/preview/physica-0.9.3.tar.gz"
+
hash = "sha256-4UHvEKA55sTRq+u9R0350h+6AUkCLhPGRzgQeEUJVRA="
+
typstDeps = []
+
description = "Math constructs for science and engineering: derivative, differential, vector field, matrix, tensor, Dirac braket, hbar, transpose, conjugate, many operators, and more"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.9.2"]
+
url = "https://packages.typst.org/preview/physica-0.9.2.tar.gz"
+
hash = "sha256-fxHEdnd1OCU3kODLkIMVwPwVC6LQ8K3Le/tkGbQguZI="
+
typstDeps = []
+
description = "Neat derivative, differential, field, matrix, braket, tensor, hbar, etc"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.9.1"]
+
url = "https://packages.typst.org/preview/physica-0.9.1.tar.gz"
+
hash = "sha256-XFG3GvazqvE5IRnT5UoyKCGfkvn2LkVwfih3vvO1oiY="
+
typstDeps = []
+
description = "Neat derivative, differential, field, matrix, braket, tensor, hbar, etc"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.9.0"]
+
url = "https://packages.typst.org/preview/physica-0.9.0.tar.gz"
+
hash = "sha256-18oFzfgpJS0YcNOAu6pcX132okcrn6DWOYDkbNj4xmo="
+
typstDeps = []
+
description = "Neat derivative, differential, field, matrix, braket, tensor, hbar, etc"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.8.1"]
+
url = "https://packages.typst.org/preview/physica-0.8.1.tar.gz"
+
hash = "sha256-JVjk/d8B3AM/Nyl+qpsbx606oDPPHt6Bg3E+2JaL6PI="
+
typstDeps = []
+
description = "Physics: derivative, differential, field, matrix, braket, tensor, hbar, etc"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.8.0"]
+
url = "https://packages.typst.org/preview/physica-0.8.0.tar.gz"
+
hash = "sha256-4jxEOAbXb81h2T/6zez61zHtcpaqg4lXnebZHelmh+M="
+
typstDeps = []
+
description = "Physics: derivative, differential, field, matrix, braket, tensor, hbar, etc"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[physica."0.7.5"]
+
url = "https://packages.typst.org/preview/physica-0.7.5.tar.gz"
+
hash = "sha256-ONkVdYjOnoR5swv2BS98EspbYUCBW6mpJ0z3DO0yoyc="
+
typstDeps = []
+
description = "Physics: derivative, differential, field, matrix, braket, tensor, etc"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Leedehai/typst-physics"
+
+
[pigmentpedia."0.3.1"]
+
url = "https://packages.typst.org/preview/pigmentpedia-0.3.1.tar.gz"
+
hash = "sha256-/U6/zsw3Vb/JGgsc9lgKeZ1UYnnSv8cZWUtC4wFciyc="
+
typstDeps = []
+
description = "An extensive color library for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/neuralpain/pigmentpedia"
+
+
[pigmentpedia."0.3.0"]
+
url = "https://packages.typst.org/preview/pigmentpedia-0.3.0.tar.gz"
+
hash = "sha256-0zdab6LYDDNAPSxHMAIOCZWra75NAyT/WM3mjwDcr5Y="
+
typstDeps = []
+
description = "An extensive color library for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/neuralpain/pigmentpedia"
+
+
[pigmentpedia."0.1.0"]
+
url = "https://packages.typst.org/preview/pigmentpedia-0.1.0.tar.gz"
+
hash = "sha256-asmgvU8TaextXjNzorfuD9Fvm6vAxzqViTX+EPSjPJU="
+
typstDeps = []
+
description = "An extended color library for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/neuralpain/pigmentpedia"
+
+
[pillar."0.3.1"]
+
url = "https://packages.typst.org/preview/pillar-0.3.1.tar.gz"
+
hash = "sha256-gi7l0nhNtVIFl6iHdmXD1/Rj4C4iGAS95qnjGmz+ZGg="
+
typstDeps = [
+
"zero_0_3_2",
+
]
+
description = "Faster column specifications for tables"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/pillar"
+
+
[pillar."0.3.0"]
+
url = "https://packages.typst.org/preview/pillar-0.3.0.tar.gz"
+
hash = "sha256-bRvlHSdKsEnUiYGSfz4OM4z8DrgCFgkdqqAVF7qEycM="
+
typstDeps = [
+
"zero_0_3_1",
+
]
+
description = "Faster column specifications for tables"
+
license = [
+
"MIT",
+
]
+
+
[pillar."0.2.0"]
+
url = "https://packages.typst.org/preview/pillar-0.2.0.tar.gz"
+
hash = "sha256-qfr/wtd0+49GUiKuJ6gH+tU/uRV5TLjvd9j7a/MTztU="
+
typstDeps = [
+
"zero_0_1_0",
+
]
+
description = "Faster column specifications for tables"
+
license = [
+
"MIT",
+
]
+
+
[pillar."0.1.0"]
+
url = "https://packages.typst.org/preview/pillar-0.1.0.tar.gz"
+
hash = "sha256-9V/AQ37jibzA2MjPmXmXtrue0wtTGhHPRHyNKahDKlA="
+
typstDeps = []
+
description = "Quick and simple column specifications for tables"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/pillar"
+
+
[pinit."0.2.2"]
+
url = "https://packages.typst.org/preview/pinit-0.2.2.tar.gz"
+
hash = "sha256-LrU47e/kXmEF5NIkpV07gNBQb8Rz+T81kiok48RspS4="
+
typstDeps = [
+
"fletcher_0_5_1",
+
"touying_0_5_3",
+
]
+
description = "Relative positioning by pins, especially useful for making slides in typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pinit."0.2.1"]
+
url = "https://packages.typst.org/preview/pinit-0.2.1.tar.gz"
+
hash = "sha256-mQCBKRAxrYpCQNDXkYnxJxLIRimfC4MQbm1fEbN4lWQ="
+
typstDeps = [
+
"fletcher_0_5_1",
+
"touying_0_5_3",
+
]
+
description = "Relative positioning by pins, especially useful for making slides in typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pinit."0.2.0"]
+
url = "https://packages.typst.org/preview/pinit-0.2.0.tar.gz"
+
hash = "sha256-bo+/0Wa7Odv7jx4RVlb4NHWBF9mHqcssvw9TmgeEfgg="
+
typstDeps = [
+
"fletcher_0_5_1",
+
"touying_0_4_2",
+
]
+
description = "Relative positioning by pins, especially useful for making slides in typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pinit."0.1.4"]
+
url = "https://packages.typst.org/preview/pinit-0.1.4.tar.gz"
+
hash = "sha256-FRQWQ8U7DC7uTVndSUKWEKS8MiBsggV8vrg0egBvTrc="
+
typstDeps = [
+
"touying_0_4_0",
+
]
+
description = "Relative positioning by pins, especially useful for making slides in typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pinit."0.1.3"]
+
url = "https://packages.typst.org/preview/pinit-0.1.3.tar.gz"
+
hash = "sha256-PBJxnOjvnqDlBBzP90jBLxgXqWRx1+9dPWRZuGaDb8Q="
+
typstDeps = [
+
"polylux_0_3_1",
+
]
+
description = "Pin things as you like, especially useful for creating slides"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pinit."0.1.2"]
+
url = "https://packages.typst.org/preview/pinit-0.1.2.tar.gz"
+
hash = "sha256-HelCoskHulF+YqGBbQX2+cK8EVGhI2KAQGEajGz6qso="
+
typstDeps = [
+
"polylux_0_3_1",
+
]
+
description = "Pin things as you like, especially useful for creating slides"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pinit."0.1.1"]
+
url = "https://packages.typst.org/preview/pinit-0.1.1.tar.gz"
+
hash = "sha256-lTCEUIzjm9xn1ySuaaLMaTfztyjQm8THVcbZlYigSJs="
+
typstDeps = [
+
"polylux_0_3_1",
+
]
+
description = "Pin things as you like, especially useful for creating slides"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pinit."0.1.0"]
+
url = "https://packages.typst.org/preview/pinit-0.1.0.tar.gz"
+
hash = "sha256-II8eDHhpSSU4zND+m2IHoa5D2WBBcwU5R3TSRvvBkvg="
+
typstDeps = [
+
"polylux_0_3_1",
+
]
+
description = "Pin things as you like, especially useful for creating slides"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-pinit"
+
+
[pintorita."0.1.4"]
+
url = "https://packages.typst.org/preview/pintorita-0.1.4.tar.gz"
+
hash = "sha256-cHcOmeZsrykPhxB4e2Sakjs5qPAS0rMIT+8BMIWMp4s="
+
typstDeps = [
+
"jogs_0_2_4",
+
]
+
description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/taylorh140/typst-pintora"
+
+
[pintorita."0.1.3"]
+
url = "https://packages.typst.org/preview/pintorita-0.1.3.tar.gz"
+
hash = "sha256-eh1g0mINRvoBT2gAUPJ5Jxswz7d9RxDUhhdGlxVAT5k="
+
typstDeps = [
+
"jogs_0_2_3",
+
]
+
description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/taylorh140/typst-pintora"
+
+
[pintorita."0.1.2"]
+
url = "https://packages.typst.org/preview/pintorita-0.1.2.tar.gz"
+
hash = "sha256-raXa2u2l8tHjgAQPHKiZpQqVQK60eC02hqH6T6eG1Bc="
+
typstDeps = [
+
"jogs_0_2_3",
+
]
+
description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/taylorh140/typst-pintora"
+
+
[pintorita."0.1.1"]
+
url = "https://packages.typst.org/preview/pintorita-0.1.1.tar.gz"
+
hash = "sha256-MN/tWQHeLL0/51Ub3MVq4nZ2d8C1DBgXeuioPK0AT9k="
+
typstDeps = [
+
"jogs_0_2_3",
+
]
+
description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/taylorh140/typst-pintora"
+
+
[pintorita."0.1.0"]
+
url = "https://packages.typst.org/preview/pintorita-0.1.0.tar.gz"
+
hash = "sha256-X4+H3L4mnUL5TfeHuJGMY5wFLasGUX1M2w8Q4ssPcbI="
+
typstDeps = [
+
"jogs_0_2_2",
+
]
+
description = "Package to draw Sequence Diagrams, Entity Relationship Diagrams, Component Diagrams, Activity Diagrams, Mind Maps, Gantt Diagrams, and DOT Diagrams based on Pintora which is heavily influenced by mermaid.js and plantuml"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/taylorh140/typst-pintora"
+
+
[pioneering-rlj."0.6.0"]
+
url = "https://packages.typst.org/preview/pioneering-rlj-0.6.0.tar.gz"
+
hash = "sha256-ip2sj+GGv6NKIEQ64ZIOEdY0v7TJWkDUbNwJVuFUjec="
+
typstDeps = []
+
description = "Template for submission to Reinforcement Learning Conference/Journal\n(RLC/RLJ"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/daskol/typst-templates"
+
+
[plotst."0.2.0"]
+
url = "https://packages.typst.org/preview/plotst-0.2.0.tar.gz"
+
hash = "sha256-lhJCU7Hv/+uEsi123qWCX29InyoR4N0EAkhoQ/NyX1I="
+
typstDeps = [
+
"oxifmt_0_2_0",
+
]
+
description = "A library to draw a variety of graphs and plots to use in your papers"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pegacraft/typst-plotting"
+
+
[plotst."0.1.0"]
+
url = "https://packages.typst.org/preview/plotst-0.1.0.tar.gz"
+
hash = "sha256-h1hSdmxTxc314sXmAUNnNsq2l/loq/VoC/wjr4lAdHQ="
+
typstDeps = []
+
description = "A library to draw a variety of graphs and plots to use in your papers"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pegacraft/typst-plotting"
+
+
[plotsy-3d."0.1.0"]
+
url = "https://packages.typst.org/preview/plotsy-3d-0.1.0.tar.gz"
+
hash = "sha256-17Rieur86RP4fCScePso93SPQ1ex3kWgw0z1SfKpz9c="
+
typstDeps = [
+
"cetz_0_3_1",
+
]
+
description = "3D plotting for surfaces and parametric equations using CeTZ similar to pgfplots for LaTeX"
+
license = [
+
"LGPL-3.0-or-later",
+
]
+
homepage = "https://github.com/misskacie/plotsy-3d"
+
+
[pointless-size."0.1.1"]
+
url = "https://packages.typst.org/preview/pointless-size-0.1.1.tar.gz"
+
hash = "sha256-vf1pBfUfnEk0d15uz+2qaVI8yP3aE9C/V+ePRfZa+ls="
+
typstDeps = []
+
description = "中文字号的号数制及字体度量单位 Chinese size system (hào-system) and type-related measurements units"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/YDX-2147483647/typst-pointless-size"
+
+
[pointless-size."0.1.0"]
+
url = "https://packages.typst.org/preview/pointless-size-0.1.0.tar.gz"
+
hash = "sha256-XzHr9Ht8ojAITVX7wOr2TOOncgkCsPO9bPBJ6p002VE="
+
typstDeps = []
+
description = "中文字号的号数制及字体度量单位 Chinese size system (hào-system) and type-related measurements units"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/YDX-2147483647/typst-pointless-size"
+
+
[polylux."0.4.0"]
+
url = "https://packages.typst.org/preview/polylux-0.4.0.tar.gz"
+
hash = "sha256-bhceuU/TCLHCItOw0EPWUIm/fraa4YzVZxbgvIlqYtk="
+
typstDeps = []
+
description = "Presentation slides creation with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/polylux-typ/polylux"
+
+
[polylux."0.3.1"]
+
url = "https://packages.typst.org/preview/polylux-0.3.1.tar.gz"
+
hash = "sha256-BhRlqwHLz1OIchsze0sbNDP6bcn9Ql2eG/mcUe6gwAg="
+
typstDeps = []
+
description = "Presentation slides creation with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/andreasKroepelin/polylux"
+
+
[polylux."0.2.0"]
+
url = "https://packages.typst.org/preview/polylux-0.2.0.tar.gz"
+
hash = "sha256-tjrUbWn1eWQlmaa1Il8L9RQcfKdgS/Tapm5si/65+ts="
+
typstDeps = []
+
description = "Presentation slides creation with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/andreasKroepelin/polylux"
+
+
[polytonoi."0.1.0"]
+
url = "https://packages.typst.org/preview/polytonoi-0.1.0.tar.gz"
+
hash = "sha256-fhjq+Sdl5G6dJTbbdNGDmeCyh5mes/Chyj8IG2Hc2OI="
+
typstDeps = []
+
description = "Renders Roman letters into polytonic Greek"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/dei-layborer/polytonoi"
+
+
[postercise."0.1.0"]
+
url = "https://packages.typst.org/preview/postercise-0.1.0.tar.gz"
+
hash = "sha256-QMTn5TcAstahWnqU0OCCir2fU9NEd1nym/2gJk450Ec="
+
typstDeps = []
+
description = "Postercise allows users to easily create academic research posters with different themes using Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/dangh3014/postercise/"
+
+
[prequery."0.1.0"]
+
url = "https://packages.typst.org/preview/prequery-0.1.0.tar.gz"
+
hash = "sha256-SgjfD/wSGavgRWXSG2iG+bu+4pBuf76a1oFYQyQkN7o="
+
typstDeps = [
+
"codly_0_2_0",
+
"tidy_0_2_0",
+
]
+
description = "library for extracting metadata for preprocessing from a typst document"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SillyFreak/typst-prequery"
+
+
[prismath."0.1.0"]
+
url = "https://packages.typst.org/preview/prismath-0.1.0.tar.gz"
+
hash = "sha256-O7PaP1OUcba6j5MBMOmggdPAQDsQkJT5O8RgjP6qfjs="
+
typstDeps = []
+
description = "A mathematical brackets colorizer"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/3w36zj6/typst-prismath"
+
+
[pro-letter."0.1.1"]
+
url = "https://packages.typst.org/preview/pro-letter-0.1.1.tar.gz"
+
hash = "sha256-Z7b6NR8UUkYf9TR+jaKlkuQzj8YtMAMZcjfn9xPF5Dw="
+
typstDeps = []
+
description = "A formal business letter template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/swaits/typst-collection"
+
+
[pro-letter."0.1.0"]
+
url = "https://packages.typst.org/preview/pro-letter-0.1.0.tar.gz"
+
hash = "sha256-AChfl9DHEbQuzBWrZ6ujv7sG0gMUwMmbSLqMfxGKaag="
+
typstDeps = []
+
description = "A formal business letter template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/swaits/typst-collection"
+
+
[problemst."0.1.2"]
+
url = "https://packages.typst.org/preview/problemst-0.1.2.tar.gz"
+
hash = "sha256-fWEd1e0+03XhbR/KSnCVpHfdzXE3MCNxQBThbijLbY0="
+
typstDeps = []
+
description = "Simple and easy-to-use template for problem sets/homeworks/assignments"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/carreter/problemst"
+
+
[problemst."0.1.1"]
+
url = "https://packages.typst.org/preview/problemst-0.1.1.tar.gz"
+
hash = "sha256-GWo5RN7BWYdVgXAmPnoAgrRPfTUKEDm8l4c+2JEwrRE="
+
typstDeps = []
+
description = "Simple and easy-to-use template for problem sets/homeworks/assignments"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/carreter/problemst"
+
+
[problemst."0.1.0"]
+
url = "https://packages.typst.org/preview/problemst-0.1.0.tar.gz"
+
hash = "sha256-yhFZepdn4q9zU0FRlGoCtNGyPujTpPbQO+uukXdXC+E="
+
typstDeps = []
+
description = "Simple and easy-to-use template for problem sets/homeworks/assignments"
+
license = [
+
"MIT",
+
]
+
+
[prooftrees."0.1.0"]
+
url = "https://packages.typst.org/preview/prooftrees-0.1.0.tar.gz"
+
hash = "sha256-zhnOWUavOqMh3/s8CPIyw5uoX8QslITQJ81zL6WuTaI="
+
typstDeps = []
+
description = "Proof trees for natural deduction and type theories"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/david-davies/typst-prooftree"
+
+
[psl-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/psl-thesis-0.1.0.tar.gz"
+
hash = "sha256-MxuFFtr0ZQ74qipJ4W9mRGBl03ehXeTXF2INoFaFOcY="
+
typstDeps = [
+
"glossarium_0_5_3",
+
"linguify_0_4_2",
+
"suboutline_0_2_0",
+
]
+
description = "Template for a PhD thesis manuscript at Paris Sciences et Lettres (PSL) University"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/sdiebolt/psl-thesis"
+
+
[pubmatter."0.2.0"]
+
url = "https://packages.typst.org/preview/pubmatter-0.2.0.tar.gz"
+
hash = "sha256-1/6vhrb4PKzTxNQhGqsiCGgbYFt3lFgoa9v07NFnQPo="
+
typstDeps = [
+
"scienceicons_0_0_6",
+
]
+
description = "Parse, normalize and show publication frontmatter, including authors and affiliations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/continuous-foundation/pubmatter"
+
+
[pubmatter."0.1.0"]
+
url = "https://packages.typst.org/preview/pubmatter-0.1.0.tar.gz"
+
hash = "sha256-eO3NA6dOMlqTj+eNw/WjOx0jvN80Uh1D2JJRxVTVmUU="
+
typstDeps = [
+
"scienceicons_0_0_6",
+
]
+
description = "Parse, normalize and show publication frontmatter, including authors and affiliations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/curvenote/pubmatter"
+
+
[pyrunner."0.2.0"]
+
url = "https://packages.typst.org/preview/pyrunner-0.2.0.tar.gz"
+
hash = "sha256-0GxKr26m/vztKBqumqgvy1hprOJUoP62vVJ777TcHqk="
+
typstDeps = []
+
description = "Run python code in typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/peng1999/typst-pyrunner"
+
+
[pyrunner."0.1.0"]
+
url = "https://packages.typst.org/preview/pyrunner-0.1.0.tar.gz"
+
hash = "sha256-ari8D99lMFhjsmqX8iNoBad+A4sGAGiED4mJPhvWJdA="
+
typstDeps = []
+
description = "Run python code in typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/peng1999/typst-pyrunner"
+
+
[qcm."0.1.0"]
+
url = "https://packages.typst.org/preview/qcm-0.1.0.tar.gz"
+
hash = "sha256-shMmfVqt45WiVjiXyPmZTxuOrD2XyVODjV4VQcbYwWs="
+
typstDeps = []
+
description = "Qualitative Colormaps"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ludwig-austermann/qcm"
+
+
[quetta."0.2.0"]
+
url = "https://packages.typst.org/preview/quetta-0.2.0.tar.gz"
+
hash = "sha256-VOTfREPGxLOnzmZV21+A+D59u1aAahyB2iJm0dNlhF8="
+
typstDeps = []
+
description = "Write Tengwar easily with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlorentCLMichel/quetta"
+
+
[quetta."0.1.0"]
+
url = "https://packages.typst.org/preview/quetta-0.1.0.tar.gz"
+
hash = "sha256-TQChGnPSPAqVhKJ/CyGV6fyyhchoa1yx1GxDp541LXA="
+
typstDeps = []
+
description = "Write Tengwar easily with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/FlorentCLMichel/quetta"
+
+
[quick-cards."0.1.1"]
+
url = "https://packages.typst.org/preview/quick-cards-0.1.1.tar.gz"
+
hash = "sha256-tXvD7cCih9ma1qhdNGzaPqqyA82p5YE1NIjUtDDSAgo="
+
typstDeps = []
+
description = "Easy flashcards with customizable look and feel"
+
license = [
+
"MIT",
+
]
+
+
[quick-cards."0.1.0"]
+
url = "https://packages.typst.org/preview/quick-cards-0.1.0.tar.gz"
+
hash = "sha256-HXRM3+3QbOexAQbN+MRQ13njgKa2qbRPAOnYvIkndBM="
+
typstDeps = []
+
description = "Easy flashcards with customizable look and feel"
+
license = [
+
"MIT",
+
]
+
+
[quick-maths."0.2.1"]
+
url = "https://packages.typst.org/preview/quick-maths-0.2.1.tar.gz"
+
hash = "sha256-toiwxYLy3Zl3wc/nYEMmS1gsS8M5GenuMu4cgKLWxoY="
+
typstDeps = []
+
description = "Custom shorthands for math equations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/EpicEricEE/typst-quick-maths"
+
+
[quick-maths."0.2.0"]
+
url = "https://packages.typst.org/preview/quick-maths-0.2.0.tar.gz"
+
hash = "sha256-Vh8rbpfiiHgX6E2rVKx898JlzHgzYVaIo6+RB+hzV88="
+
typstDeps = []
+
description = "Custom shorthands for math equations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/EpicEricEE/typst-quick-maths"
+
+
[quick-maths."0.1.0"]
+
url = "https://packages.typst.org/preview/quick-maths-0.1.0.tar.gz"
+
hash = "sha256-4dGy29l3oZwwj/h/diXRb+knbFtGBCpixzn3DeVe+cc="
+
typstDeps = []
+
description = "Custom shorthands for math equations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/EpicEricEE/typst-quick-maths"
+
+
[quick-minutes."1.2.1"]
+
url = "https://packages.typst.org/preview/quick-minutes-1.2.1.tar.gz"
+
hash = "sha256-BME8A8VAEtGCCl7CYHzZPVqtMfr+M8qJNuEIuG6BkcI="
+
typstDeps = []
+
description = "A typst template for the keeping of minutes"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Lypsilonx/quick-minutes"
+
+
[quick-minutes."1.2.0"]
+
url = "https://packages.typst.org/preview/quick-minutes-1.2.0.tar.gz"
+
hash = "sha256-ZA0Oyc0e43hyuyo2WaKcZEwr+MuVdb00Gt59rip/QaA="
+
typstDeps = []
+
description = "A typst template for the keeping of minutes"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Lypsilonx/quick-minutes"
+
+
[quick-minutes."1.1.2"]
+
url = "https://packages.typst.org/preview/quick-minutes-1.1.2.tar.gz"
+
hash = "sha256-2GBZ4qfXHCjTH5Byq8L+j4u2w21rEjw3WfAvo29a1kQ="
+
typstDeps = []
+
description = "A typst template for the keeping of minutes"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Lypsilonx/quick-minutes"
+
+
[quick-minutes."1.1.1"]
+
url = "https://packages.typst.org/preview/quick-minutes-1.1.1.tar.gz"
+
hash = "sha256-IDnUQsqj2/sQjyiXqutOgXpe4FoYtUOCAJGUW05K1rA="
+
typstDeps = []
+
description = "A typst template for the keeping of minutes"
+
license = [
+
"MIT",
+
]
+
+
[quick-minutes."1.1.0"]
+
url = "https://packages.typst.org/preview/quick-minutes-1.1.0.tar.gz"
+
hash = "sha256-0aeCeTYnzpo4foVlvje7Cuo8OQLgaIR1I9HYt+AczRI="
+
typstDeps = []
+
description = "A typst template for the keeping of minutes"
+
license = [
+
"MIT",
+
]
+
+
[quick-minutes."1.0.1"]
+
url = "https://packages.typst.org/preview/quick-minutes-1.0.1.tar.gz"
+
hash = "sha256-IX+zj/L5vJSSEMRzET0vy/1pi4U4ydJT8nWMgXR9q28="
+
typstDeps = []
+
description = "A typst template for the keeping of minutes"
+
license = [
+
"MIT",
+
]
+
+
[quick-minutes."1.0.0"]
+
url = "https://packages.typst.org/preview/quick-minutes-1.0.0.tar.gz"
+
hash = "sha256-5oKnGFG4v6gqDXoJrp9bei24OhAEFj7OqFEhLwwTYts="
+
typstDeps = []
+
description = "A typst template for the keeping of minutes"
+
license = [
+
"MIT",
+
]
+
+
[quick-sip."0.1.2"]
+
url = "https://packages.typst.org/preview/quick-sip-0.1.2.tar.gz"
+
hash = "sha256-Tvf9mJTqF5MvKtqf8rVnnWR/UoHQa6L4PU05KdJhV44="
+
typstDeps = []
+
description = "A template for creating quick reference handbook style checklists"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template"
+
+
[quick-sip."0.1.1"]
+
url = "https://packages.typst.org/preview/quick-sip-0.1.1.tar.gz"
+
hash = "sha256-2iwltRZiDiDMQiPaFz3egrYKNb+GabEIEXr8Mbv55eI="
+
typstDeps = []
+
description = "A template for creating quick reference handbook style checklists"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template"
+
+
[quick-sip."0.1.0"]
+
url = "https://packages.typst.org/preview/quick-sip-0.1.0.tar.gz"
+
hash = "sha256-jy0501oceLSwi5L9DY2wlUgCWZbE2/pShmtf2JZsigs="
+
typstDeps = []
+
description = "A template for creating quick reference handbook style checklists"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template"
+
+
[quill."0.6.1"]
+
url = "https://packages.typst.org/preview/quill-0.6.1.tar.gz"
+
hash = "sha256-BKA/RXWfCbVQFzgAbh+n/xeKKMoPe5ut3jGcNPOCoF4="
+
typstDeps = []
+
description = "Effortlessly create quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/quill"
+
+
[quill."0.6.0"]
+
url = "https://packages.typst.org/preview/quill-0.6.0.tar.gz"
+
hash = "sha256-pp3JnynRT6kN2CwhSbvt7E+lOrn3LyCE8obriBJVauM="
+
typstDeps = []
+
description = "Effortlessly create quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/quill"
+
+
[quill."0.5.0"]
+
url = "https://packages.typst.org/preview/quill-0.5.0.tar.gz"
+
hash = "sha256-nrDYWyTBUM9NW5LD/s6iae3SFOyWU8ELdbaFPYFb25w="
+
typstDeps = []
+
description = "Effortlessly create quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/quill"
+
+
[quill."0.4.0"]
+
url = "https://packages.typst.org/preview/quill-0.4.0.tar.gz"
+
hash = "sha256-2bFovQpAmrLUYl0fFVZmHcno6rlW0ujCu5uNDlZk3ZI="
+
typstDeps = []
+
description = "Effortlessly create quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/quill"
+
+
[quill."0.3.0"]
+
url = "https://packages.typst.org/preview/quill-0.3.0.tar.gz"
+
hash = "sha256-EjEAUnj5Anot7iNpp89oZhI+aBlmQmUd/UevZNcfCSA="
+
typstDeps = []
+
description = "Effortlessly create quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/quill"
+
+
[quill."0.2.1"]
+
url = "https://packages.typst.org/preview/quill-0.2.1.tar.gz"
+
hash = "sha256-rf3ybJiUDYUoUcHZuVuVH26LG+mrteTRpU5vT7pdqek="
+
typstDeps = []
+
description = "Effortlessly create quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
+
[quill."0.2.0"]
+
url = "https://packages.typst.org/preview/quill-0.2.0.tar.gz"
+
hash = "sha256-Vrjcu05Q4LU98l1uV6OBE0pZIBVkYLbsMRhXVRgSXoc="
+
typstDeps = []
+
description = "Effortlessly create quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
+
[quill."0.1.0"]
+
url = "https://packages.typst.org/preview/quill-0.1.0.tar.gz"
+
hash = "sha256-ppM5Z1HSwYVm0bGEW2UEfTC6z/jY74QZKMbC49hxP7E="
+
typstDeps = []
+
description = "A library for creating quantum circuit diagrams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/quill"
+
+
[quizst."0.3.2"]
+
url = "https://packages.typst.org/preview/quizst-0.3.2.tar.gz"
+
hash = "sha256-BuRNdEYQDtqIih+YYKzwP0VpMcRl0Sh8pueUn+b4fbc="
+
typstDeps = []
+
description = "Typst template for McQ exams"
+
license = [
+
"MIT",
+
]
+
+
[red-agora."0.1.1"]
+
url = "https://packages.typst.org/preview/red-agora-0.1.1.tar.gz"
+
hash = "sha256-K35bSciizmhhCU9hHlkPg2+wR8VCsQeTvisO/kuwVOU="
+
typstDeps = []
+
description = "A Typst template to quickly scaffold a report for your projects and internships at ENSIAS"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/essmehdi/ensias-report-template"
+
+
[red-agora."0.1.0"]
+
url = "https://packages.typst.org/preview/red-agora-0.1.0.tar.gz"
+
hash = "sha256-JOeYpS+3ajPdPHfAHRUPeHPd4P0litd7b5sXyfOHRVg="
+
typstDeps = []
+
description = "A Typst template to quickly scaffold a report for your projects and internships at ENSIAS"
+
license = [
+
"MIT",
+
]
+
+
[relescope."0.0.2"]
+
url = "https://packages.typst.org/preview/relescope-0.0.2.tar.gz"
+
hash = "sha256-3axTa1GFpO5hFshSglbIj3JXkipKixEIvBFGPIIORUE="
+
typstDeps = [
+
"zebraw_0_4_3",
+
]
+
description = "Crop the desired code"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sjfhsjfh/typst-relescope"
+
+
[relescope."0.0.1"]
+
url = "https://packages.typst.org/preview/relescope-0.0.1.tar.gz"
+
hash = "sha256-QtoOpJLOUF5JiZjdTA6zc1GbOKSIPM6cuRjwFbGW3Sg="
+
typstDeps = [
+
"zebraw_0_4_3",
+
]
+
description = "Crop the desired code"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sjfhsjfh/typst-relescope"
+
+
[report-flow-ustc."1.1.0"]
+
url = "https://packages.typst.org/preview/report-flow-ustc-1.1.0.tar.gz"
+
hash = "sha256-EB3bszDs16NK6vPY+LuNnPbZUa1OhnBMQIsFOE6GVuk="
+
typstDeps = [
+
"cheq_0_1_0",
+
"codly_1_0_0",
+
"commute_0_2_0",
+
"cuti_0_2_1",
+
"gentle-clues_0_8_0",
+
"i-figured_0_2_4",
+
"mitex_0_2_4",
+
"pintorita_0_1_1",
+
"showybox_2_0_1",
+
"unify_0_6_0",
+
]
+
description = "A template suitable for USTC students (of course, you can freely modify it for any school or organization) to complete course assignments or submit lab reports"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Quaternijkon/report-flow-ustc"
+
+
[report-flow-ustc."1.0.0"]
+
url = "https://packages.typst.org/preview/report-flow-ustc-1.0.0.tar.gz"
+
hash = "sha256-DFO9zfEB43Z6/rAPWQWJPpQrgSeZ7ke3aD5dPQxqvS4="
+
typstDeps = [
+
"cheq_0_1_0",
+
"codly_1_0_0",
+
"commute_0_2_0",
+
"cuti_0_2_1",
+
"gentle-clues_0_8_0",
+
"i-figured_0_2_4",
+
"mitex_0_2_4",
+
"pintorita_0_1_1",
+
"showybox_2_0_1",
+
"unify_0_6_0",
+
]
+
description = "A template suitable for USTC students (of course, you can freely modify it for any school or organization) to complete course assignments or submit lab reports"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Quaternijkon/Typst_Lab_Report"
+
+
[resume-ng."1.0.0"]
+
url = "https://packages.typst.org/preview/resume-ng-1.0.0.tar.gz"
+
hash = "sha256-AdbHp43Y3bxwYH5qRPRl1bML/G1tACO4IoKL9wv/Ot0="
+
typstDeps = []
+
description = "A Typst resume designed for optimal information density and aesthetic appeal"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/fky2015/resume-ng-typst"
+
+
[rexllent."0.3.0"]
+
url = "https://packages.typst.org/preview/rexllent-0.3.0.tar.gz"
+
hash = "sha256-xG91tiCiPZ9lItlzyyg4pXB5uqtV2tioO+RLtHb5K+w="
+
typstDeps = []
+
description = "Parsing excel table into a typst table, powered by wasm"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-rexllent"
+
+
[rexllent."0.2.3"]
+
url = "https://packages.typst.org/preview/rexllent-0.2.3.tar.gz"
+
hash = "sha256-9oU6UGL2b30md30lz6w7rx+YzSxTRtHTsYDfZd2MgDg="
+
typstDeps = []
+
description = "Parsing xlsx file into a typst table, powered by wasm"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-rexllent"
+
+
[rexllent."0.2.2"]
+
url = "https://packages.typst.org/preview/rexllent-0.2.2.tar.gz"
+
hash = "sha256-QuZQMY/Za1hg+Ui4j/DIHVl6REUMZOvuxzc0udUTqYg="
+
typstDeps = []
+
description = "Parsing xlsx file into a typst table, powered by wasm"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-rexllent"
+
+
[rexllent."0.2.1"]
+
url = "https://packages.typst.org/preview/rexllent-0.2.1.tar.gz"
+
hash = "sha256-vETDKcBB/bBJJ2usl5EY0QYSfbIPBRb/CFBpkLHTIfA="
+
typstDeps = []
+
description = "Parsing xlsx file into a typst table, powered by wasm"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-rexllent"
+
+
[rexllent."0.2.0"]
+
url = "https://packages.typst.org/preview/rexllent-0.2.0.tar.gz"
+
hash = "sha256-vyUaitEgZdBSJXI73ByzX0c7GvuPy7oOH4N+aYy48Xc="
+
typstDeps = []
+
description = "Parsing xlsx file into a typst table, powered by wasm"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-rexllent"
+
+
[rfc-vibe."0.1.0"]
+
url = "https://packages.typst.org/preview/rfc-vibe-0.1.0.tar.gz"
+
hash = "sha256-VsSxsq4j5+l4euhA7k977HSZOtuApGwp+Jwny9zpWm8="
+
typstDeps = []
+
description = "Bring RFC language into everyday docs"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/swaits/typst-collection"
+
+
[rich-counters."0.2.2"]
+
url = "https://packages.typst.org/preview/rich-counters-0.2.2.tar.gz"
+
hash = "sha256-anNF+VisQ0RKJn1M1/5wP/AlgQsmw2ifJk9jQ5Tj1MY="
+
typstDeps = []
+
description = "Counters which can inherit from other counters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+
[rich-counters."0.2.1"]
+
url = "https://packages.typst.org/preview/rich-counters-0.2.1.tar.gz"
+
hash = "sha256-ja1hq5vTVoQA6u2oKnM3HXn+3cINm4h49RsLNIfOjBw="
+
typstDeps = []
+
description = "Counters which can inherit from other counters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+
[rich-counters."0.2.0"]
+
url = "https://packages.typst.org/preview/rich-counters-0.2.0.tar.gz"
+
hash = "sha256-SVBN/P+Y//teDraoU4y+pHOXkz8Qo2pGr7Tr6TCnQaY="
+
typstDeps = []
+
description = "Counters which can depend on other counters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+
[rich-counters."0.1.0"]
+
url = "https://packages.typst.org/preview/rich-counters-0.1.0.tar.gz"
+
hash = "sha256-fD8vTU3MceQ8X6f1a0MyAJNP0LOiwaJzm9BF7g5eQio="
+
typstDeps = []
+
description = "Counters which can depend on other counters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jbirnick/typst-rich-counters"
+
+
[riesketcher."0.2.1"]
+
url = "https://packages.typst.org/preview/riesketcher-0.2.1.tar.gz"
+
hash = "sha256-Wm8L5+rRdc7XdMwvHQynuVE9/ABRlMyZzUWDa03zVqM="
+
typstDeps = [
+
"cetz_0_2_2",
+
]
+
description = "A package to draw Riemann sums (and their plots) of a function with CeTZ"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ThatOneCalculator/riesketcher"
+
+
[riesketcher."0.2.0"]
+
url = "https://packages.typst.org/preview/riesketcher-0.2.0.tar.gz"
+
hash = "sha256-sgjDLll//sF2GkJOPrvM7XUMuok152BcJMS3FSpXaUw="
+
typstDeps = [
+
"cetz_0_2_0",
+
]
+
description = "A package to draw Riemann sums (and their plots) of a function with CeTZ"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ThatOneCalculator/riesketcher"
+
+
[riesketcher."0.1.0"]
+
url = "https://packages.typst.org/preview/riesketcher-0.1.0.tar.gz"
+
hash = "sha256-tTHBFj8NfledTh2RscQtR568OjiTeB90UnVhsSzKdRA="
+
typstDeps = [
+
"cetz_0_1_2",
+
]
+
description = "A package to draw Riemann sums (and their plots) of a function with CeTZ"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ThatOneCalculator/riesketcher"
+
+
[rivet."0.2.0"]
+
url = "https://packages.typst.org/preview/rivet-0.2.0.tar.gz"
+
hash = "sha256-AL+aUPYNqb4vxLgAXFBFHzxjbL8epNojCbLqNOMtxfg="
+
typstDeps = [
+
"cetz_0_3_2",
+
"codly_1_2_0",
+
"codly-languages_0_1_7",
+
"rivet_0_1_0",
+
"showybox_2_0_4",
+
"tidy_0_4_1",
+
]
+
description = "Register / Instruction Visualizer & Explainer Tool with Typst, using CeTZ"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://git.kb28.ch/HEL/rivet-typst"
+
+
[rivet."0.1.0"]
+
url = "https://packages.typst.org/preview/rivet-0.1.0.tar.gz"
+
hash = "sha256-ekViYpfKk2zvY4VVu8ZnFFU/kXJbBLNYjKHGOfZ8VY0="
+
typstDeps = [
+
"cetz_0_2_2",
+
"codelst_2_0_1",
+
"showybox_2_0_1",
+
"tidy_0_3_0",
+
]
+
description = "Register / Instruction Visualizer & Explainer Tool with Typst, using CeTZ"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://git.kb28.ch/HEL/rivet-typst"
+
+
[roremu."0.1.0"]
+
url = "https://packages.typst.org/preview/roremu-0.1.0.tar.gz"
+
hash = "sha256-9QsuDuoOOqmhg/JQKgT9/Q1p09EBEm2FL5Nr9+VMSC8="
+
typstDeps = [
+
"tidy_0_2_0",
+
]
+
description = "日本語のダミーテキスト生成(Lorem Ipsum)"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/mkpoli/roremu"
+
+
[rose-pine."0.2.0"]
+
url = "https://packages.typst.org/preview/rose-pine-0.2.0.tar.gz"
+
hash = "sha256-TZxAE4goAIvlGNixDaIdCL7GkLyP9XZH8/EZYLfcvNY="
+
typstDeps = []
+
description = "Soho vibes for Typst in a form of easily applicable theme"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/rose-pine/typst"
+
+
[rose-pine."0.1.0"]
+
url = "https://packages.typst.org/preview/rose-pine-0.1.0.tar.gz"
+
hash = "sha256-GeaHssP8QYVw3sIlztWxWsGxrHurKwRskN80gbUrkZQ="
+
typstDeps = []
+
description = "Soho vibes for Typst in a form of easily applicable theme"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/rose-pine/typst"
+
+
[rubber-article."0.3.1"]
+
url = "https://packages.typst.org/preview/rubber-article-0.3.1.tar.gz"
+
hash = "sha256-B+/lqmX27ndp/8IBGa74Y3Mnj3q9Gy6D4ywOYHvBByo="
+
typstDeps = [
+
"hydra_0_6_0",
+
]
+
description = "A simple template recreating the look of the classic LaTeX article"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/rubber-article.git"
+
+
[rubber-article."0.3.0"]
+
url = "https://packages.typst.org/preview/rubber-article-0.3.0.tar.gz"
+
hash = "sha256-VZPiL9A2jlp9W+cUCmqgjtPWl/IZK/Htac11/Ym9XC0="
+
typstDeps = [
+
"hydra_0_6_0",
+
]
+
description = "A simple template recreating the look of the classic LaTeX article"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/rubber-article.git"
+
+
[rubber-article."0.2.0"]
+
url = "https://packages.typst.org/preview/rubber-article-0.2.0.tar.gz"
+
hash = "sha256-826U/MxEcOCYmFb/86+1ltviU/S+QE62bd6s07fVfSY="
+
typstDeps = [
+
"hydra_0_5_2",
+
]
+
description = "A simple template recreating the look of the classic LaTeX article"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/rubber-article.git"
+
+
[rubber-article."0.1.0"]
+
url = "https://packages.typst.org/preview/rubber-article-0.1.0.tar.gz"
+
hash = "sha256-YS6YltTP5nbnoxxgwreK1ZzePVRu1WDrP1NUPV1ik+g="
+
typstDeps = []
+
description = "A simple template recreating the look of the classic LaTeX article"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/rubber-article.git"
+
+
[rubby."0.10.2"]
+
url = "https://packages.typst.org/preview/rubby-0.10.2.tar.gz"
+
hash = "sha256-lYecVfGr700LmHkpxWd65iAo/jSi3RaEVgC5RDEGkto="
+
typstDeps = []
+
description = "Add ruby (furigana) next to base text"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/Andrew15-5/rubby"
+
+
[rubby."0.10.1"]
+
url = "https://packages.typst.org/preview/rubby-0.10.1.tar.gz"
+
hash = "sha256-aWQajusK585WmlbdpHezbi8hFHtCwCyOG1GF+eGlZfg="
+
typstDeps = []
+
description = "Add ruby (furigana) next to base text"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/Andrew15-5/rubby"
+
+
[rubby."0.10.0"]
+
url = "https://packages.typst.org/preview/rubby-0.10.0.tar.gz"
+
hash = "sha256-HB1B6s0PbUxuImvv6QQPF3VVpTKJOlrH/aUh1thUbBY="
+
typstDeps = []
+
description = "Add ruby (furigana) next to base text"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/Andrew15-5/rubby"
+
+
[rubby."0.9.2"]
+
url = "https://packages.typst.org/preview/rubby-0.9.2.tar.gz"
+
hash = "sha256-vwt92Vwmaz3eSZTghJtej3Ypq96YiOCTVAvNnwuWv14="
+
typstDeps = []
+
description = "Add ruby (furigana) next to base text"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/Andrew15-5/rubby"
+
+
[rubby."0.8.0"]
+
url = "https://packages.typst.org/preview/rubby-0.8.0.tar.gz"
+
hash = "sha256-0Iy3cNNpcLU+TJWDiYC+UDUkC6Q2pPrxG/KdChShxZg="
+
typstDeps = []
+
description = "Add ruby (furigana) next to base text"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/Andrew15-5/rubby"
+
+
[rufish."0.1.0"]
+
url = "https://packages.typst.org/preview/rufish-0.1.0.tar.gz"
+
hash = "sha256-aWMNujilrySHfxwB6cSljcoIF3nHCusJn47wym93Gww="
+
typstDeps = []
+
description = "Russian Lorem Ipsum text generator"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/f0rgenet/rufish"
+
+
[run-liners."0.1.0"]
+
url = "https://packages.typst.org/preview/run-liners-0.1.0.tar.gz"
+
hash = "sha256-SQ5iEf3jgXQ+3TIYkq1W9KHrWnYZ+W32j7q7zwWMCTQ="
+
typstDeps = [
+
"codly_1_1_1",
+
"codly-languages_0_1_1",
+
]
+
description = "Functions to create various run-in lists"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/swaits/typst-collection"
+
+
[s6t5-page-bordering."1.0.0"]
+
url = "https://packages.typst.org/preview/s6t5-page-bordering-1.0.0.tar.gz"
+
hash = "sha256-djet6k3bfA6oi+IpfoN6bsZ8sPkR0y2RVPB0bKKcgI4="
+
typstDeps = []
+
description = "Way to write border around page margin and header/footer"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Shumpei-Tanaka/typst-s6t5-page-bordering"
+
+
[salsa-dip."0.1.0"]
+
url = "https://packages.typst.org/preview/salsa-dip-0.1.0.tar.gz"
+
hash = "sha256-C2uA6nTd5wCYZf1dzjOqQt0nfHzjs8GePLOs4LEwlQE="
+
typstDeps = []
+
description = "DIP chip labels for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/ashplasek/salsa-dip"
+
+
[sano-presentation-template."1.0.0"]
+
url = "https://packages.typst.org/preview/sano-presentation-template-1.0.0.tar.gz"
+
hash = "sha256-RJGql4AhJal3CzuJi1Jgh19+wIIy2WM98xZjkAE2TKA="
+
typstDeps = [
+
"touying_0_6_1",
+
]
+
description = "Small and minimal presentation template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sudanchapagain/sano-presentation-template"
+
+
[scaffolder."0.2.0"]
+
url = "https://packages.typst.org/preview/scaffolder-0.2.0.tar.gz"
+
hash = "sha256-iMOIGDtLE/7GDV29+efx9EX6emZ9R2y9AumEajMb7jk="
+
typstDeps = []
+
description = "Show borders around the main text area, header and footer in Typst documents"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/wisp3rwind/typst-scaffolder"
+
+
[scholarly-epfl-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.2.0.tar.gz"
+
hash = "sha256-9TEz/jV7P1edbqYIlQoZ4581sK4UBQMpn3oZWlxtwxg="
+
typstDeps = []
+
description = "A template for a thesis at EPFL"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+
[scholarly-epfl-thesis."0.1.3"]
+
url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.3.tar.gz"
+
hash = "sha256-YTFTgzRXbGuJeG/hS0jleGlv6plJO3u/WBBOprTgeyo="
+
typstDeps = []
+
description = "A template for a thesis at EPFL"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+
[scholarly-epfl-thesis."0.1.2"]
+
url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.2.tar.gz"
+
hash = "sha256-2n1e0WaLIa8OuWCMhdehC4C5N4Xt17Pu6lU6k52vwdM="
+
typstDeps = []
+
description = "A template for a thesis at EPFL"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+
[scholarly-epfl-thesis."0.1.1"]
+
url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.1.tar.gz"
+
hash = "sha256-rUKSWrXTp6QMO3YZQF7yyDCPLXmfzpx0dgpWJrpEJhk="
+
typstDeps = []
+
description = "A template for a thesis at EPFL"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+
[scholarly-epfl-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/scholarly-epfl-thesis-0.1.0.tar.gz"
+
hash = "sha256-sR236ruuhbgKUcc1lxcPXDEHEqvH5WzV+winMJllSmk="
+
typstDeps = []
+
description = "A template for a thesis at EPFL"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/augustebaum/epfl-thesis-typst"
+
+
[scholarly-tauthesis."0.11.0"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.11.0.tar.gz"
+
hash = "sha256-lcmQOo6gRrNpeknvK9HvHbvGTxQc7v45CQJBZyMtn+k="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.10.2"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.10.2.tar.gz"
+
hash = "sha256-tdcP9Y4nIRrOUfgeXL5fcyWYZBDM1gnXxqSBgJ0cLos="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.10.0"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.10.0.tar.gz"
+
hash = "sha256-6gK3wG86AcOcLhwA+pM2IAMTbsXXeAomYVwagjKnw+o="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.9.0"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.9.0.tar.gz"
+
hash = "sha256-udMAPeHkj1LFlLjnN+kLUpD400XQSmNja6pnMOexs7U="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.8.0"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.8.0.tar.gz"
+
hash = "sha256-eoRKYKIczsXYL0IGG98TQCRe58+7Ua7110cx/vTTlvU="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.7.0"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.7.0.tar.gz"
+
hash = "sha256-4x4A9G3Dqy2Bjqtn94l1lSId19IcMR6TCYBPVUartNE="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.6.2"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.6.2.tar.gz"
+
hash = "sha256-JrYBGqXFJbCkMLjSJAie5vOQliYdQKozu+/LynnBfSQ="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.5.0"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.5.0.tar.gz"
+
hash = "sha256-SIGA2SqsTcbRLODu8SUB6dT9F43XvXiVRdHSXalBOi0="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.4.1"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.4.1.tar.gz"
+
hash = "sha256-2mfC7LdA2yMscmCe6JAclLL7HrPcRf2ZayDvCrzLpmw="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scholarly-tauthesis."0.4.0"]
+
url = "https://packages.typst.org/preview/scholarly-tauthesis-0.4.0.tar.gz"
+
hash = "sha256-xRJOBJWA4CivMeCY8zPMyyG48RV2ZTIyhAU1Q4BWS7M="
+
typstDeps = []
+
description = "A template for writing Tampere University theses"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template"
+
+
[scienceicons."0.0.6"]
+
url = "https://packages.typst.org/preview/scienceicons-0.0.6.tar.gz"
+
hash = "sha256-n3GMd9uPpqK2G5aD4+g8D5Egm/OwgGQ2yrZVgeD+lNM="
+
typstDeps = []
+
description = "SVG icons for open-science articles"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/curvenote/scienceicons"
+
+
[scripst."1.1.1"]
+
url = "https://packages.typst.org/preview/scripst-1.1.1.tar.gz"
+
hash = "sha256-N9u+c35SB4NJjczmPQ1OZuCiBXkpXuDuDj/FyS0+WiU="
+
typstDeps = [
+
"physica_0_9_4",
+
"tablem_0_2_0",
+
]
+
description = "Scripst - A versatile scripting template for seamless Typst typesetting. 🚀"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/An-314/typst-templates"
+
+
[scripst."1.1.0"]
+
url = "https://packages.typst.org/preview/scripst-1.1.0.tar.gz"
+
hash = "sha256-b6iUIdKTocmMgW7krded2tFbv90Qvsea0QcvhLp7xnc="
+
typstDeps = [
+
"physica_0_9_4",
+
"tablem_0_2_0",
+
]
+
description = "Scripst - A versatile scripting template for seamless Typst typesetting. 🚀"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/An-314/typst-templates"
+
+
[scrutinize."0.3.0"]
+
url = "https://packages.typst.org/preview/scrutinize-0.3.0.tar.gz"
+
hash = "sha256-SgigAFxJZ9/diWE3jUcMRnu0SX5fiZyzejyrsk7mRpA="
+
typstDeps = []
+
description = "A library for building exams, tests, etc. with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SillyFreak/typst-scrutinize"
+
+
[scrutinize."0.2.0"]
+
url = "https://packages.typst.org/preview/scrutinize-0.2.0.tar.gz"
+
hash = "sha256-THfVLYmuFhjeV8+LyrY0/Pyyc4zRJ0p2GNmqvwaZEPw="
+
typstDeps = [
+
"codly_0_2_0",
+
"tidy_0_2_0",
+
]
+
description = "A library for building exams, tests, etc. with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SillyFreak/typst-scrutinize"
+
+
[scrutinize."0.1.0"]
+
url = "https://packages.typst.org/preview/scrutinize-0.1.0.tar.gz"
+
hash = "sha256-YnDArqHld6UvOq/V5pBrAEGu/5k46+fWvE44wp/80+s="
+
typstDeps = [
+
"codly_0_1_0",
+
"tidy_0_2_0",
+
]
+
description = "A library for building exams, tests, etc. with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SillyFreak/typst-packages/scrutinize"
+
+
[sdu-exp-report."0.1.0"]
+
url = "https://packages.typst.org/preview/sdu-exp-report-0.1.0.tar.gz"
+
hash = "sha256-du81nBCW+BSDb0Rq6zbg3x2MKPvgHOf9xxVZCwy6Z+c="
+
typstDeps = [
+
"cetz_0_3_2",
+
"codly_1_3_0",
+
"numbly_0_1_0",
+
]
+
description = "A report template for SDU CS students"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/Dregen-Yor/sdu-exp-report"
+
+
[sdu-touying-simpl."0.2.1"]
+
url = "https://packages.typst.org/preview/sdu-touying-simpl-0.2.1.tar.gz"
+
hash = "sha256-OcF+mGfjzr3icGXjL3kJsWvWcT9Th5mmfcu0VpSCQdc="
+
typstDeps = [
+
"codly_1_1_1",
+
"ctheorems_1_1_3",
+
"fletcher_0_5_4",
+
"gentle-clues_1_1_0",
+
"showybox_2_0_3",
+
"timeliney_0_2_0",
+
"touying_0_5_5",
+
]
+
description = "An templete based on touying, "
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl"
+
+
[sdu-touying-simpl."0.2.0"]
+
url = "https://packages.typst.org/preview/sdu-touying-simpl-0.2.0.tar.gz"
+
hash = "sha256-q75B4UZAXcDDtgkQQ5N35mkAsvyAj2ZSqMwYxiRkcEA="
+
typstDeps = [
+
"codly_1_1_1",
+
"ctheorems_1_1_3",
+
"fletcher_0_5_4",
+
"gentle-clues_1_1_0",
+
"showybox_2_0_3",
+
"timeliney_0_2_0",
+
"touying_0_5_5",
+
]
+
description = "An templete based on touying, "
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl"
+
+
[sdu-touying-simpl."0.1.0"]
+
url = "https://packages.typst.org/preview/sdu-touying-simpl-0.1.0.tar.gz"
+
hash = "sha256-tS2upn1PMcV3rLBP+rse65jC80yHErmNSE/ZDGizzzw="
+
typstDeps = [
+
"codly_1_1_1",
+
"ctheorems_1_1_3",
+
"fletcher_0_5_3",
+
"gentle-clues_1_1_0",
+
"showybox_2_0_3",
+
"timeliney_0_1_0",
+
"touying_0_5_5",
+
]
+
description = "An templete based on touying, "
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl"
+
+
[self-example."0.1.0"]
+
url = "https://packages.typst.org/preview/self-example-0.1.0.tar.gz"
+
hash = "sha256-yOJqy0t0n+4PnRrmETEVhg7zvuoTzdGuXjkFN23k/P0="
+
typstDeps = [
+
"codly_1_1_1",
+
"codly-languages_0_1_1",
+
]
+
description = "A typst package that will eval your typst command together with itself as a raw block"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/wznmickey/typst-self-example"
+
+
[shadowed."0.2.0"]
+
url = "https://packages.typst.org/preview/shadowed-0.2.0.tar.gz"
+
hash = "sha256-TDZsj+sK5aIaX7luRUdtyH0YxTWzrFRyrIvUlOk+MfI="
+
typstDeps = []
+
description = "Box shadows for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/T1mVo/shadowed"
+
+
[shadowed."0.1.2"]
+
url = "https://packages.typst.org/preview/shadowed-0.1.2.tar.gz"
+
hash = "sha256-NMbLMOdzbNzigsqnKaK0iOJHLaB2h0ksyLuS56PxxNY="
+
typstDeps = []
+
description = "Box shadows for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/T1mVo/shadowed"
+
+
[shadowed."0.1.1"]
+
url = "https://packages.typst.org/preview/shadowed-0.1.1.tar.gz"
+
hash = "sha256-QVIO9WPRgqoLm7fA9sPIZEum2nip7CPS0Mfjivk/Tio="
+
typstDeps = []
+
description = "Box shadows for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/T1mVo/shadowed"
+
+
[shadowed."0.1.0"]
+
url = "https://packages.typst.org/preview/shadowed-0.1.0.tar.gz"
+
hash = "sha256-cvZ12sPbSGE9ywtAky7/9FYbPc+6wgHbJ4Jaibsrdzo="
+
typstDeps = []
+
description = "Box shadows for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/T1mVo/shadowed"
+
+
[shane-hhu-thesis."0.3.0"]
+
url = "https://packages.typst.org/preview/shane-hhu-thesis-0.3.0.tar.gz"
+
hash = "sha256-GhHzGPmQUyLEf3lxRO0VGI0wt/TzLUUvZuo4iFAUqaU="
+
typstDeps = [
+
"a2c-nums_0_0_1",
+
"cuti_0_2_1",
+
"i-figured_0_2_4",
+
]
+
description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/shaneworld/HHU-Thesis-Template"
+
+
[shane-hhu-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/shane-hhu-thesis-0.2.0.tar.gz"
+
hash = "sha256-JufQR1SdPLCSlOWaJRfIKsCHQ8ppRiYnR8sxfJUvbl4="
+
typstDeps = [
+
"a2c-nums_0_0_1",
+
"cuti_0_2_1",
+
"i-figured_0_2_4",
+
]
+
description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/shaneworld/HHU-Thesis-Template"
+
+
[shane-hhu-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/shane-hhu-thesis-0.1.0.tar.gz"
+
hash = "sha256-d/9KaewcuxXLLSzlYVXlsMFOkskMZKJDBMQDS5QQIg0="
+
typstDeps = [
+
"a2c-nums_0_0_1",
+
"cuti_0_2_1",
+
"i-figured_0_2_4",
+
"sourcerer_0_2_1",
+
]
+
description = "河海大学本科生毕业论文(设计)模板。Unofficial Hohai University Undergraduate Thesis (Design) Template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/shaneworld/HHU-Thesis-Template"
+
+
[shiroa."0.2.2"]
+
url = "https://packages.typst.org/preview/shiroa-0.2.2.tar.gz"
+
hash = "sha256-fBC4alolwFH+92J3ph1UqXxIO/GutiC6puNS9lMwBRs="
+
typstDeps = []
+
description = "A simple tool for creating modern online books in pure typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+
[shiroa."0.2.1"]
+
url = "https://packages.typst.org/preview/shiroa-0.2.1.tar.gz"
+
hash = "sha256-KboWx6hGztzQi/eR6ARgpcAuI1fcVJeCrjJHEpHHWfs="
+
typstDeps = []
+
description = "A simple tool for creating modern online books in pure typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+
[shiroa."0.2.0"]
+
url = "https://packages.typst.org/preview/shiroa-0.2.0.tar.gz"
+
hash = "sha256-+JVHlMM7JwNuFZy0pSZcJE+qrPEaHrdmF4CLZycLKYE="
+
typstDeps = []
+
description = "A simple tool for creating modern online books in pure typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+
[shiroa."0.1.2"]
+
url = "https://packages.typst.org/preview/shiroa-0.1.2.tar.gz"
+
hash = "sha256-OF21yuYTYDK5f5cFmQHUQNpgXM13sm2sfBULS1Uc/jo="
+
typstDeps = []
+
description = "A simple tool for creating modern online books in pure typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+
[shiroa."0.1.1"]
+
url = "https://packages.typst.org/preview/shiroa-0.1.1.tar.gz"
+
hash = "sha256-f7VFuEXD1ASB228TqPBsDsq6Zd0RvIkvnLCCS98NqHs="
+
typstDeps = []
+
description = "A simple tool for creating modern online books in pure typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+
[shiroa."0.1.0"]
+
url = "https://packages.typst.org/preview/shiroa-0.1.0.tar.gz"
+
hash = "sha256-EnNdteHbjhVgTksdEd5HWcjfh/3gS/AmlM4e4YR6cLQ="
+
typstDeps = []
+
description = "A simple tool for creating modern online books in pure typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/Myriad-Dreamin/shiroa"
+
+
[showman."0.1.2"]
+
url = "https://packages.typst.org/preview/showman-0.1.2.tar.gz"
+
hash = "sha256-3Ueq4axPi/YUoqI9yUUfiz7MXBQhxr1Vm+h6s7v0UoM="
+
typstDeps = []
+
description = "Eval & show typst code outputs inline with their source"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/ntjess/showman"
+
+
[showman."0.1.1"]
+
url = "https://packages.typst.org/preview/showman-0.1.1.tar.gz"
+
hash = "sha256-Lyeh3s9fEUxNJLwUbfWHnTAtwdwzaGytGYfE/KCNtxg="
+
typstDeps = []
+
description = "Eval & show typst code outputs inline with their source"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/ntjess/showman"
+
+
[showman."0.1.0"]
+
url = "https://packages.typst.org/preview/showman-0.1.0.tar.gz"
+
hash = "sha256-Hgh3HrdYOeRfLgZJum/OTn0wb4r/tGxYaAclUu5PuBc="
+
typstDeps = []
+
description = "Eval & show typst code outputs inline with their source"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/ntjess/showman"
+
+
[showybox."2.0.4"]
+
url = "https://packages.typst.org/preview/showybox-2.0.4.tar.gz"
+
hash = "sha256-3sAFQByCBAhIAjrkZI6PSU3kDMenfNQx9AgIDwmSePo="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Colorful and customizable boxes for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."2.0.3"]
+
url = "https://packages.typst.org/preview/showybox-2.0.3.tar.gz"
+
hash = "sha256-9oRPKbAp7ogo3ck9TOMOrnwu4a8T3BugG+y19CGMoOw="
+
typstDeps = [
+
"codelst_1_0_0",
+
"codelst_2_0_1",
+
]
+
description = "Colorful and customizable boxes for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."2.0.2"]
+
url = "https://packages.typst.org/preview/showybox-2.0.2.tar.gz"
+
hash = "sha256-Hf2sujvR+CfIa2ZYZIJb3QKUyZ2E4ie2usxsFLKRgpg="
+
typstDeps = [
+
"codelst_1_0_0",
+
"codelst_2_0_1",
+
]
+
description = "Colorful and customizable boxes for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."2.0.1"]
+
url = "https://packages.typst.org/preview/showybox-2.0.1.tar.gz"
+
hash = "sha256-FYpWwsOEQNKxNKPSPTp5GtSr7wRp1TXbamH80TBluWE="
+
typstDeps = [
+
"codelst_1_0_0",
+
]
+
description = "Colorful and customizable boxes for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."2.0.0"]
+
url = "https://packages.typst.org/preview/showybox-2.0.0.tar.gz"
+
hash = "sha256-pv1jomhbnn1vf+nd8oG537ZlS+uBT5hlXmTBF0BDJVM="
+
typstDeps = [
+
"codelst_1_0_0",
+
]
+
description = "Colorful and customizable boxes for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."1.1.0"]
+
url = "https://packages.typst.org/preview/showybox-1.1.0.tar.gz"
+
hash = "sha256-L823VBWegfplrw2sm6Jv7LguDjhwFh0Q7t8BnKC/QlY="
+
typstDeps = []
+
description = "Colorful and customizable boxes for typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."1.0.0"]
+
url = "https://packages.typst.org/preview/showybox-1.0.0.tar.gz"
+
hash = "sha256-Dv/UvQZsUZzYGjU88QeS1S6eKEq08b4lp6P128zKSyg="
+
typstDeps = []
+
description = "Colorful and customizable boxes for typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."0.2.1"]
+
url = "https://packages.typst.org/preview/showybox-0.2.1.tar.gz"
+
hash = "sha256-LYOf0gB/DgVh/Ic+D3lRhv4xjSXblPuKbzDEjbc43/k="
+
typstDeps = []
+
description = "Colorful and customizable boxes for typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."0.2.0"]
+
url = "https://packages.typst.org/preview/showybox-0.2.0.tar.gz"
+
hash = "sha256-ZaxGpAihH+fNA+z642qYCAvCV6NN35/ldM/8eGS0KJw="
+
typstDeps = []
+
description = "Colorful and customizable boxes for typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Pablo-Gonzalez-Calderon/showybox-package"
+
+
[showybox."0.1.1"]
+
url = "https://packages.typst.org/preview/showybox-0.1.1.tar.gz"
+
hash = "sha256-jqmeQ9GIUkeOeATpD1T4oRmVtJgF0xFGEzs/8HYoN0o="
+
typstDeps = []
+
description = "Colorful and customizable boxes for typst"
+
license = [
+
"MIT",
+
]
+
+
[shuxuejuan."0.1.1"]
+
url = "https://packages.typst.org/preview/shuxuejuan-0.1.1.tar.gz"
+
hash = "sha256-srMnXvFwGS/BvnQc+7ts0GGJMzKW42BnZkc8CWvvf8E="
+
typstDeps = []
+
description = "A simple Typst template for math exam in Chinese"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/VWWVVW/shuxuejuan"
+
+
[shuxuejuan."0.1.0"]
+
url = "https://packages.typst.org/preview/shuxuejuan-0.1.0.tar.gz"
+
hash = "sha256-gdDw75Gm/vlWumFKM0+aqJudwnDIafW3pjYKE2S+Tls="
+
typstDeps = []
+
description = "A simple Typst template for math exam in Chinese"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/VWWVVW/shuxuejuan"
+
+
[siddhi-syntax."0.1.0"]
+
url = "https://packages.typst.org/preview/siddhi-syntax-0.1.0.tar.gz"
+
hash = "sha256-fwiowLjoDTWvnY9d7k6AH4MmRpt6m94bSikczYxCX8o="
+
typstDeps = []
+
description = "Syntax highlighting support for Siddhi"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/mahgoh/typst-siddhi-syntax"
+
+
[sigfig."0.1.0"]
+
url = "https://packages.typst.org/preview/sigfig-0.1.0.tar.gz"
+
hash = "sha256-C/AoEPkroDYqtHr+r3rzQmdAvE8M9di0rE5EIcOWcsk="
+
typstDeps = []
+
description = "Typst library for rounding numbers with significant figures and measurement uncertainty"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OverflowCat/sigfig"
+
+
[silky-letter-insa."0.2.2"]
+
url = "https://packages.typst.org/preview/silky-letter-insa-0.2.2.tar.gz"
+
hash = "sha256-ruLgBs2EJfNGuPQJjRxdwr4mmJzBfsy8xFpAXG75tgM="
+
typstDeps = []
+
description = "A template made for letters and short documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-letter-insa."0.2.1"]
+
url = "https://packages.typst.org/preview/silky-letter-insa-0.2.1.tar.gz"
+
hash = "sha256-ti8+8wMbf+8AEv5720OSLgNsvw8O7wSDF+CqnNDsCFg="
+
typstDeps = []
+
description = "A template made for letters and short documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-letter-insa."0.2.0"]
+
url = "https://packages.typst.org/preview/silky-letter-insa-0.2.0.tar.gz"
+
hash = "sha256-kRQtM3XvXxFbYwjE8OeDGGIR+WGnOHS0c1uB8YH4uQc="
+
typstDeps = []
+
description = "A template made for letters and short documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-letter-insa."0.1.0"]
+
url = "https://packages.typst.org/preview/silky-letter-insa-0.1.0.tar.gz"
+
hash = "sha256-0PyOWEZ1jfN/PntiRLy68914845kzJbj8qH72NESd9g="
+
typstDeps = []
+
description = "A template made for letters and short documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-report-insa."0.4.0"]
+
url = "https://packages.typst.org/preview/silky-report-insa-0.4.0.tar.gz"
+
hash = "sha256-Pcsnm1nYr1xTKZ8x0vRQDn8oqy2HvbEGa7Rf1eZbETg="
+
typstDeps = []
+
description = "A template made for reports and other documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-report-insa."0.3.1"]
+
url = "https://packages.typst.org/preview/silky-report-insa-0.3.1.tar.gz"
+
hash = "sha256-EiZYvQ1qp8I2BpTfgHiIp8eRVNxPmaZ1mrjTpEaY1rE="
+
typstDeps = []
+
description = "A template made for reports and other documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-report-insa."0.3.0"]
+
url = "https://packages.typst.org/preview/silky-report-insa-0.3.0.tar.gz"
+
hash = "sha256-R8DTFJG0cjnhJLtYiD65NTZ0a0S3gRda8n55nE6zt0A="
+
typstDeps = []
+
description = "A template made for reports and other documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-report-insa."0.2.1"]
+
url = "https://packages.typst.org/preview/silky-report-insa-0.2.1.tar.gz"
+
hash = "sha256-2m2dgH2ac9sAcEV/8blrInEs5ZeJL+rF1mEUawbRnqI="
+
typstDeps = []
+
description = "A template made for reports and other documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-report-insa."0.2.0"]
+
url = "https://packages.typst.org/preview/silky-report-insa-0.2.0.tar.gz"
+
hash = "sha256-SxOjHr4/wWdsT8hacaTh4otnkpnFHEY7b4GYr5qkGyA="
+
typstDeps = []
+
description = "A template made for reports and other documents of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-report-insa."0.1.0"]
+
url = "https://packages.typst.org/preview/silky-report-insa-0.1.0.tar.gz"
+
hash = "sha256-Y4vZFmmfyJvuiYmzOzhZKp/JnXmrIE4axPdnzFG8oWo="
+
typstDeps = []
+
description = "A template made for reports of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-slides-insa."0.1.1"]
+
url = "https://packages.typst.org/preview/silky-slides-insa-0.1.1.tar.gz"
+
hash = "sha256-BqE3dTunGJHLeOsCSqtzAYOLXTdyfLVK38NAyJCqeSk="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "A template made for presentations of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silky-slides-insa."0.1.0"]
+
url = "https://packages.typst.org/preview/silky-slides-insa-0.1.0.tar.gz"
+
hash = "sha256-JWUqxkF/kxhjINUbhr1fLrEL52UeAo/FepCktHYuUak="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "A template made for presentations of INSA, a French engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SkytAsul/INSA-Typst-Template"
+
+
[silver-dev-cv."1.0.2"]
+
url = "https://packages.typst.org/preview/silver-dev-cv-1.0.2.tar.gz"
+
hash = "sha256-T34FG7ouWLzB3opd87X1YqCxatL9UZchZSbt2gwflPM="
+
typstDeps = []
+
description = "A CV template by an engineer-recruiter, used by https://silver.dev"
+
license = [
+
"MIT",
+
]
+
+
[silver-dev-cv."1.0.1"]
+
url = "https://packages.typst.org/preview/silver-dev-cv-1.0.1.tar.gz"
+
hash = "sha256-NRB6QE0ek0SnP5oTET/VIPWuJtEm+tWicNspTQ32TrA="
+
typstDeps = []
+
description = "A CV template by an engineer-recruiter, used by https://silver.dev"
+
license = [
+
"MIT",
+
]
+
+
[silver-dev-cv."1.0.0"]
+
url = "https://packages.typst.org/preview/silver-dev-cv-1.0.0.tar.gz"
+
hash = "sha256-Eajgfx+RSm+k02+yLH4fln4w66KVwPiqGpFjmnUh5kc="
+
typstDeps = []
+
description = "A CV template by an engineer-recruiter, used by https://silver.dev"
+
license = [
+
"MIT",
+
]
+
+
[simple-preavis."0.1.0"]
+
url = "https://packages.typst.org/preview/simple-preavis-0.1.0.tar.gz"
+
hash = "sha256-x5dtbcF3MGGGkGjAYSLHphn7XcrCnmRsf1g27aAq3vI="
+
typstDeps = []
+
description = "📖 a french move out letter"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/mathias-aparicio/simple-preavis"
+
+
[simple-technical-resume."0.1.0"]
+
url = "https://packages.typst.org/preview/simple-technical-resume-0.1.0.tar.gz"
+
hash = "sha256-XzLJthRwSu8YvkdmzbyT7l9deqarweOQoFbT11+5H6A="
+
typstDeps = []
+
description = "A simple technical resume designed to fit within a page and work well with ATS"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/steadyfall/simple-technical-resume-template"
+
+
[simplebnf."0.1.1"]
+
url = "https://packages.typst.org/preview/simplebnf-0.1.1.tar.gz"
+
hash = "sha256-dGCrPJW/E4rRKwO8Q+M0g1+zuC5N58Y5nrp1l4Q/9W8="
+
typstDeps = []
+
description = "A simple package to format Backus-Naur form (BNF"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Zeta611/simplebnf.typ"
+
+
[simplebnf."0.1.0"]
+
url = "https://packages.typst.org/preview/simplebnf-0.1.0.tar.gz"
+
hash = "sha256-32BeECLqeHbvj5zpxsApt0M3GxgCuyhZ5gVuL/5Aung="
+
typstDeps = []
+
description = "A simple package to format Backus-Naur form (BNF"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Zeta611/simplebnf.typ"
+
+
[simpleplot."0.1.1"]
+
url = "https://packages.typst.org/preview/simpleplot-0.1.1.tar.gz"
+
hash = "sha256-7y2S2K8R5kXUT4TDDE958ufImyGZBoHhIsrM0oARSjQ="
+
typstDeps = [
+
"cetz_0_3_2",
+
"cetz-plot_0_1_1",
+
]
+
description = "A super simple Package to make graphs as simple as possible"
+
license = [
+
"MIT",
+
]
+
+
[simpleplot."0.1.0"]
+
url = "https://packages.typst.org/preview/simpleplot-0.1.0.tar.gz"
+
hash = "sha256-Fckts2mNXv4ka+uVMPw+XUicsEVVtuMN/hYs1ryQ+iY="
+
typstDeps = [
+
"cetz_0_3_2",
+
"cetz-plot_0_1_1",
+
]
+
description = "A super simple Package to make graphs as simple as possible"
+
license = [
+
"MIT",
+
]
+
+
[slashion."0.1.1"]
+
url = "https://packages.typst.org/preview/slashion-0.1.1.tar.gz"
+
hash = "sha256-+Of97r2QKogqS4nkYjWDbZxZLb2zcribS/rsthXLoTg="
+
typstDeps = []
+
description = "Fractions with slash"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sjfhsjfh/slashion"
+
+
[slashion."0.1.0"]
+
url = "https://packages.typst.org/preview/slashion-0.1.0.tar.gz"
+
hash = "sha256-4WniVRqnJTjCeYfs+kX/jsNr/WWI4aBpumAkebY9gkQ="
+
typstDeps = []
+
description = "Fractions with slash"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sjfhsjfh/slashion"
+
+
[sleek-university-assignment."0.1.0"]
+
url = "https://packages.typst.org/preview/sleek-university-assignment-0.1.0.tar.gz"
+
hash = "sha256-yxbLt/VNoK/CgiW5DDlT5yksV4loWoKdLXQ7BFMwlCg="
+
typstDeps = []
+
description = "A sleek template for university assignments"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/UtkarshVerma/sleek-university-assignment"
+
+
[slydst."0.1.4"]
+
url = "https://packages.typst.org/preview/slydst-0.1.4.tar.gz"
+
hash = "sha256-34VTPaekOfhY1jAt67QmHWHyYcnpv7TcgJMa1xe5pI0="
+
typstDeps = []
+
description = "Create simple static slides using standard headings"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/glambrechts/slydst"
+
+
[slydst."0.1.3"]
+
url = "https://packages.typst.org/preview/slydst-0.1.3.tar.gz"
+
hash = "sha256-3YLm05Rdz00hdx1bSR7kZhapnQOo2X7id7NdEC5sOhA="
+
typstDeps = [
+
"slydst_0_1_2",
+
]
+
description = "Create simple static slides using standard headings"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/glambrechts/slydst"
+
+
[slydst."0.1.2"]
+
url = "https://packages.typst.org/preview/slydst-0.1.2.tar.gz"
+
hash = "sha256-r+MzJlQLGJXfgy47O9CMZRLbSQVneG8/KTPpTr4jCxk="
+
typstDeps = []
+
description = "Create simple static slides using standard headings"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/glambrechts/slydst"
+
+
[slydst."0.1.1"]
+
url = "https://packages.typst.org/preview/slydst-0.1.1.tar.gz"
+
hash = "sha256-ke1otx9ZD55QhDliOgdEhKqaqpvH47xVNTVQqRZUllM="
+
typstDeps = []
+
description = "Create simple static slides using standard headings"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/glambrechts/slydst"
+
+
[slydst."0.1.0"]
+
url = "https://packages.typst.org/preview/slydst-0.1.0.tar.gz"
+
hash = "sha256-69MWx3bpnAVGHy3gbk+HWEy6PKWilmDxS/+7bsGUd+I="
+
typstDeps = []
+
description = "Create simple static slides using standard headings"
+
license = [
+
"MIT",
+
]
+
+
[smooth-tmlr."0.4.0"]
+
url = "https://packages.typst.org/preview/smooth-tmlr-0.4.0.tar.gz"
+
hash = "sha256-qJ/+wPqqN/ZYYkTil4YIs8hUc+SustHn0ERBT7QX0sE="
+
typstDeps = []
+
description = "Paper template for submission to Transaction on Machine Learning Research (TMLR"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/daskol/typst-templates"
+
+
[smooth-tmlr."0.3.0"]
+
url = "https://packages.typst.org/preview/smooth-tmlr-0.3.0.tar.gz"
+
hash = "sha256-WaohD/Wgn21xaw4FS4X2wIdKfT25oBVpjpp7AIBQpjY="
+
typstDeps = []
+
description = "Paper template for submission to Transaction on Machine Learning Research (TMLR"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/daskol/typst-templates"
+
+
[socialhub-fa."1.0.0"]
+
url = "https://packages.typst.org/preview/socialhub-fa-1.0.0.tar.gz"
+
hash = "sha256-peWWI/ULorfjvD7I8+rh9jm9MIrI/p+8y/kaH9MKM3k="
+
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-socialhub-fa"
+
+
[solving-physics."0.1.0"]
+
url = "https://packages.typst.org/preview/solving-physics-0.1.0.tar.gz"
+
hash = "sha256-aioIHCKBnf8BBlYvO1UtrQ27o1/oCEvRieY1I29V3Sg="
+
typstDeps = [
+
"wrap-it_0_1_0",
+
]
+
description = "A package to formulate the solution to a physical problem"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/yegorweb/solving-physics"
+
+
[songb."0.1.0"]
+
url = "https://packages.typst.org/preview/songb-0.1.0.tar.gz"
+
hash = "sha256-8QKMVaxspZ61yRe/JNNkmWYOLjJl2vmw1jy/vqi44Qo="
+
typstDeps = []
+
description = "A songbook package, to display chords above the lyrics and show a number-based index (similar to patacrep"
+
license = [
+
"EUPL-1.2",
+
]
+
homepage = "https://codeberg.org/pfad.fr/typst-songbook"
+
+
[sourcerer."0.2.1"]
+
url = "https://packages.typst.org/preview/sourcerer-0.2.1.tar.gz"
+
hash = "sha256-WrNizB+4ZYOoIOlJxiuzaWqaI7htDzuGjJ5ZsmfxiAA="
+
typstDeps = []
+
description = "Customizable and flexible source-code blocks"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/miestrode/sourcerer"
+
+
[sourcerer."0.2.0"]
+
url = "https://packages.typst.org/preview/sourcerer-0.2.0.tar.gz"
+
hash = "sha256-QiqlZT5GErfI2jxQYsshC3IbCb+CCmcYjBi+II51sVI="
+
typstDeps = []
+
description = "Customizable and flexible source-code blocks"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/miestrode/sourcerer"
+
+
[sourcerer."0.1.0"]
+
url = "https://packages.typst.org/preview/sourcerer-0.1.0.tar.gz"
+
hash = "sha256-H/dnNxcF+ESQBm99dduyHlu11PEIaBFmTFYkwotBULM="
+
typstDeps = []
+
description = "Show code in a flexible, customizable way"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/miestrode/sourcerer"
+
+
[soviet-matrix."0.2.0"]
+
url = "https://packages.typst.org/preview/soviet-matrix-0.2.0.tar.gz"
+
hash = "sha256-8b/4OqWjlSVdGy1UlgIvqC4SEY81OPvNd1cvWPYmdKo="
+
typstDeps = [
+
"suiji_0_3_0",
+
]
+
description = "Tetris game in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/YouXam/soviet-matrix"
+
+
[soviet-matrix."0.1.1"]
+
url = "https://packages.typst.org/preview/soviet-matrix-0.1.1.tar.gz"
+
hash = "sha256-cGHI8FsYv1NDKSZWCFQAqnT+mUeL7CkqSItHfVhsNVc="
+
typstDeps = [
+
"soviet-matrix_0_1_0",
+
"suiji_0_3_0",
+
]
+
description = "Tetris game in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/YouXam/soviet-matrix"
+
+
[soviet-matrix."0.1.0"]
+
url = "https://packages.typst.org/preview/soviet-matrix-0.1.0.tar.gz"
+
hash = "sha256-f4jlDZYXsDcDv5bBLbJnu+pjTiaGbfn3b1v1Ypzyi0U="
+
typstDeps = [
+
"suiji_0_3_0",
+
]
+
description = "Tetris game in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/YouXam/soviet-matrix"
+
+
[splash."0.4.0"]
+
url = "https://packages.typst.org/preview/splash-0.4.0.tar.gz"
+
hash = "sha256-NEEj4XVL18RRz96kqkUQW/aJ0p937PieIKQEgcpkP1k="
+
typstDeps = []
+
description = "A library of color palettes for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/kaarmu/typst-palettes"
+
+
[splash."0.3.0"]
+
url = "https://packages.typst.org/preview/splash-0.3.0.tar.gz"
+
hash = "sha256-cAc2yvkZ1YDgKAeiALkeDvYfyV6zmxlTYl5/1SwAd60="
+
typstDeps = []
+
description = "A library of color palettes for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/kaarmu/typst-palettes"
+
+
[splendid-mdpi."0.1.0"]
+
url = "https://packages.typst.org/preview/splendid-mdpi-0.1.0.tar.gz"
+
hash = "sha256-9R40v7NJV8bhBsEf4OM3kMD4mQ61Dn9xBVclURj6EHA="
+
typstDeps = [
+
"physica_0_9_3",
+
]
+
description = "An MDPI-style paper template to publish at conferences and journals"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/JamesxX/splendid-mdpi"
+
+
[spreet."0.1.0"]
+
url = "https://packages.typst.org/preview/spreet-0.1.0.tar.gz"
+
hash = "sha256-Nuze5zIh0iqOjH2BWW0tlYh2a6l97xP32tAoKfxOug0="
+
typstDeps = []
+
description = "Parse a spreadsheet"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/lublak/typst-spreet-package"
+
+
[springer-spaniel."0.1.0"]
+
url = "https://packages.typst.org/preview/springer-spaniel-0.1.0.tar.gz"
+
hash = "sha256-/UDMhefJPvw6VZXh7igYSLNaWU+H7VIOF7CAVxwMYu4="
+
typstDeps = [
+
"board-n-pieces_0_4_0",
+
"chromo_0_1_0",
+
"codly_0_2_0",
+
"ctheorems_1_1_2",
+
"dining-table_0_1_0",
+
"drafting_0_2_0",
+
"gentle-clues_0_9_0",
+
"physica_0_9_3",
+
]
+
description = "A loose recreation of the Springer Contributed Chapter template on Overleaf"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/JamesxX/springer-spaniel"
+
+
[ssrn-scribe."0.7.0"]
+
url = "https://packages.typst.org/preview/ssrn-scribe-0.7.0.tar.gz"
+
hash = "sha256-7DhbQfz2EuGtQph7aAy8k/YG5Raik8Ogz7z8b0RV/ng="
+
typstDeps = [
+
"cetz_0_3_1",
+
"great-theorems_0_1_1",
+
"mitex_0_2_4",
+
"rich-counters_0_2_1",
+
"tablem_0_1_0",
+
"tablex_0_0_8",
+
]
+
description = "Personal working paper template for general doc and SSRN paper"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+
[ssrn-scribe."0.6.0"]
+
url = "https://packages.typst.org/preview/ssrn-scribe-0.6.0.tar.gz"
+
hash = "sha256-ZI+FM8ML+2NsQAKzQiiDgn9KcjvPhDAb8cgrxkuf+DE="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"mitex_0_2_4",
+
"tablem_0_1_0",
+
"tablex_0_0_8",
+
]
+
description = "Personal working paper template for general doc and SSRN paper"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+
[ssrn-scribe."0.5.0"]
+
url = "https://packages.typst.org/preview/ssrn-scribe-0.5.0.tar.gz"
+
hash = "sha256-/A5GRRNrcajeBtLYb8GQ8qgHZXYIfHUnVdpFFTp5XEk="
+
typstDeps = [
+
"cetz_0_2_1",
+
"ctheorems_1_1_2",
+
"mitex_0_2_2",
+
"tablem_0_1_0",
+
"tablex_0_0_8",
+
]
+
description = "Personal working paper template for general doc and SSRN paper"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+
[ssrn-scribe."0.4.9"]
+
url = "https://packages.typst.org/preview/ssrn-scribe-0.4.9.tar.gz"
+
hash = "sha256-CgqIC4uk7mdTB1Nay8r+wdwXG01xYKxUZu1vCJ2L8j0="
+
typstDeps = [
+
"cetz_0_2_1",
+
"ctheorems_1_1_0",
+
"mitex_0_2_2",
+
"tablem_0_1_0",
+
"tablex_0_0_8",
+
]
+
description = "Personal working paper template for general doc and SSRN paper"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jxpeng98/Typst-Paper-Template"
+
+
[stack-pointer."0.1.0"]
+
url = "https://packages.typst.org/preview/stack-pointer-0.1.0.tar.gz"
+
hash = "sha256-A0oAaLVMQVZN9C/0NkC8Kkc8vmebjahLKnSPR0wavbI="
+
typstDeps = [
+
"codly_0_2_0",
+
"polylux_0_3_1",
+
"tidy_0_2_0",
+
]
+
description = "A library for visualizing the execution of (imperative) computer programs"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/SillyFreak/typst-stack-pointer"
+
+
[starter-journal-article."0.3.2"]
+
url = "https://packages.typst.org/preview/starter-journal-article-0.3.2.tar.gz"
+
hash = "sha256-zIv5xE2rmkTPQOvUVd7/S8aVgBg27+yKaiGx250PNgo="
+
typstDeps = []
+
description = "A starter template for journal articles"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+
[starter-journal-article."0.3.1"]
+
url = "https://packages.typst.org/preview/starter-journal-article-0.3.1.tar.gz"
+
hash = "sha256-BXeP89PQNhZdGM5brK4aVo2f4T4+1bmQGKJSYfElrP0="
+
typstDeps = []
+
description = "A starter template for journal articles"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+
[starter-journal-article."0.3.0"]
+
url = "https://packages.typst.org/preview/starter-journal-article-0.3.0.tar.gz"
+
hash = "sha256-OnbQ8RGubDpD0UvDZtDkmIOETJe4evQzqRi3/Y+tfUw="
+
typstDeps = []
+
description = "A starter template for journal articles"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+
[starter-journal-article."0.2.0"]
+
url = "https://packages.typst.org/preview/starter-journal-article-0.2.0.tar.gz"
+
hash = "sha256-wtZwHT/lQ2lT9L1jUEmppPEk91/mBVyHXqB2N2M/5G4="
+
typstDeps = []
+
description = "A starter template for journal articles"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+
[starter-journal-article."0.1.1"]
+
url = "https://packages.typst.org/preview/starter-journal-article-0.1.1.tar.gz"
+
hash = "sha256-TkYgy+c+AXHm06OJlIPNP0zfVmjeoz5FluIjPXpyaA0="
+
typstDeps = []
+
description = "A starter template for journal articles"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/typst-starter-journal-article"
+
+
[statastic."1.0.0"]
+
url = "https://packages.typst.org/preview/statastic-1.0.0.tar.gz"
+
hash = "sha256-zAYUeBwLwXHhLVBdYenuEpcG0RTBh0lBbqAiPXDafoY="
+
typstDeps = []
+
description = "A library to calculate statistics for numerical data"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/dikkadev/typst-statastic"
+
+
[statastic."0.1.0"]
+
url = "https://packages.typst.org/preview/statastic-0.1.0.tar.gz"
+
hash = "sha256-X9rjlIKVaq36ghKovx0aJVS+Z47owij4mLOPcLrvOX0="
+
typstDeps = []
+
description = "A library to calculate statistics for numerical data"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/Sett17/typst-statastic"
+
+
[statementsp."0.1.0"]
+
url = "https://packages.typst.org/preview/statementsp-0.1.0.tar.gz"
+
hash = "sha256-m+t+94e5wAUrzZrrirROoJceuShgHDrUzqIK1biUdL4="
+
typstDeps = [
+
"headcount_0_1_0",
+
"showybox_2_0_4",
+
]
+
description = "Happy statement box and its cross referrence system"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Riley719/typst-statementsp"
+
+
[stellar-iac."0.4.1"]
+
url = "https://packages.typst.org/preview/stellar-iac-0.4.1.tar.gz"
+
hash = "sha256-vxJ+YZEpi3w8pkFhmupmifPOI8G8A+tS8sJ+bGEsreM="
+
typstDeps = []
+
description = "Template for the International Astronautical Congress (IAC) manuscript"
+
license = [
+
"MIT",
+
"MIT-0",
+
]
+
homepage = "https://github.com/shunichironomura/iac-typst-template"
+
+
[stonewall."0.2.0"]
+
url = "https://packages.typst.org/preview/stonewall-0.2.0.tar.gz"
+
hash = "sha256-Xyjl2qjhs1Vy2i7YYbKTgUtYa915Nk0zv12kWS2bmcs="
+
typstDeps = []
+
description = "Stonewall provides beautiful pride flag colours for gradients"
+
license = [
+
"GPL-3.0-or-later",
+
]
+
homepage = "https://github.com/vanilla-extracts/stonewall"
+
+
[stonewall."0.1.0"]
+
url = "https://packages.typst.org/preview/stonewall-0.1.0.tar.gz"
+
hash = "sha256-oY35Sbn6emAPYoxrrNjcGVohUU2bmUggQDHfgB1TanU="
+
typstDeps = []
+
description = "Stonewall provides beautiful pride flag colours for gradients"
+
license = [
+
"GPL-3.0-or-later",
+
]
+
homepage = "https://github.com/coco33920/stonewall"
+
+
[structogrammer."0.1.1"]
+
url = "https://packages.typst.org/preview/structogrammer-0.1.1.tar.gz"
+
hash = "sha256-kC2pidzajg6i7cJbLodRb0JwTuA3ZuCjrfNzJ+a7OeI="
+
typstDeps = []
+
description = "Draw Nassi-Shneiderman diagrams (or structograms"
+
license = [
+
"MIT",
+
]
+
+
[structogrammer."0.1.0"]
+
url = "https://packages.typst.org/preview/structogrammer-0.1.0.tar.gz"
+
hash = "sha256-3liDyEVrTgYRHGUVPJkvkvlbu2T7wEQFt7mVpJI7Mq0="
+
typstDeps = []
+
description = "Draw Nassi-Shneiderman diagrams (or structograms"
+
license = [
+
"MIT",
+
]
+
+
[structured-uib."0.1.0"]
+
url = "https://packages.typst.org/preview/structured-uib-0.1.0.tar.gz"
+
hash = "sha256-7grAe2JRSNF4FWqhvGcJ8eFEbIO8TYO+cqCEYncLl2E="
+
typstDeps = [
+
"codedis_0_1_0",
+
]
+
description = "Lab report template for the course PHYS114 at the University of Bergen"
+
license = [
+
"MIT",
+
"MIT-0",
+
]
+
homepage = "https://github.com/AugustinWinther/structured-uib"
+
+
[stundenzettel."0.1.0"]
+
url = "https://packages.typst.org/preview/stundenzettel-0.1.0.tar.gz"
+
hash = "sha256-w5nGWIKvf6xSjQGjpWYJ2hpsDwEyJ6xuurAwxLrwdKk="
+
typstDeps = []
+
description = "Track your work hours with typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/bratorange/stundenzettel.typ"
+
+
[stv-vub-huisstijl."0.1.0"]
+
url = "https://packages.typst.org/preview/stv-vub-huisstijl-0.1.0.tar.gz"
+
hash = "sha256-/6Fjn0MMOgye1F+U3hVUvKW96btm11rP52OGRpUWNDQ="
+
typstDeps = [
+
"cetz_0_3_0",
+
]
+
description = "An unofficial template to get the look of the Vrije Universiteit Brussel (VUB) huisstijl in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/WannesMalfait/vub-huisstijl-typst/"
+
+
[suboutline."0.3.0"]
+
url = "https://packages.typst.org/preview/suboutline-0.3.0.tar.gz"
+
hash = "sha256-k3sheGkdYqFHM5MPuZ4mo8DxDBKyCpafrTfvPZRz44M="
+
typstDeps = []
+
description = "An outline function just for one section and nothing else"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/sdiebolt/suboutline"
+
+
[suboutline."0.2.0"]
+
url = "https://packages.typst.org/preview/suboutline-0.2.0.tar.gz"
+
hash = "sha256-YL7vpO1WAeBx7waQgMMNMDOj2sgXt2a+Q2MK9AHowpU="
+
typstDeps = []
+
description = "An outline function just for one section and nothing else"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/sdiebolt/suboutline"
+
+
[suboutline."0.1.0"]
+
url = "https://packages.typst.org/preview/suboutline-0.1.0.tar.gz"
+
hash = "sha256-lRndpl7d9Kly3QONtmSF2f10l9YTyDrGa3oxbsFpf80="
+
typstDeps = []
+
description = "An outline function just for one section and nothing else"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/sdiebolt/suboutline"
+
+
[subpar."0.2.2"]
+
url = "https://packages.typst.org/preview/subpar-0.2.2.tar.gz"
+
hash = "sha256-0LO0fBBee8rMKnKpNZWKSo6YFL3R5SXOES0fAdWu7Ic="
+
typstDeps = []
+
description = "Create sub figures easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tingerrr/subpar"
+
+
[subpar."0.2.1"]
+
url = "https://packages.typst.org/preview/subpar-0.2.1.tar.gz"
+
hash = "sha256-+e1yF/OBGf9uGP5F2F5BQsRtdR2fF0JUqydrSr50AKM="
+
typstDeps = []
+
description = "Create sub figures easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tingerrr/subpar"
+
+
[subpar."0.2.0"]
+
url = "https://packages.typst.org/preview/subpar-0.2.0.tar.gz"
+
hash = "sha256-dYN0lYgbJg30eYI1btCuXewlNbJn+U8342AETisWniQ="
+
typstDeps = [
+
"hydra_0_4_0",
+
"t4t_0_3_2",
+
]
+
description = "Create sub figures easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tingerrr/subpar"
+
+
[subpar."0.1.1"]
+
url = "https://packages.typst.org/preview/subpar-0.1.1.tar.gz"
+
hash = "sha256-7ahfFv9uBDkMV23TqXGHple0eiMcoKl4l2kDbYmHZW4="
+
typstDeps = [
+
"t4t_0_3_2",
+
]
+
description = "Create sub figures easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tingerrr/subpar"
+
+
[subpar."0.1.0"]
+
url = "https://packages.typst.org/preview/subpar-0.1.0.tar.gz"
+
hash = "sha256-jD8kGERNxPqxBv5hJiRfJVX0VmjnwtSIu3cHxbZ8dw0="
+
typstDeps = [
+
"t4t_0_3_2",
+
]
+
description = "Create sub figures easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tingerrr/subpar"
+
+
[suiji."0.3.0"]
+
url = "https://packages.typst.org/preview/suiji-0.3.0.tar.gz"
+
hash = "sha256-Fu5fl35phzkx7cWezobq1pB17YyQVGdZ31XDJDdI5EY="
+
typstDeps = [
+
"cetz_0_2_2",
+
]
+
description = "A high efficient random number generator in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/liuguangxi/suiji"
+
+
[suiji."0.2.2"]
+
url = "https://packages.typst.org/preview/suiji-0.2.2.tar.gz"
+
hash = "sha256-22RunIHJlrIroWY/pPqU+paKuy4Lu3UtgTl6eDdjGhE="
+
typstDeps = [
+
"cetz_0_2_2",
+
]
+
description = "A high efficient random number generator in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/liuguangxi/suiji"
+
+
[suiji."0.2.1"]
+
url = "https://packages.typst.org/preview/suiji-0.2.1.tar.gz"
+
hash = "sha256-C3+16Q1MUJVYcZRzfTku2Yh5NkXHdWIljIuV5B8DhgA="
+
typstDeps = [
+
"cetz_0_2_2",
+
]
+
description = "A high efficient random number generator in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/liuguangxi/suiji"
+
+
[suiji."0.2.0"]
+
url = "https://packages.typst.org/preview/suiji-0.2.0.tar.gz"
+
hash = "sha256-nLIMAB+ihAerJncvoZV+zLXyrEKqoJ30k3jRXl8+Mqo="
+
typstDeps = [
+
"cetz_0_2_2",
+
]
+
description = "A high efficient random number generator in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/liuguangxi/suiji"
+
+
[suiji."0.1.0"]
+
url = "https://packages.typst.org/preview/suiji-0.1.0.tar.gz"
+
hash = "sha256-r0+wFkVT0V3W8+0hmKRtvYXLz4gp4Z2qx6Lvab/nQ/A="
+
typstDeps = [
+
"cetz_0_2_1",
+
]
+
description = "A high efficient random number generator in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/liuguangxi/suiji"
+
+
[summy."0.1.0"]
+
url = "https://packages.typst.org/preview/summy-0.1.0.tar.gz"
+
hash = "sha256-y7aobnRmJJTqgQ3QXxVvF+Tr9IEzXIDtC5gbMSgZBpU="
+
typstDeps = [
+
"lovelace_0_3_0",
+
]
+
description = "Generate cheatsheets with automatic colour coding and sectioning with a focus on space-efficiency"
+
license = [
+
"MIT",
+
]
+
+
[sunny-famnit."0.2.0"]
+
url = "https://packages.typst.org/preview/sunny-famnit-0.2.0.tar.gz"
+
hash = "sha256-hgtQQlXpud9mFtRlsiOu4NjUrGXgUVNmepjF9BYGhkw="
+
typstDeps = []
+
description = "Thesis template for University of Primorska, FAMNIT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Tiggax/famnit_typst_template"
+
+
[sunny-famnit."0.1.0"]
+
url = "https://packages.typst.org/preview/sunny-famnit-0.1.0.tar.gz"
+
hash = "sha256-6qia12R2eyA6oqpLeQwXwTznV01CbJ/j2VXscrDdh7g="
+
typstDeps = []
+
description = "Thesis template for University of Primorska, FAMNIT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Tiggax/famnit_typst_template"
+
+
[sunny-orasis."0.1.1"]
+
url = "https://packages.typst.org/preview/sunny-orasis-0.1.1.tar.gz"
+
hash = "sha256-zuhGs2vdw3YUw7jO9RTu0cdZrGXDkMDtOqeZcsAnzA4="
+
typstDeps = []
+
description = "A paper template made for the French national conference ORASIS following the author guidelines (also works for RFIAP and CAP"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/edgaremy/typst-sunny-orasis"
+
+
[sunny-orasis."0.1.0"]
+
url = "https://packages.typst.org/preview/sunny-orasis-0.1.0.tar.gz"
+
hash = "sha256-fvTdOq6jHcWFiqNjgTmIw+GWd5OL86w3mGiC0c/aX1Q="
+
typstDeps = []
+
description = "A paper template made for the French national conference ORASIS following the author guidelines (also works for RFIAP and CAP"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/edgaremy/typst-sunny-orasis"
+
+
[super-suboptimal."0.1.0"]
+
url = "https://packages.typst.org/preview/super-suboptimal-0.1.0.tar.gz"
+
hash = "sha256-ljpWIcKuGoYeDKewU6Yq77TYsiIISVyguPwCqaQM6B0="
+
typstDeps = []
+
description = "Unicode super- and subscripts in equations"
+
license = [
+
"MIT",
+
]
+
+
[superb-pci."0.1.0"]
+
url = "https://packages.typst.org/preview/superb-pci-0.1.0.tar.gz"
+
hash = "sha256-nU4NQ+ZC2E3HBcK0GDR+TskJ4fBipsKCKTTWShttfQU="
+
typstDeps = []
+
description = "A Peer Community In (PCI) and Peer Community Journal (PCJ) template"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://codeberg.org/alxsim/superb-pci"
+
+
[supercharged-dhbw."3.4.1"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.4.1.tar.gz"
+
hash = "sha256-Ft8gaJeJrRRmycdAB5S6a7M5/G1mU0E7Zq7zZgGMpAo="
+
typstDeps = [
+
"codelst_2_0_2",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.4.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.4.0.tar.gz"
+
hash = "sha256-hnbWr3M3OPmILYcvmj1Xz1IEMBqLR9IFumRFUa+mJtY="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.3.2"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.3.2.tar.gz"
+
hash = "sha256-pROAsh785O1iYLBeRRciHpETborrAjss46XtdVYsMB4="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.3.1"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.3.1.tar.gz"
+
hash = "sha256-/4Abm9nCDwbwQV0YtwYBryZ3IfZFvEYBaOC/sFkR5rI="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.3.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.3.0.tar.gz"
+
hash = "sha256-ew5XTm83U0zaWQ3t9OtO8HnEB/0uY4GOg3dSNG5auAg="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.2.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.2.0.tar.gz"
+
hash = "sha256-SHKCDTCCnf1wSGnXJ87Zwr4A7HsZd/hW2nL4kK5l414="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.1.1"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.1.1.tar.gz"
+
hash = "sha256-rGvpwoA5S1sPA9BFmJYrerLOgFYkrXwLdfnreohNYXw="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.1.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.1.0.tar.gz"
+
hash = "sha256-AZOaMHNiYnWIBHb5X4JwkMuCcs5ZhxIELmFTjjiiFu4="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."3.0.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-3.0.0.tar.gz"
+
hash = "sha256-a/jdO19FDRWRSpmH3p2T54XiCCK9QHjPxvFNitXZuDc="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."2.2.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-2.2.0.tar.gz"
+
hash = "sha256-Yy+kyWXDuq0KHz+AtVv435BqJR8n1zXGNuwmQptdWqw="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."2.1.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-2.1.0.tar.gz"
+
hash = "sha256-vCD5IGFru13YkxKqonVE+CMIuQkrwaHTQb2p+v8/C9w="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."2.0.2"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-2.0.2.tar.gz"
+
hash = "sha256-29rhEHTCRdG4CpowQBW4mJReZoaGPyEVXTcEzY9bT0s="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."2.0.1"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-2.0.1.tar.gz"
+
hash = "sha256-QgCiMvs+BEb1Ud44iQ0tfv1jHXhN0HsKziOmS01PpL4="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."2.0.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-2.0.0.tar.gz"
+
hash = "sha256-L7j955kzw8BQ51UpGhlBih4ZanNa5E6C3qBw0i4v60Y="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."1.5.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-1.5.0.tar.gz"
+
hash = "sha256-HaL+Z2zwYRm7h7ycuM02g6qg/ndGEyS2jU6oA7IVqEA="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."1.4.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-1.4.0.tar.gz"
+
hash = "sha256-bLYvHbxGHdxaj3/OgwGcm7YFOODa43pOB8epTRFjNsc="
+
typstDeps = [
+
"acrostiche_0_3_1",
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."1.3.1"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-1.3.1.tar.gz"
+
hash = "sha256-H2z1UFtS5qP5JyjF3YZ/qkAo/G/R0fEpHB/eiTZK+kY="
+
typstDeps = [
+
"acrostiche_0_3_1",
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."1.3.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-1.3.0.tar.gz"
+
hash = "sha256-rO1Gn8ID4Ernt4AnVdPsHsJKeeau3Ifer2biKAG+Hu0="
+
typstDeps = [
+
"acrostiche_0_3_1",
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."1.2.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-1.2.0.tar.gz"
+
hash = "sha256-xbb/Gu5DWJ0dWByhwO6b16YhpoMF0cirI2ZHfoa3OI4="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."1.1.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-1.1.0.tar.gz"
+
hash = "sha256-B12gcwU4Lzos9qyCEvBJWcz3fMAWwaOodCB00AejjDs="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[supercharged-dhbw."1.0.0"]
+
url = "https://packages.typst.org/preview/supercharged-dhbw-1.0.0.tar.gz"
+
hash = "sha256-5TP7jaGHv8hrN+v5IcnKdZFiGK2T+d8T3CjJiud8Cyc="
+
typstDeps = [
+
"codelst_2_0_1",
+
]
+
description = "Unofficial Template for DHBW"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/DannySeidel/typst-dhbw-template"
+
+
[swank-tex."0.1.0"]
+
url = "https://packages.typst.org/preview/swank-tex-0.1.0.tar.gz"
+
hash = "sha256-3QcMzmvAghyaqtRUL6G7NU+XFKTiXNWQL5NgT4pRY40="
+
typstDeps = [
+
"codly_1_0_0",
+
"codly-languages_0_1_1",
+
]
+
description = "Render those funky logos for TeX, LaTeX, and friends"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/swaits/typst-collection"
+
+
[swe-cv."1.0.0"]
+
url = "https://packages.typst.org/preview/swe-cv-1.0.0.tar.gz"
+
hash = "sha256-X//SJ3InPLqrXXSquT7YcLRa9vyyQj423sw3/zVpvT8="
+
typstDeps = []
+
description = "Engineering oriented cv template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sardorml/swe-cv"
+
+
[sweet-graduate-resume."0.1.0"]
+
url = "https://packages.typst.org/preview/sweet-graduate-resume-0.1.0.tar.gz"
+
hash = "sha256-i13rCZCzw+/HLyV3nDRVSG0ZlYbY4HvxNuNrtms6BwY="
+
typstDeps = []
+
description = "A simple graduate student resume template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://codeberg.org/innocent_zero/typst-resume"
+
+
[syntree."0.2.1"]
+
url = "https://packages.typst.org/preview/syntree-0.2.1.tar.gz"
+
hash = "sha256-rKNxgn7PtqeDPBnDH3hD9HQrB85JeO9uiM5g0m2LDPs="
+
typstDeps = []
+
description = "Linguistics syntax/parse tree rendering"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/lynn/typst-syntree"
+
+
[syntree."0.2.0"]
+
url = "https://packages.typst.org/preview/syntree-0.2.0.tar.gz"
+
hash = "sha256-TLB2LCkJAibQsNPeSBMxDqnmgES/+O2jKtnTH0dHBR4="
+
typstDeps = []
+
description = "Linguistics syntax/parse tree rendering"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/lynn/typst-syntree"
+
+
[syntree."0.1.0"]
+
url = "https://packages.typst.org/preview/syntree-0.1.0.tar.gz"
+
hash = "sha256-csUz/enNWHusk8oF00Q8Qr25igDORKR4aTrullJrewA="
+
typstDeps = []
+
description = "Linguistics syntax/parse tree rendering"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/lynn/typst-syntree"
+
+
[t4t."0.4.2"]
+
url = "https://packages.typst.org/preview/t4t-0.4.2.tar.gz"
+
hash = "sha256-0aoAPE1c8Xu3escq6+pMhRi3Nc58jv9B0CV47Bz05sE="
+
typstDeps = []
+
description = "An utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[t4t."0.4.1"]
+
url = "https://packages.typst.org/preview/t4t-0.4.1.tar.gz"
+
hash = "sha256-+EhPb1J9Ly8+MUOckTsR2vPPxWDKcuCVabp0y484TW4="
+
typstDeps = []
+
description = "A utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[t4t."0.4.0"]
+
url = "https://packages.typst.org/preview/t4t-0.4.0.tar.gz"
+
hash = "sha256-Y95OBfEaX9LPkzEecH14YFIcvkz/K4PaTFw8QrAOFJU="
+
typstDeps = []
+
description = "A utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[t4t."0.3.2"]
+
url = "https://packages.typst.org/preview/t4t-0.3.2.tar.gz"
+
hash = "sha256-cLntiolPri4qvTiOcH7mFTJUh7MTh3vrT7MVphjpups="
+
typstDeps = []
+
description = "A utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[t4t."0.3.1"]
+
url = "https://packages.typst.org/preview/t4t-0.3.1.tar.gz"
+
hash = "sha256-wnbzAGmOxUaUoDJyq1xLVQQuWMhP5XHPjuPVMKYQ6tg="
+
typstDeps = []
+
description = "A utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[t4t."0.3.0"]
+
url = "https://packages.typst.org/preview/t4t-0.3.0.tar.gz"
+
hash = "sha256-siM7F8UOLq7IqlfAHszvGCCq1bueJBflZYBD7wKFA3Q="
+
typstDeps = [
+
"t4t_0_2_0",
+
]
+
description = "A utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[t4t."0.2.0"]
+
url = "https://packages.typst.org/preview/t4t-0.2.0.tar.gz"
+
hash = "sha256-GMXIU/Fh+XYDqDBOcDJ1JkECkhFlGvJKE8HtFWaRX3E="
+
typstDeps = []
+
description = "A utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[t4t."0.1.0"]
+
url = "https://packages.typst.org/preview/t4t-0.1.0.tar.gz"
+
hash = "sha256-QM/X/9ebIRDfK2KnCR9xCKN1G83ZvZ9XG6+JcrXECwE="
+
typstDeps = []
+
description = "A utility package for typst package authors"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jneug/typst-tools4typst"
+
+
[tableau-icons."0.331.0"]
+
url = "https://packages.typst.org/preview/tableau-icons-0.331.0.tar.gz"
+
hash = "sha256-9ljNMcVEhP1eKUCdLITB4vFxRqDaT9KSptDGxjBOgXo="
+
typstDeps = [
+
"shadowed_0_2_0",
+
"tidy_0_4_2",
+
]
+
description = "Tabler.io Icons v3.31.0 for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/joelvonrotz/tableau-icons"
+
+
[tableau-icons."0.330.0"]
+
url = "https://packages.typst.org/preview/tableau-icons-0.330.0.tar.gz"
+
hash = "sha256-zbVuVydvsX15uO1TXL0KquTROmfrx7XmjJFILR4/vnM="
+
typstDeps = [
+
"shadowed_0_2_0",
+
"tidy_0_4_1",
+
]
+
description = "Tabler.io Icons v3.30.0 for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/joelvonrotz/tableau-icons"
+
+
[tableau-icons."0.1.0"]
+
url = "https://packages.typst.org/preview/tableau-icons-0.1.0.tar.gz"
+
hash = "sha256-TiVyCwtd9upSDd6VkrvXofyt/2W6+FxmHPBZOgBQJjY="
+
typstDeps = []
+
description = "Tabler.io Icons for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/joelvonrotz/tableau-icons"
+
+
[tablem."0.2.0"]
+
url = "https://packages.typst.org/preview/tablem-0.2.0.tar.gz"
+
hash = "sha256-xXsq6mh6lm2ZL8z9d9gQK+LYB8vHofHK+MfgcX5yWBY="
+
typstDeps = []
+
description = "Write markdown-like tables easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-tablem"
+
+
[tablem."0.1.0"]
+
url = "https://packages.typst.org/preview/tablem-0.1.0.tar.gz"
+
hash = "sha256-xP4dkyRKp052It9Dd2pc7k2zx8eCbyJB1bTuSA16Atc="
+
typstDeps = [
+
"tablex_0_0_6",
+
]
+
description = "Write markdown-like tables easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-tablem"
+
+
[tablex."0.0.9"]
+
url = "https://packages.typst.org/preview/tablex-0.0.9.tar.gz"
+
hash = "sha256-XlUaoVwBctOaVEYdw+QlXGmR8xB0RvmdEw1WZp3DDy4="
+
typstDeps = []
+
description = "More powerful and customizable tables in Typst"
+
license = [
+
"MIT",
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/PgBiel/typst-tablex"
+
+
[tablex."0.0.8"]
+
url = "https://packages.typst.org/preview/tablex-0.0.8.tar.gz"
+
hash = "sha256-BjYoCawgM2W2pBvbu3fIA+d4C3LhVNBkBVtEUy0/XJ4="
+
typstDeps = []
+
description = "More powerful and customizable tables in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PgBiel/typst-tablex"
+
+
[tablex."0.0.7"]
+
url = "https://packages.typst.org/preview/tablex-0.0.7.tar.gz"
+
hash = "sha256-vK1Z+O1tw3yYC2z1YRuBAjXiNx4DhmtSGzf+C7l7MRQ="
+
typstDeps = []
+
description = "More powerful and customizable tables in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PgBiel/typst-tablex"
+
+
[tablex."0.0.6"]
+
url = "https://packages.typst.org/preview/tablex-0.0.6.tar.gz"
+
hash = "sha256-mrApRp7dJVGNvVMYlkazVptM8vdGbfWuYLom7jI75aQ="
+
typstDeps = []
+
description = "More powerful and customizable tables in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PgBiel/typst-tablex"
+
+
[tablex."0.0.5"]
+
url = "https://packages.typst.org/preview/tablex-0.0.5.tar.gz"
+
hash = "sha256-oXOCmYBr5+kQrJGzUO7xfZ48zEQQWp4vCeFywoRdb5E="
+
typstDeps = []
+
description = "More powerful and customizable tables in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PgBiel/typst-tablex"
+
+
[tablex."0.0.4"]
+
url = "https://packages.typst.org/preview/tablex-0.0.4.tar.gz"
+
hash = "sha256-78c9M4bM3n5NNFUj312HQeKWyiIaJfaafV0CDhjm8BY="
+
typstDeps = []
+
description = "More powerful and customizable tables in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/PgBiel/typst-tablex"
+
+
[tabut."1.0.2"]
+
url = "https://packages.typst.org/preview/tabut-1.0.2.tar.gz"
+
hash = "sha256-dkRx1MqgypAuDMVw9ap3Kq5fKGfxJgoDV4LB1X2HLS4="
+
typstDeps = [
+
"tablex_0_0_8",
+
]
+
description = "Display data as tables"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Amelia-Mowers/typst-tabut"
+
+
[tabut."1.0.1"]
+
url = "https://packages.typst.org/preview/tabut-1.0.1.tar.gz"
+
hash = "sha256-4sMXbQ3j8ckigv8oukR8NLeI7ZrCbbCawaT4ThBtk38="
+
typstDeps = [
+
"tablex_0_0_8",
+
]
+
description = "Display data as tables"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Amelia-Mowers/tabut"
+
+
[tabut."1.0.0"]
+
url = "https://packages.typst.org/preview/tabut-1.0.0.tar.gz"
+
hash = "sha256-PLJMpdE2DU1NCB2zuKbsiplERE9jvnqiG7AGc8IYymA="
+
typstDeps = [
+
"tablex_0_0_8",
+
]
+
description = "Display data as tables"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Amelia-Mowers/tabut"
+
+
[tada."0.2.0"]
+
url = "https://packages.typst.org/preview/tada-0.2.0.tar.gz"
+
hash = "sha256-sXTb6m1r0l48ncyp30CLSVromlMs9o9qxK+JcyvOu9Y="
+
typstDeps = []
+
description = "Easy, composable tabular data manipulation"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/ntjess/typst-tada"
+
+
[tada."0.1.0"]
+
url = "https://packages.typst.org/preview/tada-0.1.0.tar.gz"
+
hash = "sha256-gNe8I98cTOxdOzVG3UuuoLmrOgKB8mxp4JaisITgVmc="
+
typstDeps = []
+
description = "Easy, composable tabular data manipulation"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/ntjess/typst-tada"
+
+
[tally."0.1.1"]
+
url = "https://packages.typst.org/preview/tally-0.1.1.tar.gz"
+
hash = "sha256-b9Q6Itgpob4usvHXdnpeZ3Tqhda+FtlspIW8mCvweXc="
+
typstDeps = []
+
description = "Automatically handle todos in your document"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/7ijme/tally"
+
+
[tally."0.1.0"]
+
url = "https://packages.typst.org/preview/tally-0.1.0.tar.gz"
+
hash = "sha256-0DVp4X82gaA4267qBNXQRtPEoUZSrK02zMlYPIp6060="
+
typstDeps = []
+
description = "Automatically handle todos in your document"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/7ijme/tally"
+
+
[tasteful-pairings."0.1.0"]
+
url = "https://packages.typst.org/preview/tasteful-pairings-0.1.0.tar.gz"
+
hash = "sha256-j68y3BmvDWBFKt5XdOHJxu3lAR5XX5PD0Tw6JXIdXSk="
+
typstDeps = []
+
description = "A carefully curated collection of font pairings"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/swaits/typst-collection"
+
+
[tatras-ieee."0.1.0"]
+
url = "https://packages.typst.org/preview/tatras-ieee-0.1.0.tar.gz"
+
hash = "sha256-xyj59Q/TAhe6cuEp/a9lnpENDhXdmgBx5ARNahGZUMs="
+
typstDeps = []
+
description = "An IEEE-style paper template for use with Slovak language"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/MeheheCedy22/tatras-ieee"
+
+
[tbl."0.0.4"]
+
url = "https://packages.typst.org/preview/tbl-0.0.4.tar.gz"
+
hash = "sha256-fZsZB7yngWGBs5ezIXuwI4TJD3oCXcciNznv37GrWBI="
+
typstDeps = [
+
"tablex_0_0_5",
+
]
+
description = "Complex tables, written concisely"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/maxcrees/tbl.typ"
+
+
[tbl."0.0.3"]
+
url = "https://packages.typst.org/preview/tbl-0.0.3.tar.gz"
+
hash = "sha256-xk02kiOkkOFtqNgkeE9Ktya+UHQK2pbPNJkLcj7Jz8Y="
+
typstDeps = [
+
"tablex_0_0_4",
+
]
+
description = "Complex tables, written concisely"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/maxcrees/tbl.typ"
+
+
[tblr."0.3.1"]
+
url = "https://packages.typst.org/preview/tblr-0.3.1.tar.gz"
+
hash = "sha256-dIFBY7VHPz0n2LiyzTcUsCyEk0X1bDtxu/Dwitne1gk="
+
typstDeps = [
+
"zero_0_3_0",
+
]
+
description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tshort/tblr"
+
+
[tblr."0.3.0"]
+
url = "https://packages.typst.org/preview/tblr-0.3.0.tar.gz"
+
hash = "sha256-lFx90WjYGuWtiYz57j5zkWZYGLQgmgOF7gQdOB0+TX4="
+
typstDeps = [
+
"zero_0_3_0",
+
]
+
description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tshort/tblr"
+
+
[tblr."0.2.0"]
+
url = "https://packages.typst.org/preview/tblr-0.2.0.tar.gz"
+
hash = "sha256-lv3FHKVvFk6a0b49ueMYk7pG6l6TuecT7YZ+rkzg6tM="
+
typstDeps = [
+
"zero_0_3_0",
+
]
+
description = "Table generation helpers inspired by LaTeX's Tabularray package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tshort/tblr"
+
+
[tblr."0.1.0"]
+
url = "https://packages.typst.org/preview/tblr-0.1.0.tar.gz"
+
hash = "sha256-J7oVBnqmiEREFg3QrW4O6+mg8X33W7wShWsZ0Gi5HV0="
+
typstDeps = [
+
"zero_0_1_0",
+
]
+
description = "Table generation helpers inspired by LaTeX's Tabularray package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tshort/tblr"
+
+
[teig."0.1.0"]
+
url = "https://packages.typst.org/preview/teig-0.1.0.tar.gz"
+
hash = "sha256-taQzGgt/CzFCPSHRBlOKWfSmIKcyMQKk4pseIw2iMTY="
+
typstDeps = []
+
description = "Calculate eigenvalues of matrices"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/SolidTux/teig"
+
+
[tenv."0.1.2"]
+
url = "https://packages.typst.org/preview/tenv-0.1.2.tar.gz"
+
hash = "sha256-QNpxcQZEJjqONwZBHaKAgcdnc0g1xC9VTzLTTFMPfto="
+
typstDeps = []
+
description = "Parse a .env content"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/chillcicada/typst-dotenv"
+
+
[tenv."0.1.1"]
+
url = "https://packages.typst.org/preview/tenv-0.1.1.tar.gz"
+
hash = "sha256-hnif+Ihuv/PGp1QfRLpOX7pTwqkLCbUgFJwTkHRXy6Q="
+
typstDeps = []
+
description = "Parse a .env content"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/chillcicada/typst-dotenv"
+
+
[tfguf."0.0.1"]
+
url = "https://packages.typst.org/preview/tfguf-0.0.1.tar.gz"
+
hash = "sha256-57aMGzmncJSV0LSiEcv9alhSZ95j7BDaF99Sek71lNk="
+
typstDeps = []
+
description = "Plantilla para hacer TFGs en el Grado en Física de UNIR"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pammacdotnet/TFGUF"
+
+
[tgm-hit-protocol."0.1.0"]
+
url = "https://packages.typst.org/preview/tgm-hit-protocol-0.1.0.tar.gz"
+
hash = "sha256-nw8It3tBXA2XRhuZm0k5RrWOw0mTiIaDJ74B+NSFu/k="
+
typstDeps = [
+
"ccicons_1_0_0",
+
"datify_0_1_2",
+
"glossarium_0_4_1",
+
"linguify_0_4_0",
+
"outrageous_0_2_0",
+
]
+
description = "Protocol template for students of the HIT department at TGM Wien"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TGM-HIT/typst-protocol"
+
+
[tgm-hit-thesis."0.3.0"]
+
url = "https://packages.typst.org/preview/tgm-hit-thesis-0.3.0.tar.gz"
+
hash = "sha256-grS8PHu4lkietTBdZAZd60f72VpGUwtbOUlRQqunK6Q="
+
typstDeps = [
+
"alexandria_0_1_3",
+
"glossarium_0_5_2",
+
"linguify_0_4_2",
+
]
+
description = "Diploma thesis template for students of the HIT department at TGM Wien"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+
[tgm-hit-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/tgm-hit-thesis-0.2.0.tar.gz"
+
hash = "sha256-Kute+x2gIRTWDd7RcFkNNP1Nhezby0W9SMnWwI1dwPU="
+
typstDeps = [
+
"glossarium_0_5_0",
+
"linguify_0_4_0",
+
]
+
description = "Diploma thesis template for students of the HIT department at TGM Wien"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+
[tgm-hit-thesis."0.1.3"]
+
url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.3.tar.gz"
+
hash = "sha256-MH7zWON+Twx+tn+a7eOWtdiSVeSiRfUplIODzHAfl1U="
+
typstDeps = [
+
"glossarium_0_4_1",
+
"linguify_0_4_0",
+
]
+
description = "Diploma thesis template for students of the HIT department at TGM Wien"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+
[tgm-hit-thesis."0.1.2"]
+
url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.2.tar.gz"
+
hash = "sha256-94AWou0sNUmgH0+kgmN+rPWHEKXUq0zQ/T4+uh+9T/8="
+
typstDeps = [
+
"glossarium_0_4_1",
+
"linguify_0_4_0",
+
]
+
description = "Diploma thesis template for students of the HIT department at TGM Wien"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+
[tgm-hit-thesis."0.1.1"]
+
url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.1.tar.gz"
+
hash = "sha256-fIxkCgxZwMj8wIU8DDM382ixmrpqKCljncFgFdippMw="
+
typstDeps = [
+
"glossarium_0_4_1",
+
"linguify_0_4_0",
+
]
+
description = "Diploma thesis template for students of the HIT department at TGM Wien"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+
[tgm-hit-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/tgm-hit-thesis-0.1.0.tar.gz"
+
hash = "sha256-WnS2p5rEYmwfoiCJ+FzJOVdWwK37kcfOayn7W3ULK/4="
+
typstDeps = [
+
"glossarium_0_4_1",
+
"linguify_0_4_0",
+
]
+
description = "Diploma thesis template for students of the HIT department at TGM Wien"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TGM-HIT/typst-diploma-thesis"
+
+
[theoretic."0.2.0"]
+
url = "https://packages.typst.org/preview/theoretic-0.2.0.tar.gz"
+
hash = "sha256-MYLu49+gFBfkSnmTqc7Nh9qsjstJMBB2BFDaQdQLddI="
+
typstDeps = []
+
description = "Opinionated tool to typeset theorems, lemmas and such"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/nleanba/typst-theoretic"
+
+
[theoretic."0.1.1"]
+
url = "https://packages.typst.org/preview/theoretic-0.1.1.tar.gz"
+
hash = "sha256-LLT25VWpXpbqgnGd5tqAnqe2HimgF8qKZjY34YyVnTU="
+
typstDeps = []
+
description = "Opinionated tool to typeset theorems, lemmas and such"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/nleanba/typst-theoretic"
+
+
[theoretic."0.1.0"]
+
url = "https://packages.typst.org/preview/theoretic-0.1.0.tar.gz"
+
hash = "sha256-YTLMLsWYdMGQg8lwWF2XpDNjAQj6R4dtWpliLafyNqM="
+
typstDeps = []
+
description = "Opinionated tool to typeset theorems, lemmas and such"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/nleanba/typst-theoretic"
+
+
[theorion."0.3.3"]
+
url = "https://packages.typst.org/preview/theorion-0.3.3.tar.gz"
+
hash = "sha256-JXD+gEwf78Cnt0RkRWvtKjdt1nMGU2/OVxRg6pDXNQc="
+
typstDeps = [
+
"showybox_2_0_4",
+
]
+
description = "Out-of-the-box, customizable and multilingual theorem environment package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-theorion"
+
+
[theorion."0.3.2"]
+
url = "https://packages.typst.org/preview/theorion-0.3.2.tar.gz"
+
hash = "sha256-UhqXfaVWkQbqWEWnEAa5/IhP6532VW+rPpwATZv3KMI="
+
typstDeps = [
+
"showybox_2_0_4",
+
]
+
description = "Out-of-the-box, customizable and multilingual theorem environment package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-theorion"
+
+
[theorion."0.3.1"]
+
url = "https://packages.typst.org/preview/theorion-0.3.1.tar.gz"
+
hash = "sha256-ktj90O7u/wdLzUWmE6vkKIzTxsXhGUN10PrGZghqyDw="
+
typstDeps = [
+
"showybox_2_0_4",
+
]
+
description = "Out-of-the-box, customizable and multilingual theorem environment package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-theorion"
+
+
[theorion."0.3.0"]
+
url = "https://packages.typst.org/preview/theorion-0.3.0.tar.gz"
+
hash = "sha256-RgcY/xrbFGnark5vOFyfOptGrPKx1H1TqyFQ0ybdnk0="
+
typstDeps = [
+
"showybox_2_0_4",
+
]
+
description = "Out-of-the-box, customizable and multilingual theorem environment package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-theorion"
+
+
[theorion."0.2.0"]
+
url = "https://packages.typst.org/preview/theorion-0.2.0.tar.gz"
+
hash = "sha256-X9mnOPMHelFj2+PWC8V4slah3mGN1Mjd4iXNj28Hn7A="
+
typstDeps = [
+
"showybox_2_0_4",
+
]
+
description = "Out-of-the-box, customizable and multilingual theorem environment package"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/OrangeX4/typst-theorion"
+
+
[thesist."1.0.1"]
+
url = "https://packages.typst.org/preview/thesist-1.0.1.tar.gz"
+
hash = "sha256-cB3PEMShpapW/J1t3x3zkWEFeTdiZLKgafWeTXms0ks="
+
typstDeps = [
+
"glossarium_0_5_4",
+
"lovelace_0_3_0",
+
"subpar_0_2_1",
+
]
+
description = "A Master's thesis template for Instituto Superior Técnico (IST"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tfachada/thesist"
+
+
[thesist."1.0.0"]
+
url = "https://packages.typst.org/preview/thesist-1.0.0.tar.gz"
+
hash = "sha256-0phyUfdHGyFq6GeCoa7fNPaVx/IajhgW+3wBTA+opa0="
+
typstDeps = [
+
"codly_1_2_0",
+
"codly-languages_0_1_4",
+
"glossarium_0_5_1",
+
"lovelace_0_3_0",
+
"subpar_0_2_0",
+
]
+
description = "A Master's thesis template for Instituto Superior Técnico (IST"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tfachada/thesist"
+
+
[thesist."0.2.0"]
+
url = "https://packages.typst.org/preview/thesist-0.2.0.tar.gz"
+
hash = "sha256-4ScuCkZUTpBZoGt7eJ8MFdaLMhZuwEzKFrPfWbLm/es="
+
typstDeps = [
+
"codly_1_0_0",
+
"glossarium_0_5_0",
+
"lovelace_0_3_0",
+
"subpar_0_1_1",
+
]
+
description = "A Master's thesis template for Instituto Superior Técnico (IST"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tfachada/thesist"
+
+
[thesist."0.1.0"]
+
url = "https://packages.typst.org/preview/thesist-0.1.0.tar.gz"
+
hash = "sha256-K/F+/Se0DPX7ZhiDnynRQI5slvRS/fdMsJ9Y8klOhI0="
+
typstDeps = [
+
"algorithmic_0_1_0",
+
"codly_1_0_0",
+
"glossarium_0_4_1",
+
"subpar_0_1_1",
+
]
+
description = "A Master's thesis template for Instituto Superior Técnico (IST"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tfachada/thesist"
+
+
[thmbox."0.2.0"]
+
url = "https://packages.typst.org/preview/thmbox-0.2.0.tar.gz"
+
hash = "sha256-2k4K8b5E1jkEm7lhCb9UeADUBqK3jZxTougU2SD2KQ0="
+
typstDeps = []
+
description = "Creating beautiful theorem environments in typst with ease"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/s15n/typst-thmbox"
+
+
[thmbox."0.1.1"]
+
url = "https://packages.typst.org/preview/thmbox-0.1.1.tar.gz"
+
hash = "sha256-Ct0b/ALfNOTLofCfGtkcenz2bWQw/bSnFmqqsSvGMn4="
+
typstDeps = []
+
description = "Creating beautiful theorem environments in typst with ease"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/s15n/typst-thmbox"
+
+
[tiaoma."0.3.0"]
+
url = "https://packages.typst.org/preview/tiaoma-0.3.0.tar.gz"
+
hash = "sha256-xhVlYXBXisOzx2/R+fPNtCwEY/QoQXt071Q3m+qUHms="
+
typstDeps = []
+
description = "Barcode and QRCode generator for Typst using Zint"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+
[tiaoma."0.2.1"]
+
url = "https://packages.typst.org/preview/tiaoma-0.2.1.tar.gz"
+
hash = "sha256-LQuZsPbggpyAgiO9Gg7xd31Fv9kF3WNwaNOy5x7S7mo="
+
typstDeps = []
+
description = "Barcode and QRCode generator for Typst using Zint"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+
[tiaoma."0.2.0"]
+
url = "https://packages.typst.org/preview/tiaoma-0.2.0.tar.gz"
+
hash = "sha256-OUph7iF/JvhzKvqy62E7SFblB+4dfIAOGv/M49V4AwE="
+
typstDeps = []
+
description = "Barcode and QRCode generator for Typst using Zint"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+
[tiaoma."0.1.0"]
+
url = "https://packages.typst.org/preview/tiaoma-0.1.0.tar.gz"
+
hash = "sha256-IqyA7kbneAllVACJXjHkkvBbtree5SMBjcSYGKKtROE="
+
typstDeps = []
+
description = "Barcode and QRCode generator for Typst using Zint"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Enter-tainer/zint-wasi"
+
+
[tidy."0.4.2"]
+
url = "https://packages.typst.org/preview/tidy-0.4.2.tar.gz"
+
hash = "sha256-ZeHCBZWwe7G+tAfoyEzlCGQJFECMhUbiJzKRRKusF4E="
+
typstDeps = []
+
description = "Documentation generator for Typst code in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/tidy"
+
+
[tidy."0.4.1"]
+
url = "https://packages.typst.org/preview/tidy-0.4.1.tar.gz"
+
hash = "sha256-LpSMjWPeVkMl3uiV01XX/7JKmec8ExXxbnm6uWVk9eM="
+
typstDeps = []
+
description = "Documentation generator for Typst code in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/tidy"
+
+
[tidy."0.4.0"]
+
url = "https://packages.typst.org/preview/tidy-0.4.0.tar.gz"
+
hash = "sha256-p44SZ/GS6T/aGpYwb6fXJJ3hFFcIvcpz1a3x5JITmM0="
+
typstDeps = []
+
description = "Documentation generator for Typst code in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/tidy"
+
+
[tidy."0.3.0"]
+
url = "https://packages.typst.org/preview/tidy-0.3.0.tar.gz"
+
hash = "sha256-1vevCu6gW3QSDycyEQiYagnBr1EiZHt8GyvHhg8Gz/0="
+
typstDeps = []
+
description = "Documentation generator for Typst code in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/tidy"
+
+
[tidy."0.2.0"]
+
url = "https://packages.typst.org/preview/tidy-0.2.0.tar.gz"
+
hash = "sha256-zSf5ahLJ/1i/6o2ZKX2zapgJR8xilggVlNQotIicnME="
+
typstDeps = []
+
description = "Documentation generator for Typst code in Typst"
+
license = [
+
"MIT",
+
]
+
+
[tidy."0.1.0"]
+
url = "https://packages.typst.org/preview/tidy-0.1.0.tar.gz"
+
hash = "sha256-1q+LIjzQCqY6KF+dYWARL5rCbx0LMZps/WIuaUvzb1U="
+
typstDeps = []
+
description = "Documentation generator for Typst code in Typst"
+
license = [
+
"MIT",
+
]
+
+
[tierpist."0.1.0"]
+
url = "https://packages.typst.org/preview/tierpist-0.1.0.tar.gz"
+
hash = "sha256-p9EUIa5z1f22OlPbJtdUojsnE3Kb2BDAwivkh3himQg="
+
typstDeps = [
+
"typpuccino_0_1_0",
+
]
+
description = "Make simple tierlists using the Catppuccin pastel color palettes"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/bastienvoirin/tierpist"
+
+
[timeliney."0.2.0"]
+
url = "https://packages.typst.org/preview/timeliney-0.2.0.tar.gz"
+
hash = "sha256-1dQFae+mGAsCRHDWBd2saFgzYRI427Ltx6WPCLU2/pM="
+
typstDeps = [
+
"cetz_0_3_1",
+
"mantys_0_1_4",
+
]
+
description = "Create Gantt charts in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pta2002/typst-timeliney"
+
+
[timeliney."0.1.0"]
+
url = "https://packages.typst.org/preview/timeliney-0.1.0.tar.gz"
+
hash = "sha256-1cdfzqnKT3GCOZvZuORQGBQU6JaTFUEP6rMU3Un4PZg="
+
typstDeps = [
+
"cetz_0_2_2",
+
"mantys_0_1_4",
+
]
+
description = "Create Gantt charts in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pta2002/typst-timeliney"
+
+
[timeliney."0.0.1"]
+
url = "https://packages.typst.org/preview/timeliney-0.0.1.tar.gz"
+
hash = "sha256-JWGP6bInrsUhMDFFsNAyqf38P47dzQopGhPe/lxUruE="
+
typstDeps = [
+
"cetz_0_1_2",
+
]
+
description = "Create Gantt charts in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/pta2002/typst-timeliney"
+
+
[tinyset."0.1.0"]
+
url = "https://packages.typst.org/preview/tinyset-0.1.0.tar.gz"
+
hash = "sha256-dkcuBJ0tVV1ou7IEsaGSaaxysjbh1Lc9ABFBubp7SnQ="
+
typstDeps = []
+
description = "Simple, consistent, and appealing math homework template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sylvanfranklin/tinyset"
+
+
[tiptoe."0.3.0"]
+
url = "https://packages.typst.org/preview/tiptoe-0.3.0.tar.gz"
+
hash = "sha256-AzT+mOzV4/TsPh9nVHqV35Mu88ljuknWSB54hZ50rUE="
+
typstDeps = []
+
description = "Arrows and other marks for lines and paths"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/tiptoe"
+
+
[tiptoe."0.2.0"]
+
url = "https://packages.typst.org/preview/tiptoe-0.2.0.tar.gz"
+
hash = "sha256-aX1oL22zIIRF+UVxvofjl2vRcccGXBoi8Q6DDIoJBWo="
+
typstDeps = []
+
description = "Arrows and other marks for lines and paths"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/tiptoe"
+
+
[tiptoe."0.1.0"]
+
url = "https://packages.typst.org/preview/tiptoe-0.1.0.tar.gz"
+
hash = "sha256-vGqPitaDEDpnuZrfQqP9EjIKmWhJ0UYlYXDCV6Po11Q="
+
typstDeps = []
+
description = "Arrows and other marks for lines and paths"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/tiptoe"
+
+
[titleize."0.1.1"]
+
url = "https://packages.typst.org/preview/titleize-0.1.1.tar.gz"
+
hash = "sha256-RBxxzIxC7Ra8Qnb6xrBkIKVjlSYcDNrYurcDd0F54D0="
+
typstDeps = []
+
description = "Turn strings into title case"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/SolidTux/titleize"
+
+
[titleize."0.1.0"]
+
url = "https://packages.typst.org/preview/titleize-0.1.0.tar.gz"
+
hash = "sha256-kL5c/L/IwpzgzyI8kduYFAjF1RywWnM0NuTEA4nZD1k="
+
typstDeps = []
+
description = "Turn strings into title case"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/SolidTux/titleize"
+
+
[tlacuache-thesis-fc-unam."0.1.1"]
+
url = "https://packages.typst.org/preview/tlacuache-thesis-fc-unam-0.1.1.tar.gz"
+
hash = "sha256-skc0agrYuWNsDTToeI/SM8u+37NVfvySkoY6D58QZ4w="
+
typstDeps = []
+
description = "Template para escribir una tesis para la facultad de ciencias"
+
license = [
+
"MIT",
+
]
+
+
[touying."0.6.1"]
+
url = "https://packages.typst.org/preview/touying-0.6.1.tar.gz"
+
hash = "sha256-AutRIIoJa75hrDTQVyoVAxajm1nmkypFLwYkmAyp39A="
+
typstDeps = [
+
"cetz_0_3_2",
+
"fletcher_0_5_4",
+
"numbly_0_1_0",
+
"theorion_0_3_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.6.0"]
+
url = "https://packages.typst.org/preview/touying-0.6.0.tar.gz"
+
hash = "sha256-5x4cpEwWfFrVfwbSkZoVvDCwAJXaL/OoIJjpBnDlXRg="
+
typstDeps = [
+
"cetz_0_3_2",
+
"ctheorems_1_1_3",
+
"fletcher_0_5_4",
+
"numbly_0_1_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.5.5"]
+
url = "https://packages.typst.org/preview/touying-0.5.5.tar.gz"
+
hash = "sha256-4hVqQUBo7HKfMVV6GC7zcTY0shxPTPN04BnkD5LxKnE="
+
typstDeps = [
+
"cetz_0_3_1",
+
"ctheorems_1_1_3",
+
"fletcher_0_5_3",
+
"numbly_0_1_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.5.4"]
+
url = "https://packages.typst.org/preview/touying-0.5.4.tar.gz"
+
hash = "sha256-FqPyYs6BM+a+x+bBPCwb+3xi+qFwXoKYFwMU58nu6S8="
+
typstDeps = [
+
"cetz_0_3_1",
+
"ctheorems_1_1_3",
+
"fletcher_0_5_3",
+
"numbly_0_1_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.5.3"]
+
url = "https://packages.typst.org/preview/touying-0.5.3.tar.gz"
+
hash = "sha256-b9nBHBEF/gmg2Yqf3YyEkq9SJ44UA14gDHH0quM62KM="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"fletcher_0_5_1",
+
"numbly_0_1_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.5.2"]
+
url = "https://packages.typst.org/preview/touying-0.5.2.tar.gz"
+
hash = "sha256-6zgvqPUZew6rUj1iHI7AHLHd6hChuvtq3532Arhw2Fs="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"fletcher_0_5_1",
+
"numbly_0_1_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.5.1"]
+
url = "https://packages.typst.org/preview/touying-0.5.1.tar.gz"
+
hash = "sha256-U2GkpYJsEou/XWgiTmLzvKmrsbzHr9euPUZPAw5jEuI="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"fletcher_0_5_1",
+
"numbly_0_1_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.5.0"]
+
url = "https://packages.typst.org/preview/touying-0.5.0.tar.gz"
+
hash = "sha256-aC14MUgLT7MnuDZcDYfv/0iVj8eXZ3KOIyIQsV1oa0o="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"fletcher_0_5_1",
+
"numbly_0_1_0",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.4.2"]
+
url = "https://packages.typst.org/preview/touying-0.4.2.tar.gz"
+
hash = "sha256-8AkLck6hjUUiL7kbGRuu++uN2rx32oumN2oe+m4Ipc4="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"fletcher_0_4_4",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.4.1"]
+
url = "https://packages.typst.org/preview/touying-0.4.1.tar.gz"
+
hash = "sha256-ShpBeF7t61EzV86KkO6QS/yQw9BHt1y5Z3K4oAmc65w="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"fletcher_0_4_4",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.4.0"]
+
url = "https://packages.typst.org/preview/touying-0.4.0.tar.gz"
+
hash = "sha256-c4ScRqtuyoHZHvdwbRwOhvs/tUcxcM7FdVfMxb7M27g="
+
typstDeps = [
+
"cetz_0_2_2",
+
"ctheorems_1_1_2",
+
"fletcher_0_4_3",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.3.3"]
+
url = "https://packages.typst.org/preview/touying-0.3.3.tar.gz"
+
hash = "sha256-1LJv7aTrG8X0Lq30hN2EiE2DlFWFDKDYyvRFmLqqPYw="
+
typstDeps = [
+
"cetz_0_2_1",
+
"fletcher_0_4_2",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.3.2"]
+
url = "https://packages.typst.org/preview/touying-0.3.2.tar.gz"
+
hash = "sha256-csmfUzPb9QLWzJTZ22Of/PkGWcHJsinAE4SWWflipcc="
+
typstDeps = [
+
"cetz_0_2_1",
+
"fletcher_0_4_2",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.3.1"]
+
url = "https://packages.typst.org/preview/touying-0.3.1.tar.gz"
+
hash = "sha256-j7znx2m6KSQ19urWAzDd6sGkhr4PNf5kZl2x6guTdBQ="
+
typstDeps = [
+
"cetz_0_2_1",
+
"fletcher_0_4_2",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.3.0"]
+
url = "https://packages.typst.org/preview/touying-0.3.0.tar.gz"
+
hash = "sha256-/K8edddnGyTZqDHoEvB6UvLOvLRU2O057ktXeIP5WSQ="
+
typstDeps = [
+
"cetz_0_2_1",
+
"fletcher_0_4_2",
+
]
+
description = "An powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.2.1"]
+
url = "https://packages.typst.org/preview/touying-0.2.1.tar.gz"
+
hash = "sha256-1nYIv1yEz5OXHA2VHKA23R1fjYDU/DdoQflw3uh2AOs="
+
typstDeps = [
+
"cetz_0_2_0",
+
"fletcher_0_4_1",
+
]
+
description = "An object-oriented package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.2.0"]
+
url = "https://packages.typst.org/preview/touying-0.2.0.tar.gz"
+
hash = "sha256-ReEVVMnPCd6ia9HfUF7LItTAiK4oEOLVIni48xVIJxo="
+
typstDeps = []
+
description = "An object-oriented package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-0.1.0.tar.gz"
+
hash = "sha256-C9gLcZiS4/0bKsUArZNx/jHa6tT66oazf4EbkzsgdQo="
+
typstDeps = []
+
description = "An object-oriented package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.6.0"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.6.0.tar.gz"
+
hash = "sha256-VgpcfwRNnzXA7QaWNA7YFaxQOejQMtYnHUnPVSm7NwY="
+
typstDeps = [
+
"touying_0_6_0",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.5.5"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.5.5.tar.gz"
+
hash = "sha256-nAcvUYTqpN8X0GKeAkNeTCVUcW6SY/pbLMWc4IppWSw="
+
typstDeps = [
+
"touying_0_5_5",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.5.4"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.5.4.tar.gz"
+
hash = "sha256-DUtwL7lPY68/o+/Ajh6/YDVrZWOnftQUVzyuCkrDG0Q="
+
typstDeps = [
+
"touying_0_5_4",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.5.3"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.5.3.tar.gz"
+
hash = "sha256-LlnqGY9d9EP7cf6A6pJgUC72o5v2viFXh/xBWP6ejOc="
+
typstDeps = [
+
"touying_0_5_3",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.5.2"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.5.2.tar.gz"
+
hash = "sha256-aOzwtjPvQUeHPiwyFkWF8wYjJOg21vW5mOjQ/0uSLik="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.5.1"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.5.1.tar.gz"
+
hash = "sha256-GCNfswGpK9weLfVb//CMKY3opH4pbMY8tboOIUtQIDc="
+
typstDeps = [
+
"touying_0_5_1",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.5.0"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.5.0.tar.gz"
+
hash = "sha256-kKiXCRRxd/Z09xQEOafLM/kPoSjzzPlJh2DjdeT+KMA="
+
typstDeps = [
+
"touying_0_5_0",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.4.2"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.4.2.tar.gz"
+
hash = "sha256-mOden3SRCkaIZGpvTCEeefDs3UJHAodU46LiExRHZB0="
+
typstDeps = [
+
"touying_0_4_2",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.4.1"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.4.1.tar.gz"
+
hash = "sha256-GtoLHEzpMSbyp6atanmPrSSei4ozkvfeJKXtjl4TdEY="
+
typstDeps = [
+
"touying_0_4_1",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.4.0"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.4.0.tar.gz"
+
hash = "sha256-pqi77dX3UAUDx++9xtkmr9BmntkZs7CfLEV1k4955YU="
+
typstDeps = [
+
"touying_0_4_0",
+
]
+
description = "Aqua theme in Touying - a powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-aqua."0.3.3"]
+
url = "https://packages.typst.org/preview/touying-aqua-0.3.3.tar.gz"
+
hash = "sha256-VJK5ljDflaRmq8lXTPaql9U8VPDCcuFHz6VFAldYngU="
+
typstDeps = [
+
"touying_0_3_3",
+
]
+
description = "A powerful package for creating presentation slides in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/touying-typ/touying"
+
+
[touying-brandred-uobristol."0.1.3"]
+
url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.3.tar.gz"
+
hash = "sha256-q+a8Jv2o9cYoxdoq6/L4dcoKgGcxAXsGbclWoBbD7m8="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "Touying Slide Theme for University of Bristol"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+
[touying-brandred-uobristol."0.1.2"]
+
url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.2.tar.gz"
+
hash = "sha256-StDJp8L9Thhvk5wVg0bi+ceklbRn35RMyEhJdNt4eYc="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "Touying Slide Theme for University of Bristol"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+
[touying-brandred-uobristol."0.1.1"]
+
url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.1.tar.gz"
+
hash = "sha256-3bngK/Xrf7QxLfWxfxulCg0mKIEPbRR1FNNoDPvWyRI="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "Touying Slide Theme for University of Bristol"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+
[touying-brandred-uobristol."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-brandred-uobristol-0.1.0.tar.gz"
+
hash = "sha256-Qpw9lqn9zZwoDsJXF1rwDy4ngjqY5S3062G0oH+BrAA="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "Touying Slide Theme for University of Bristol"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/HPDell/touying-brandred-uobristol"
+
+
[touying-buaa."0.2.0"]
+
url = "https://packages.typst.org/preview/touying-buaa-0.2.0.tar.gz"
+
hash = "sha256-pBXplIwOolpWvRDZA5c9kjwwSPHkagelQzk/yyubcw4="
+
typstDeps = [
+
"cetz_0_2_2",
+
"fletcher_0_5_1",
+
"touying_0_5_2",
+
]
+
description = "Touying Slide Theme for Beihang University"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Coekjan/touying-buaa"
+
+
[touying-buaa."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-buaa-0.1.0.tar.gz"
+
hash = "sha256-tzWeba/uZ+R7WCm5uVQkLdUOpPHAyP/AnfkHt72bqVE="
+
typstDeps = [
+
"cetz_0_2_2",
+
"fletcher_0_4_5",
+
"touying_0_4_2",
+
]
+
description = "Touying Slide Theme for Beihang University"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Coekjan/touying-buaa"
+
+
[touying-dids."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-dids-0.1.0.tar.gz"
+
hash = "sha256-QL8SacywS3SvtJNsjoI82ImmDhiX+rla4CUTSBhu4K0="
+
typstDeps = [
+
"cetz_0_3_1",
+
"fletcher_0_5_2",
+
"touying_0_5_3",
+
]
+
description = "Touying Slide Theme for DIDS Lab"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/RaVincentHuang/touying-dids"
+
+
[touying-flow."1.1.0"]
+
url = "https://packages.typst.org/preview/touying-flow-1.1.0.tar.gz"
+
hash = "sha256-KuAAoTh9fbfg+IZagElq10yPce387wsja78SXr0ZqKA="
+
typstDeps = [
+
"codly_1_0_0",
+
"cuti_0_2_1",
+
"lovelace_0_3_0",
+
"mitex_0_2_4",
+
"numbly_0_1_0",
+
"touying_0_5_3",
+
]
+
description = "Eliminate unnecessary decorative elements to enhance the audience's immersion and foster a deeper state of flow"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Quaternijkon/touying-flow"
+
+
[touying-flow."1.0.0"]
+
url = "https://packages.typst.org/preview/touying-flow-1.0.0.tar.gz"
+
hash = "sha256-gaVVJb1lRATSdP6muMfrrAAaAjBpGBK3Ti2geEIGtIY="
+
typstDeps = [
+
"codly_1_0_0",
+
"cuti_0_2_1",
+
"lovelace_0_3_0",
+
"mitex_0_2_4",
+
"numbly_0_1_0",
+
"touying_0_5_3",
+
]
+
description = "Discard irrelevant decorative elements, aiming to better immerse the audience into a state of flow"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Quaternijkon/Typst_FLOW"
+
+
[touying-ppt-hustvn."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-ppt-hustvn-0.1.0.tar.gz"
+
hash = "sha256-GoTSBixslKUMrn24VT3g/galjwOPKzBAkrJ1ImhyF+A="
+
typstDeps = [
+
"theorion_0_3_2",
+
"touying_0_6_1",
+
]
+
description = "Touying Slide Theme for HUST (Hanoi University of Science and Technology"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/btmxh/touying-ppt-hustvn"
+
+
[touying-pres-ustc."0.2.0"]
+
url = "https://packages.typst.org/preview/touying-pres-ustc-0.2.0.tar.gz"
+
hash = "sha256-rvyRqZqi5P4LLhgtsUKsh71oXpMx8hmLoNbnJrKseUE="
+
typstDeps = [
+
"babble-bubbles_0_1_0",
+
"cineca_0_2_1",
+
"codly_0_2_0",
+
"fletcher_0_5_1",
+
"gentle-clues_0_9_0",
+
"lovelace_0_3_0",
+
"showybox_2_0_1",
+
"suiji_0_3_0",
+
"timeliney_0_0_1",
+
"touying_0_4_2",
+
]
+
description = "Touying Slide Theme for USTC(you can easily customize it to suit any university or organization such as BIT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Quaternijkon/touying-pres-ustc"
+
+
[touying-pres-ustc."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-pres-ustc-0.1.0.tar.gz"
+
hash = "sha256-nVVUoqPTNIQ/hmcDUCupu4MX+TyZM+Z98/gMUCrYwJY="
+
typstDeps = [
+
"babble-bubbles_0_1_0",
+
"cineca_0_2_1",
+
"codly_0_2_0",
+
"fletcher_0_5_1",
+
"gentle-clues_0_9_0",
+
"lovelace_0_3_0",
+
"showybox_2_0_1",
+
"suiji_0_3_0",
+
"timeliney_0_0_1",
+
"touying_0_4_2",
+
]
+
description = "Touying Slide Theme for USTC"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Quaternijkon/Typst_USTC_CS"
+
+
[touying-quarto-clean."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-quarto-clean-0.1.0.tar.gz"
+
hash = "sha256-zjUkMIShayTKau6ZSutmq37zWJWr0ttgu7RZ+DV/TB0="
+
typstDeps = [
+
"fontawesome_0_5_0",
+
"touying_0_5_3",
+
]
+
description = "A Clean Slide Theme for Touying"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/kazuyanagimoto/quarto-clean-typst"
+
+
[touying-simpl-hkustgz."0.1.1"]
+
url = "https://packages.typst.org/preview/touying-simpl-hkustgz-0.1.1.tar.gz"
+
hash = "sha256-hPzAv/zrLYdniHhKcXhiw4NqivEzu/MH0NO7utaIv/Q="
+
typstDeps = [
+
"cetz_0_2_2",
+
"fletcher_0_4_5",
+
"touying_0_4_2",
+
]
+
description = "Touying Slide Theme for HKUST(GZ"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/exAClior/touying-simpl-hkustgz"
+
+
[touying-simpl-hkustgz."0.1.0"]
+
url = "https://packages.typst.org/preview/touying-simpl-hkustgz-0.1.0.tar.gz"
+
hash = "sha256-xJ+CFM2kzrpfarTuAgKHmBsYvuAqY50i+yB3Qv7DGn4="
+
typstDeps = [
+
"cetz_0_2_2",
+
"fletcher_0_4_5",
+
"touying_0_4_2",
+
]
+
description = "Touying Slide Theme for HKUST(GZ"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/exAClior/touying-simpl-hkustgz"
+
+
[touying-unistra-pristine."1.3.1"]
+
url = "https://packages.typst.org/preview/touying-unistra-pristine-1.3.1.tar.gz"
+
hash = "sha256-+OPnCXyVUQ1r6drzjxJVC8yCKGIe2xUxokhJDh2qn50="
+
typstDeps = [
+
"touying_0_6_1",
+
]
+
description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+
[touying-unistra-pristine."1.3.0"]
+
url = "https://packages.typst.org/preview/touying-unistra-pristine-1.3.0.tar.gz"
+
hash = "sha256-fC5upxQhb+2fDPH7YdVKl13FLfcWU9gKGcNuVsSrGz4="
+
typstDeps = [
+
"touying_0_5_5",
+
]
+
description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+
[touying-unistra-pristine."1.2.0"]
+
url = "https://packages.typst.org/preview/touying-unistra-pristine-1.2.0.tar.gz"
+
hash = "sha256-6eYMGMprOMl54aJHemzn5CuN03auIxUsBeyX2nXXY5Y="
+
typstDeps = [
+
"touying_0_5_3",
+
]
+
description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+
[touying-unistra-pristine."1.1.0"]
+
url = "https://packages.typst.org/preview/touying-unistra-pristine-1.1.0.tar.gz"
+
hash = "sha256-903+mzhmJxU1cvslpS3r+8vLRHR8bKSMwM2dmz2OtMs="
+
typstDeps = [
+
"touying_0_5_3",
+
]
+
description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+
[touying-unistra-pristine."1.0.0"]
+
url = "https://packages.typst.org/preview/touying-unistra-pristine-1.0.0.tar.gz"
+
hash = "sha256-t1Ea1IJX4sSJ5ttIV8uCsEbp/zDEZYv3q1ZRGn2LxY0="
+
typstDeps = [
+
"touying_0_5_2",
+
]
+
description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/spidersouris/touying-unistra-pristine"
+
+
[touying2video."0.1.0"]
+
url = "https://packages.typst.org/preview/touying2video-0.1.0.tar.gz"
+
hash = "sha256-GaQlk4gFwIx9u5hs4PAwEwbd6LcUhPaa+4fXvQcTlsc="
+
typstDeps = []
+
description = "The tools converts a touying-typ presentation slide to a presentation video with voice over. The typst tool need to be used with an external package"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/yangwenbo99/touying2video"
+
+
[tracl."0.6.1"]
+
url = "https://packages.typst.org/preview/tracl-0.6.1.tar.gz"
+
hash = "sha256-YdVxUtfyTrXQxgMuMm1Vju/Oi4cCaf/xAPy/n7rOrYk="
+
typstDeps = [
+
"blinky_0_2_0",
+
"oxifmt_0_2_1",
+
]
+
description = "Template for papers at *ACL conferences"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/coli-saar/tracl"
+
+
[tracl."0.6.0"]
+
url = "https://packages.typst.org/preview/tracl-0.6.0.tar.gz"
+
hash = "sha256-yvwx72a5GhlVp9X7+t2eqpdQx5eoXiwGcAqQHxk/b50="
+
typstDeps = [
+
"blinky_0_2_0",
+
"oxifmt_0_2_1",
+
]
+
description = "Template for papers at *ACL conferences"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/coli-saar/tracl"
+
+
[tracl."0.5.2"]
+
url = "https://packages.typst.org/preview/tracl-0.5.2.tar.gz"
+
hash = "sha256-8IeQunFJ0OQuJpmpH+/CVP6gGKkOI0WgWJXW2X/Qlsk="
+
typstDeps = [
+
"blinky_0_2_0",
+
]
+
description = "Template for papers at *ACL conferences"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/coli-saar/tracl"
+
+
[tracl."0.5.1"]
+
url = "https://packages.typst.org/preview/tracl-0.5.1.tar.gz"
+
hash = "sha256-+PV3Ozq1KDQYU344OUXnh1UbxmJNUcrBP5f/sX2IAdQ="
+
typstDeps = [
+
"blinky_0_1_0",
+
]
+
description = "Template for papers at *ACL conferences"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/coli-saar/tracl"
+
+
[tracl."0.5.0"]
+
url = "https://packages.typst.org/preview/tracl-0.5.0.tar.gz"
+
hash = "sha256-EYvmO1AR7nNKguoI94hzAJWfwuko988uWaRyVAlqfu4="
+
typstDeps = [
+
"blinky_0_1_0",
+
]
+
description = "Template for papers at *ACL conferences"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/coli-saar/tracl"
+
+
[treet."0.1.1"]
+
url = "https://packages.typst.org/preview/treet-0.1.1.tar.gz"
+
hash = "sha256-tBOgW6NB5MAU+LHRAOHkRxq+vKpmkkh2vh/VnBbMEJ0="
+
typstDeps = []
+
description = "Create tree lists easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/8LWXpg/typst-treet"
+
+
[treet."0.1.0"]
+
url = "https://packages.typst.org/preview/treet-0.1.0.tar.gz"
+
hash = "sha256-Z4XAN+jKFzyowg1/o+WRq7QF+9Wul+mMwKGfHL5HnOE="
+
typstDeps = []
+
description = "Create tree lists easily"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/8LWXpg/typst-treet"
+
+
[tricorder."0.1.0"]
+
url = "https://packages.typst.org/preview/tricorder-0.1.0.tar.gz"
+
hash = "sha256-1yVjrzof0APO5F+C3ManqTSJOVzHasnrVeeTHmmXgag="
+
typstDeps = []
+
description = "按占三格的节奏记录中文人名(花名册)Record Chinese names with a rhythm of three characters"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/YDX-2147483647/typst-tricorder"
+
+
[truthfy."0.6.0"]
+
url = "https://packages.typst.org/preview/truthfy-0.6.0.tar.gz"
+
hash = "sha256-pKDdJvrAIekPB+x6GWXrQDC6n20kqH5ayGriaIsHPUw="
+
typstDeps = []
+
description = "Make empty or automatically filled truth table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Thumuss/truthfy"
+
+
[truthfy."0.5.0"]
+
url = "https://packages.typst.org/preview/truthfy-0.5.0.tar.gz"
+
hash = "sha256-Syf1F5gSoW4NNOw73ecdu6LaNu72TPJpcSQfLEMV2rk="
+
typstDeps = []
+
description = "Make empty or automatically filled truth table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Thumuss/truthfy"
+
+
[truthfy."0.4.0"]
+
url = "https://packages.typst.org/preview/truthfy-0.4.0.tar.gz"
+
hash = "sha256-vqIZsyKBpT6IE5Ly21Z2vN3LV1+zKAGZDDRlquSwf00="
+
typstDeps = []
+
description = "Make empty or automatically filled truth table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Thumuss/truthfy"
+
+
[truthfy."0.3.0"]
+
url = "https://packages.typst.org/preview/truthfy-0.3.0.tar.gz"
+
hash = "sha256-S8KmtMPYoemJBRntmPaPqTfXQ6XJin23W2jWjnV+orI="
+
typstDeps = []
+
description = "Make empty or automatically filled truth table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Thumuss/truthfy"
+
+
[truthfy."0.2.0"]
+
url = "https://packages.typst.org/preview/truthfy-0.2.0.tar.gz"
+
hash = "sha256-sPZ9ieV/+BpIqzKgBX9H9IWyNkgo4IB+HuvwNymZ0AY="
+
typstDeps = []
+
description = "Make empty or automatically filled truth table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ThumusLive/truthfy"
+
+
[truthfy."0.1.0"]
+
url = "https://packages.typst.org/preview/truthfy-0.1.0.tar.gz"
+
hash = "sha256-th4mlEfWq0m4WXUBEmVLgtlhu7MG/hAMWv54mj8UeSA="
+
typstDeps = []
+
description = "Make truth table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ThumusLive/truthfy"
+
+
[ttt-exam."0.1.2"]
+
url = "https://packages.typst.org/preview/ttt-exam-0.1.2.tar.gz"
+
hash = "sha256-pd9Ckp8poHRmHc0UMUEW43c3prI/QWCSYLMjSI02DiY="
+
typstDeps = [
+
"linguify_0_4_0",
+
"ttt-utils_0_1_2",
+
]
+
description = "A collection of tools to make a teachers life easier (german"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+
[ttt-exam."0.1.0"]
+
url = "https://packages.typst.org/preview/ttt-exam-0.1.0.tar.gz"
+
hash = "sha256-BSXCpPdDlA2IA1IavSYzFBmH4wZx3erS/MwsGUWRrew="
+
typstDeps = [
+
"linguify_0_3_1",
+
"ttt-utils_0_1_0",
+
]
+
description = "Template to create exams. Part of the ttt-collection to make a teachers life easier"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+
[ttt-lists."0.1.0"]
+
url = "https://packages.typst.org/preview/ttt-lists-0.1.0.tar.gz"
+
hash = "sha256-1PB/2dF4Z/lCW0wRgpR4nrCYHiqmXStZl5D2xdIvE4Y="
+
typstDeps = [
+
"ttt-utils_0_1_0",
+
]
+
description = "Template to create student lists. Part of the ttt-collection to make a teachers life easier"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+
[ttt-utils."0.1.4"]
+
url = "https://packages.typst.org/preview/ttt-utils-0.1.4.tar.gz"
+
hash = "sha256-cB/uCFCu/Zo5dyEbtuARs7YzdETXIRAxfu+jc0PV8aI="
+
typstDeps = []
+
description = "A collection of tools to make a teachers life easier"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+
[ttt-utils."0.1.3"]
+
url = "https://packages.typst.org/preview/ttt-utils-0.1.3.tar.gz"
+
hash = "sha256-Cd/QKnrz3Et4wrFg+dPYn6zqA9umiS5JmtpouEMxvKc="
+
typstDeps = []
+
description = "A collection of tools to make a teachers life easier"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+
[ttt-utils."0.1.2"]
+
url = "https://packages.typst.org/preview/ttt-utils-0.1.2.tar.gz"
+
hash = "sha256-NG65QPdynAQ1X4CjqBflg1rfBEDOYGSREb9Qn3t1mOk="
+
typstDeps = []
+
description = "A collection of tools to make a teachers life easier"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+
[ttt-utils."0.1.0"]
+
url = "https://packages.typst.org/preview/ttt-utils-0.1.0.tar.gz"
+
hash = "sha256-BUzA2w+gEMKr5MspkEQ9ePhBXeGVIxqEJI36YluRdCk="
+
typstDeps = []
+
description = "A collection of tools to make a teachers life easier"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jomaway/typst-teacher-templates"
+
+
[ttuile."0.1.1"]
+
url = "https://packages.typst.org/preview/ttuile-0.1.1.tar.gz"
+
hash = "sha256-FirvqBE2sky8DLxmlNFhS2lzvAm60gpaWvrakWBBspU="
+
typstDeps = []
+
description = "A template for students' lab reports at INSA Lyon, a french engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/vitto4/ttuile"
+
+
[ttuile."0.1.0"]
+
url = "https://packages.typst.org/preview/ttuile-0.1.0.tar.gz"
+
hash = "sha256-JD4lIJZbPKduHn7/+6k1T6PeRnlBPuUQbQJr22A3Xpk="
+
typstDeps = []
+
description = "A template for students' lab reports at INSA Lyon, a french engineering school"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/vitto4/ttuile"
+
+
[tud-corporate-design-slides."0.1.0"]
+
url = "https://packages.typst.org/preview/tud-corporate-design-slides-0.1.0.tar.gz"
+
hash = "sha256-Af6m58msKbe5WbYqO7TOnx6fdOgfRYn4fU6ucliDuzw="
+
typstDeps = [
+
"polylux_0_3_1",
+
]
+
description = "Presentation template for TU Dresden (Technische Universität Dresden"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/jakoblistabarth/tud-corporate-design-slides-typst"
+
+
[tufte-memo."0.1.2"]
+
url = "https://packages.typst.org/preview/tufte-memo-0.1.2.tar.gz"
+
hash = "sha256-T98auoYpzMsAf+zDNxaYYIFkUI3WcZ/mMzMW6cAU/Fs="
+
typstDeps = [
+
"drafting_0_2_0",
+
]
+
description = "A memo document template inspired by the design of Edward Tufte's books"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/nogula/tufte-memo"
+
+
[tufte-memo."0.1.1"]
+
url = "https://packages.typst.org/preview/tufte-memo-0.1.1.tar.gz"
+
hash = "sha256-nYBYFBnebN+Cx4vvGO9yKqRhoRmC54MqyX1C9CJXZtw="
+
typstDeps = [
+
"drafting_0_2_0",
+
]
+
description = "A memo document template inspired by the design of Edward Tufte's books"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/nogula/tufte-memo"
+
+
[tufte-memo."0.1.0"]
+
url = "https://packages.typst.org/preview/tufte-memo-0.1.0.tar.gz"
+
hash = "sha256-J3KKhbPH/SfZH7AYpN1iyZnR4hDreOdvibsyaUX2eWo="
+
typstDeps = [
+
"drafting_0_2_0",
+
]
+
description = "A memo document template inspired by the design of Edward Tufte's books"
+
license = [
+
"MIT",
+
]
+
+
[tuhi-alumni-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-alumni-vuw-0.1.0.tar.gz"
+
hash = "sha256-A0cU3Bjzx61gviGXmH2XyJsr7xs/nX4zXeMboQsfJrI="
+
typstDeps = []
+
description = "A template for VUW alumni profile flyers"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-alumni-vuw"
+
+
[tuhi-assessment-vuw."0.2.0"]
+
url = "https://packages.typst.org/preview/tuhi-assessment-vuw-0.2.0.tar.gz"
+
hash = "sha256-rp1JEa1gzLc7KNVJYRNPlXfB0uq3JEnbBQTxIR+cGO4="
+
typstDeps = []
+
description = "A template for VUW assessments"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-assessment-vuw"
+
+
[tuhi-booklet-vuw."0.2.0"]
+
url = "https://packages.typst.org/preview/tuhi-booklet-vuw-0.2.0.tar.gz"
+
hash = "sha256-3eLy5P5MklRH9mlxltkPdL9lFIAS0PgnedHNk14d6l8="
+
typstDeps = []
+
description = "A course description booklet template for VUW courses"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-booklet-vuw"
+
+
[tuhi-booklet-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-booklet-vuw-0.1.0.tar.gz"
+
hash = "sha256-Ht4o8Zl83CG0KjCSWI7dgrRltA9L78ua+3aGplLjmX0="
+
typstDeps = []
+
description = "A course description booklet template for VUW courses"
+
license = [
+
"MPL-2.0",
+
]
+
+
[tuhi-course-poster-vuw."0.2.0"]
+
url = "https://packages.typst.org/preview/tuhi-course-poster-vuw-0.2.0.tar.gz"
+
hash = "sha256-RrDBYas/wivBdin7rZC8WzAmnhFBvp/tut1nWVSsCDs="
+
typstDeps = [
+
"cetz_0_3_3",
+
"codetastic_0_2_2",
+
]
+
description = "A poster template for VUW course descriptions"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-course-poster-vuw"
+
+
[tuhi-course-poster-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-course-poster-vuw-0.1.0.tar.gz"
+
hash = "sha256-jZgfl6JLIHdth+kQcsuEfgWZb4wfRSURgJ0dhuj78Nw="
+
typstDeps = [
+
"codetastic_0_1_0",
+
]
+
description = "A poster template for VUW course descriptions"
+
license = [
+
"MPL-2.0",
+
]
+
+
[tuhi-exam-vuw."0.2.0"]
+
url = "https://packages.typst.org/preview/tuhi-exam-vuw-0.2.0.tar.gz"
+
hash = "sha256-TPg4LdVGUFlz+vnM3wh05Ck3eavjSOzZ+YCPqVtf0AU="
+
typstDeps = []
+
description = "A template for VUW exams"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-exam-vuw"
+
+
[tuhi-exam-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-exam-vuw-0.1.0.tar.gz"
+
hash = "sha256-3NtLGEzRshGKrd2G9Aei3Veks9loMPUXfdoLf/QI3Jw="
+
typstDeps = []
+
description = "A poster template for VUW exams"
+
license = [
+
"MPL-2.0",
+
]
+
+
[tuhi-labscript-vuw."0.2.0"]
+
url = "https://packages.typst.org/preview/tuhi-labscript-vuw-0.2.0.tar.gz"
+
hash = "sha256-H99ttKzsviYUcq/mYclHmb6ZDgHf3NmLMEICdddetbI="
+
typstDeps = []
+
description = "A labscript template for VUW experimental courses"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-labscript-vuw"
+
+
[tuhi-labscript-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-labscript-vuw-0.1.0.tar.gz"
+
hash = "sha256-k1gbYxiuu4FZuvxXP48nJrPPy7r0nnSvR0320lWKjYc="
+
typstDeps = []
+
description = "A labscript template for VUW experimental courses"
+
license = [
+
"MPL-2.0",
+
]
+
+
[tuhi-postcard-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-postcard-vuw-0.1.0.tar.gz"
+
hash = "sha256-RA01CS/kw6VCT4GPMUYVtxd4JkRTukaCYiGvcRE4reQ="
+
typstDeps = [
+
"codetastic_0_2_2",
+
]
+
description = "Template for promotional postcards"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-postcard-vuw"
+
+
[tuhi-presentation-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-presentation-vuw-0.1.0.tar.gz"
+
hash = "sha256-MK7Fd1ADaWYOQ0DKFoN9we/cXQOdkyPIVGpT+pv2u/0="
+
typstDeps = [
+
"theorion_0_3_2",
+
"touying_0_6_1",
+
]
+
description = "Template for presentation slides with tailored aesthetics"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-presentation-vuw"
+
+
[tuhi-programme-vuw."0.1.0"]
+
url = "https://packages.typst.org/preview/tuhi-programme-vuw-0.1.0.tar.gz"
+
hash = "sha256-nu+ocYbEYuEqf8cvt9mMgy/quIahXVxnHeownudosPc="
+
typstDeps = [
+
"codetastic_0_2_2",
+
]
+
description = "Template for 3-year degree overview tables"
+
license = [
+
"MPL-2.0",
+
]
+
homepage = "https://github.com/vuw-scps/tuhi-programme-vuw"
+
+
[tutor."0.8.0"]
+
url = "https://packages.typst.org/preview/tutor-0.8.0.tar.gz"
+
hash = "sha256-M/t2Z/i2mYdeLX/K9LUBbf8DUg4KcjsE6PS1wWEHGDo="
+
typstDeps = []
+
description = "Utilities to create exams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/rangerjo/tutor"
+
+
[tutor."0.7.0"]
+
url = "https://packages.typst.org/preview/tutor-0.7.0.tar.gz"
+
hash = "sha256-lTE1A3XbCLLRAWuoBlnakWv5xpl0kxgEaU+90x2Fb8g="
+
typstDeps = []
+
description = "Utilities to create exams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/rangerjo/tutor"
+
+
[tutor."0.6.1"]
+
url = "https://packages.typst.org/preview/tutor-0.6.1.tar.gz"
+
hash = "sha256-JmaatQL5QOpYSVa4P1x2B4hpFazXAlvMw3rwbZIGsLE="
+
typstDeps = []
+
description = "Utilities to create exams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/rangerjo/tutor"
+
+
[tutor."0.4.0"]
+
url = "https://packages.typst.org/preview/tutor-0.4.0.tar.gz"
+
hash = "sha256-yD87Is8aPz5CWAGgZ8A2pWD+CaAmrYr5PxRkSlm7Cwk="
+
typstDeps = []
+
description = "Utilities to create exams"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/rangerjo/tutor"
+
+
[tutor."0.3.0"]
+
url = "https://packages.typst.org/preview/tutor-0.3.0.tar.gz"
+
hash = "sha256-lzcZYHAH9aw4CNiqZJskUeP61tja1U15Tc4YxsmHrjw="
+
typstDeps = []
+
description = "Utilities to create exams"
+
license = [
+
"Unlicense",
+
]
+
+
[typ2anki."0.1.0"]
+
url = "https://packages.typst.org/preview/typ2anki-0.1.0.tar.gz"
+
hash = "sha256-J/BOFlowljl2P7FQVklS0YXlI0bf9XzWYZ/NwIZp1m8="
+
typstDeps = [
+
"gentle-clues_1_1_0",
+
]
+
description = "Convert Typst files into Anki cards automatically"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sgomezsal/typ2anki"
+
+
[typearea."0.2.0"]
+
url = "https://packages.typst.org/preview/typearea-0.2.0.tar.gz"
+
hash = "sha256-YjXKZHr12XZ2jur3FL2AnR1odkVu13SpXZeo7yAejac="
+
typstDeps = []
+
description = "A KOMA-Script inspired package to better configure your typearea and margins"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/freundTech/typst-typearea"
+
+
[typearea."0.1.0"]
+
url = "https://packages.typst.org/preview/typearea-0.1.0.tar.gz"
+
hash = "sha256-z8hitTU1uUKgegF/QsAQpJ1ad+dH5PfbFZPMNdgSDb0="
+
typstDeps = []
+
description = "A KOMA-Script inspired package to better configure your typearea and margins"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/freundTech/typst-typearea"
+
+
[typographic-resume."0.1.0"]
+
url = "https://packages.typst.org/preview/typographic-resume-0.1.0.tar.gz"
+
hash = "sha256-0E3XQBFLGniJMBpbyLUReNhYh99CpCd7VkiX0GAEZVQ="
+
typstDeps = []
+
description = "A stylish and customizable résumé template for Typst, designed with elegant typographic variations"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tsnobip/typst-typographic-resume"
+
+
[typographix-polytechnique-reports."0.1.6"]
+
url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.6.tar.gz"
+
hash = "sha256-5CqgNPzNFxwfuEFT4HVc7uG/vN3r/S2mueo5pR8o9Ak="
+
typstDeps = []
+
description = "A report template for Polytechnique students (from TypographiX"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/remigerme/typst-polytechnique"
+
+
[typographix-polytechnique-reports."0.1.5"]
+
url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.5.tar.gz"
+
hash = "sha256-8VjxG8q8C+2PvLDuOjadCOTxmBCfzeUHVf7eR1M0XyA="
+
typstDeps = []
+
description = "A report template for Polytechnique students (from TypographiX"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/remigerme/typst-polytechnique"
+
+
[typographix-polytechnique-reports."0.1.4"]
+
url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.4.tar.gz"
+
hash = "sha256-VXH1uh1SdpCXfRnQrD5/UfrVT7lSxRjO3/jO3nNpICw="
+
typstDeps = []
+
description = "A report template for Polytechnique students (from TypographiX"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/remigerme/typst-polytechnique"
+
+
[typographix-polytechnique-reports."0.1.3"]
+
url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.3.tar.gz"
+
hash = "sha256-jVNIPe59A2ObNHr/e35bkY6czTlKpgi5fGjyNMXZ+U8="
+
typstDeps = []
+
description = "A report template for Polytechnique students (from TypographiX"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/remigerme/typst-polytechnique"
+
+
[typographix-polytechnique-reports."0.1.2"]
+
url = "https://packages.typst.org/preview/typographix-polytechnique-reports-0.1.2.tar.gz"
+
hash = "sha256-9gx84t5v1iA0kSbLdS4xl9HQkuH8BWENoYPoDXOtNdM="
+
typstDeps = []
+
description = "A report template for Polytechnique students (from TypographiX"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/remigerme/typst-polytechnique"
+
+
[typpuccino."0.1.0"]
+
url = "https://packages.typst.org/preview/typpuccino-0.1.0.tar.gz"
+
hash = "sha256-UgXOQCLOv27dB78K7m271A7HZkDyWi+LoR3uqxrEnH4="
+
typstDeps = []
+
description = "Use catppuccin palette with Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TeddyHuang-00/typpuccino"
+
+
[typsium."0.2.0"]
+
url = "https://packages.typst.org/preview/typsium-0.2.0.tar.gz"
+
hash = "sha256-6regfP95XRjL1cRahkIjTR0FM+z0bfaVAJFtOkN4oz8="
+
typstDeps = []
+
description = "Typeset chemical formulas and reactions"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Typsium/typsium"
+
+
[typsium."0.1.0"]
+
url = "https://packages.typst.org/preview/typsium-0.1.0.tar.gz"
+
hash = "sha256-d8UcXivVesu+0Mnl3Fp3UGKXgkdAhnxzsy984E4LcvE="
+
typstDeps = []
+
description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+
license = [
+
"MIT",
+
]
+
+
[typsium."0.0.3"]
+
url = "https://packages.typst.org/preview/typsium-0.0.3.tar.gz"
+
hash = "sha256-KD6WlyY+wFNhoPZ9mGlJV6CtXNK/2O0ubQvRPJZv4RI="
+
typstDeps = []
+
description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+
license = [
+
"MIT",
+
]
+
+
[typsium."0.0.2"]
+
url = "https://packages.typst.org/preview/typsium-0.0.2.tar.gz"
+
hash = "sha256-mPaew+MErHsIIH6mH986pPdO8HM3tXqb3fiQ3MyBdmk="
+
typstDeps = []
+
description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+
license = [
+
"MIT",
+
]
+
+
[typsium."0.0.1"]
+
url = "https://packages.typst.org/preview/typsium-0.0.1.tar.gz"
+
hash = "sha256-4/1dgToURPCCX2eDzWV8NYc8/TIkUh/MFV3lUbsuLcI="
+
typstDeps = []
+
description = "Typeset chemical formulas, both with inorganic and organic chemistry notation"
+
license = [
+
"MIT",
+
]
+
+
[typsium-atomic."0.1.0"]
+
url = "https://packages.typst.org/preview/typsium-atomic-0.1.0.tar.gz"
+
hash = "sha256-rprYxERucrUOCau4PeT0Tuo/VaZAyph0imduvLsvmOI="
+
typstDeps = [
+
"cetz_0_3_2",
+
"typsium_0_2_0",
+
]
+
description = "Draw Atoms, their electron configurations, shells and orbitals in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Typsium/typsium-atomic"
+
+
[typsium-ghs."0.1.0"]
+
url = "https://packages.typst.org/preview/typsium-ghs-0.1.0.tar.gz"
+
hash = "sha256-TLMDZEs899q4NeMxssgpfudPLbUClXeo5HA1fimtX8E="
+
typstDeps = []
+
description = "Display and format Hazard & Precautionary statements and GHS pictograms in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Typsium/typsium-ghs"
+
+
[typsium-iso-7010."0.1.0"]
+
url = "https://packages.typst.org/preview/typsium-iso-7010-0.1.0.tar.gz"
+
hash = "sha256-At2mMp78LLfZ8KFC/X70Bq8/OuL/XCyWvPUqJ+dgJ5s="
+
typstDeps = []
+
description = "Display Warning signs, Fire signs, Emergency signs, Mandatory signs, Prohibited signs following the ISO 7010 standard in Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Typsium/typsium-iso-7010"
+
+
[typslides."1.2.5"]
+
url = "https://packages.typst.org/preview/typslides-1.2.5.tar.gz"
+
hash = "sha256-Jxl8Ptse2uQQgSRDQBZXnAzAsWtrNqDN2fm6gZXDNzA="
+
typstDeps = []
+
description = "Minimalistic Typst slides"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/manjavacas/typslides"
+
+
[typslides."1.2.4"]
+
url = "https://packages.typst.org/preview/typslides-1.2.4.tar.gz"
+
hash = "sha256-mAmMN3gkjjiaus1k6e59wzeqCJ4ZkuDFLczil0JY4Sc="
+
typstDeps = []
+
description = "Minimalistic Typst slides"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/manjavacas/typslides"
+
+
[typslides."1.2.3"]
+
url = "https://packages.typst.org/preview/typslides-1.2.3.tar.gz"
+
hash = "sha256-O/X1iiAshGUF+WMMksOcl+89Pslob2Qdq0q7C+amLHk="
+
typstDeps = []
+
description = "Minimalistic Typst slides"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/manjavacas/typslides"
+
+
[typslides."1.2.1"]
+
url = "https://packages.typst.org/preview/typslides-1.2.1.tar.gz"
+
hash = "sha256-ccq1C1TM9UFdst344/bSTobxwqFrtEGIVPRL2MACiwk="
+
typstDeps = []
+
description = "Minimalistic Typst slides"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/manjavacas/typslides"
+
+
[typslides."1.2.0"]
+
url = "https://packages.typst.org/preview/typslides-1.2.0.tar.gz"
+
hash = "sha256-K13Mle1mkRp2I+w4UR6L5gMxhHkWXZnGMfYUIKSDLpk="
+
typstDeps = []
+
description = "Minimalistic Typst slides"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/manjavacas/typslides"
+
+
[typslides."1.1.1"]
+
url = "https://packages.typst.org/preview/typslides-1.1.1.tar.gz"
+
hash = "sha256-nqcBa3ckShHMFX7Z1UyIYlF6eHJXbAM7LYdHmp53Lo4="
+
typstDeps = []
+
description = "Minimalistic Typst slides"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/manjavacas/typslides"
+
+
[ucpc-solutions."0.1.1"]
+
url = "https://packages.typst.org/preview/ucpc-solutions-0.1.1.tar.gz"
+
hash = "sha256-7zHpbpKm0aUQ2UeOqUMG4ZayEmcHG9bYi6+5elZHaXk="
+
typstDeps = []
+
description = "The port of UCPC solutions theme"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ShapeLayer/ucpc-solutions__typst"
+
+
[ucpc-solutions."0.1.0"]
+
url = "https://packages.typst.org/preview/ucpc-solutions-0.1.0.tar.gz"
+
hash = "sha256-6FeZaR7FKky13z9XEyfan1mTl8uxV/5BWzZFQKW0DHQ="
+
typstDeps = []
+
description = "The port of UCPC solutions theme"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ShapeLayer/ucpc-solutions__typst"
+
+
[umbra."0.1.0"]
+
url = "https://packages.typst.org/preview/umbra-0.1.0.tar.gz"
+
hash = "sha256-DabsDQMs5r76fU9Jil2bgwDunZdcYJaYRNcbEQLrel0="
+
typstDeps = [
+
"suiji_0_3_0",
+
]
+
description = "Basic shadows for Typst"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/davystrong/umbra"
+
+
[unequivocal-ams."0.1.2"]
+
url = "https://packages.typst.org/preview/unequivocal-ams-0.1.2.tar.gz"
+
hash = "sha256-QHT9PJvdQJA9pU1MQjKvEwq4tLHGtjK0MWwBPEfcDEQ="
+
typstDeps = []
+
description = "An AMS-style paper template to publish at conferences and journals for mathematicians"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/typst/templates"
+
+
[unequivocal-ams."0.1.1"]
+
url = "https://packages.typst.org/preview/unequivocal-ams-0.1.1.tar.gz"
+
hash = "sha256-Tw0dLrvKdOlwpQYwZyrr4ur6jdSRD9+HUW79Y6shRBU="
+
typstDeps = []
+
description = "An AMS-style paper template to publish at conferences and journals for mathematicians"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/typst/templates"
+
+
[unequivocal-ams."0.1.0"]
+
url = "https://packages.typst.org/preview/unequivocal-ams-0.1.0.tar.gz"
+
hash = "sha256-U8ImTg6iL+8W5U7D21ZoypmrQTEc5mDtBPbLJRU5NPc="
+
typstDeps = []
+
description = "An AMS-style paper template to publish at conferences and journals for mathematicians"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/typst/templates"
+
+
[unichar."0.3.0"]
+
url = "https://packages.typst.org/preview/unichar-0.3.0.tar.gz"
+
hash = "sha256-hI7KvLVatUBi+HevKT5C+Z84V3XP/wK/fPKUPrNmyDM="
+
typstDeps = []
+
description = "A partial port of the Unicode Character Database"
+
license = [
+
"MIT",
+
"Unicode-3.0",
+
]
+
homepage = "https://github.com/MDLC01/unichar"
+
+
[unichar."0.2.0"]
+
url = "https://packages.typst.org/preview/unichar-0.2.0.tar.gz"
+
hash = "sha256-Krv+A5H4yLb4VjEOlRwwhbpPnlH55h1AMQCYtf08Wzo="
+
typstDeps = []
+
description = "A partial port of the Unicode Character Database"
+
license = [
+
"MIT",
+
"Unicode-3.0",
+
]
+
homepage = "https://github.com/MDLC01/unichar"
+
+
[unichar."0.1.0"]
+
url = "https://packages.typst.org/preview/unichar-0.1.0.tar.gz"
+
hash = "sha256-H3ItngZTHyoR0NqBBS1DYuRb1cECDjaj+k6v08I2arQ="
+
typstDeps = []
+
description = "A partial port of the Unicode Character Database"
+
license = [
+
"MIT",
+
"Unicode-3.0",
+
]
+
homepage = "https://github.com/MDLC01/unichar"
+
+
[unify."0.7.1"]
+
url = "https://packages.typst.org/preview/unify-0.7.1.tar.gz"
+
hash = "sha256-1GvuZQ2u9Ty7hqFxdsVg3yJ/S6rFa/c0/HYjoR2PESA="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ChHecker/unify"
+
+
[unify."0.7.0"]
+
url = "https://packages.typst.org/preview/unify-0.7.0.tar.gz"
+
hash = "sha256-xt7fQZhlxP3jqV9jd4QYbOM+gqQ3U5pwyqSoq5WrEBQ="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ChHecker/unify"
+
+
[unify."0.6.1"]
+
url = "https://packages.typst.org/preview/unify-0.6.1.tar.gz"
+
hash = "sha256-PPXJd5PCMWPWXEgApGFYV0xNyc+WuvZaSBaBjjsJFtg="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ChHecker/unify"
+
+
[unify."0.6.0"]
+
url = "https://packages.typst.org/preview/unify-0.6.0.tar.gz"
+
hash = "sha256-KqhsTD6kIiQuVufvBNISaqa7N/RYfIfAsLaHHT0Ymsk="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ChHecker/unify"
+
+
[unify."0.5.0"]
+
url = "https://packages.typst.org/preview/unify-0.5.0.tar.gz"
+
hash = "sha256-IqtDX0evoJHjdo1pGhvUXSH2vzbr6IWwSHlKsxMSxTo="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ChHecker/unify"
+
+
[unify."0.4.3"]
+
url = "https://packages.typst.org/preview/unify-0.4.3.tar.gz"
+
hash = "sha256-/MsiFiiU84nMRDHgVjL8yKr73hHIbHBGDWwvDAIHfys="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ChHecker/unify"
+
+
[unify."0.4.2"]
+
url = "https://packages.typst.org/preview/unify-0.4.2.tar.gz"
+
hash = "sha256-FygEPTaNYUjXxRaOpaLO/00LU4M86KCqWBnNajAUj0g="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
+
[unify."0.4.1"]
+
url = "https://packages.typst.org/preview/unify-0.4.1.tar.gz"
+
hash = "sha256-CARU0Sz8UiJcJmpQg6DLxKV9oT2itg5UZJT36PQoa70="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
+
[unify."0.4.0"]
+
url = "https://packages.typst.org/preview/unify-0.4.0.tar.gz"
+
hash = "sha256-MwxQbUxUnwmsEDyrSdIhm3dCPmDLeGUcvFvYtDHwlEw="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
+
[unify."0.1.0"]
+
url = "https://packages.typst.org/preview/unify-0.1.0.tar.gz"
+
hash = "sha256-iu4iTByyYBFEXuzra1wVKGMxqREAqDnPdK7U55mMnDc="
+
typstDeps = []
+
description = "Format numbers, units, and ranges correctly"
+
license = [
+
"MIT",
+
]
+
+
[unilab."0.0.2"]
+
url = "https://packages.typst.org/preview/unilab-0.0.2.tar.gz"
+
hash = "sha256-4C37iqsVl1FGkjD3t8aUrghf7Z8QkTwZyNwZHZoi+Ig="
+
typstDeps = [
+
"chic-hdr_0_4_0",
+
"linguify_0_4_0",
+
"oxifmt_0_2_0",
+
"unify_0_4_3",
+
]
+
description = "Lab report"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sjfhsjfh/unilab"
+
+
[universal-cau-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/universal-cau-thesis-0.1.0.tar.gz"
+
hash = "sha256-kpHesQt7AQ9+DuEOA2czb0A5Fmot6m6KZiM9LHcOlLg="
+
typstDeps = [
+
"codelst_2_0_1",
+
"codly_0_2_0",
+
]
+
description = "中国农业大学毕业论文的Typst模板"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/JWangL5/CAU-ThesisTemplate-Typst"
+
+
[universal-hit-thesis."0.3.0"]
+
url = "https://packages.typst.org/preview/universal-hit-thesis-0.3.0.tar.gz"
+
hash = "sha256-78IVN1tzEH7qKnAdrWEGgmCWwAogLFdmtT9rsqNs5fQ="
+
typstDeps = [
+
"algo_0_3_4",
+
"codelst_2_0_2",
+
"cuti_0_2_1",
+
"datify_0_1_3",
+
"i-figured_0_2_4",
+
"lovelace_0_2_0",
+
"numbly_0_1_0",
+
]
+
description = "哈尔滨工业大学学位论文模板 | Universal Harbin Institute of Technology Thesis"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hitszosa/universal-hit-thesis"
+
+
[universal-hit-thesis."0.2.1"]
+
url = "https://packages.typst.org/preview/universal-hit-thesis-0.2.1.tar.gz"
+
hash = "sha256-+aPKPJKUx18QinUZ8XwIuY7rlEv+V/3HbH5zSfLC3ho="
+
typstDeps = [
+
"algorithmic_0_1_0",
+
"codelst_2_0_1",
+
"cuti_0_2_1",
+
"i-figured_0_2_4",
+
"lovelace_0_2_0",
+
]
+
description = "哈尔滨工业大学学位论文模板 | Universal Harbin Institute of Technology Thesis"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/chosertech/HIT-Thesis-Typst"
+
+
[universal-hit-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/universal-hit-thesis-0.2.0.tar.gz"
+
hash = "sha256-7EaaLLtnXsi/Jw9LonJ/6hsjSadZJIZkHzP/ZSC91lM="
+
typstDeps = [
+
"algorithmic_0_1_0",
+
"codelst_2_0_1",
+
"cuti_0_2_1",
+
"i-figured_0_2_4",
+
]
+
description = "哈尔滨工业大学学位论文模板 | Universal Harbin Institute of Technology Thesis"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/chosertech/HIT-Thesis-Typst"
+
+
[unofficial-fhict-document-template."1.1.3"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.3.tar.gz"
+
hash = "sha256-QMVNRywcGXL/YcD47I0HSPZiRcW6XT5SwGDvgHwR9es="
+
typstDeps = [
+
"codly_1_3_0",
+
"codly-languages_0_1_8",
+
"glossarium_0_5_4",
+
"hydra_0_6_0",
+
"in-dexter_0_7_0",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."1.1.2"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.2.tar.gz"
+
hash = "sha256-BMWZMjCA+X6kKF/ztYhxFIJey7Yl+qcPY176+DCM8yM="
+
typstDeps = [
+
"codly_1_1_1",
+
"codly-languages_0_1_3",
+
"glossarium_0_5_1",
+
"hydra_0_5_1",
+
"in-dexter_0_7_0",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."1.1.1"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.1.tar.gz"
+
hash = "sha256-XQPrepCZwRZOspaTnivUWlOMNhKpyB/FBiY5lQWHuqw="
+
typstDeps = [
+
"codly_1_0_0",
+
"glossarium_0_5_1",
+
"hydra_0_5_1",
+
"in-dexter_0_5_3",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."1.1.0"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.1.0.tar.gz"
+
hash = "sha256-4ssqWSW59es4OJ44og2YpmyFyWGuEQhqhkJU/HPavCo="
+
typstDeps = [
+
"codly_1_0_0",
+
"glossarium_0_5_1",
+
"hydra_0_5_1",
+
"in-dexter_0_5_3",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."1.0.2"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.0.2.tar.gz"
+
hash = "sha256-i51+YsB5BSOctB2c1onas/ki7AuTnUNDGUQQ/HX9ikI="
+
typstDeps = [
+
"codly_1_0_0",
+
"glossarium_0_4_1",
+
"hydra_0_5_1",
+
"in-dexter_0_4_2",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."1.0.1"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.0.1.tar.gz"
+
hash = "sha256-CpQkytahCw+pkn4BT1BPWfCi1kTa6BDUIpZFYFwA6l8="
+
typstDeps = [
+
"codly_1_0_0",
+
"glossarium_0_4_1",
+
"hydra_0_5_1",
+
"in-dexter_0_4_2",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."1.0.0"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-1.0.0.tar.gz"
+
hash = "sha256-UQM8nDZlSUBonBtWQpXI/qDe5+0hJB+jjv5ZCJDd0qg="
+
typstDeps = [
+
"codly_1_0_0",
+
"glossarium_0_4_1",
+
"hydra_0_5_1",
+
"in-dexter_0_4_2",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."0.11.0"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-0.11.0.tar.gz"
+
hash = "sha256-CimlvTlW0/h7KjV9yTlazGIcolaVSi45MNO6AQ6YtGA="
+
typstDeps = [
+
"codly_1_0_0",
+
"glossarium_0_4_1",
+
"in-dexter_0_4_2",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."0.10.1"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-0.10.1.tar.gz"
+
hash = "sha256-4Z49nV4c3vkG3xaR+fUcDxDdfn2dnp7MMBbfCEynDqA="
+
typstDeps = [
+
"codly_0_2_0",
+
"colorful-boxes_1_2_0",
+
"glossarium_0_2_6",
+
"in-dexter_0_3_0",
+
"showybox_2_0_1",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-fhict-document-template."0.10.0"]
+
url = "https://packages.typst.org/preview/unofficial-fhict-document-template-0.10.0.tar.gz"
+
hash = "sha256-PS15qDjBe8IjnwP77OjtlUOI6DrnjsbPlbAbx8ZdK4I="
+
typstDeps = [
+
"codly_0_2_0",
+
"colorful-boxes_1_2_0",
+
"glossarium_0_2_6",
+
"in-dexter_0_3_0",
+
"showybox_2_0_1",
+
]
+
description = "This is a document template for creating professional-looking documents with Typst, tailored for FHICT (Fontys Hogeschool ICT"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/TomVer99/FHICT-typst-template"
+
+
[unofficial-hka-thesis."1.0.1"]
+
url = "https://packages.typst.org/preview/unofficial-hka-thesis-1.0.1.tar.gz"
+
hash = "sha256-XLHqe1WvosoePU30Obp38Y5tQ36kAVgrHRxoyQo72qI="
+
typstDeps = [
+
"acrostiche_0_2_0",
+
"glossarium_0_5_4",
+
]
+
description = "Unofficial thesis template used at the University of Applied Sciences Karlsruhe (Hochschule Karlsruhe / HKA) at the faculty of Computer Science"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/AnsgarLichter/unofficial-hka-thesis"
+
+
[unofficial-hka-thesis."1.0.0"]
+
url = "https://packages.typst.org/preview/unofficial-hka-thesis-1.0.0.tar.gz"
+
hash = "sha256-7rlvT2kIJcpCwNe1dAyfXkTV1aC2wHN4ycRazywAjrI="
+
typstDeps = [
+
"acrostiche_0_2_0",
+
"glossarium_0_5_1",
+
]
+
description = "Unofficial thesis template used at the University of Applied Sciences Karlsruhe (Hochschule Karlsruhe / HKA) at the faculty of Computer Science"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/AnsgarLichter/unofficial-hka-thesis"
+
+
[unofficial-sdu-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.2.0.tar.gz"
+
hash = "sha256-O/l47Jrk+ChI0JC7VVGLxTL250OTs4L24OlYtZeCei4="
+
typstDeps = [
+
"cuti_0_3_0",
+
"i-figured_0_2_4",
+
"lovelace_0_2_0",
+
"numbly_0_1_0",
+
"unofficial-sdu-thesis_0_1_0",
+
]
+
description = "山东大学本科毕业论文(设计)模板"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/GrooveWJH/unofficial-sdu-thesis"
+
+
[unofficial-sdu-thesis."0.1.0"]
+
url = "https://packages.typst.org/preview/unofficial-sdu-thesis-0.1.0.tar.gz"
+
hash = "sha256-A6SgfjvrtMja67XUOSu/rQS5LwcdAeAVQOU1uDhMlUg="
+
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/GrooveWJH/unofficial-sdu-thesis"
+
+
[untypsignia."0.1.1"]
+
url = "https://packages.typst.org/preview/untypsignia-0.1.1.tar.gz"
+
hash = "sha256-skdLt8VjBpWG4eWHArBgPnAxOPcknFrYHCNw7aeiBOE="
+
typstDeps = []
+
description = "Unofficial typesetter's insignia emulations"
+
license = [
+
"MIT",
+
]
+
+
[untypsignia."0.1.0"]
+
url = "https://packages.typst.org/preview/untypsignia-0.1.0.tar.gz"
+
hash = "sha256-WRuR+AQJBU3KW6zuj1kPJRvqIEVnqB20PSpwEbqE8p0="
+
typstDeps = []
+
description = "Unofficial typesetter's insignia emulations"
+
license = [
+
"MIT",
+
]
+
+
[uo-pup-thesis-manuscript."0.1.1"]
+
url = "https://packages.typst.org/preview/uo-pup-thesis-manuscript-0.1.1.tar.gz"
+
hash = "sha256-lOma43713Y5kr3+x8ewS/APgzbHuRDosvCltH0uu3FY="
+
typstDeps = []
+
description = "Unofficial Typst template for PUP (Polytechnic University of the Philippines) undergraduate thesis manuscript"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/datsudo/uo-pup-thesis-manuscript"
+
+
[uo-pup-thesis-manuscript."0.1.0"]
+
url = "https://packages.typst.org/preview/uo-pup-thesis-manuscript-0.1.0.tar.gz"
+
hash = "sha256-oIj2yKgJgKqC8Lyc6iIDcG0qk0ygTCnG3ViLISEaGpQ="
+
typstDeps = []
+
description = "Unofficial Typst template for PUP (Polytechnic University of the Philippines) undergraduate thesis manuscript"
+
license = [
+
"MIT",
+
]
+
homepage = "https://gitlab.com/datsudo/uo-pup-thesis-manuscript"
+
+
[uo-tsinghua-thesis."0.3.0"]
+
url = "https://packages.typst.org/preview/uo-tsinghua-thesis-0.3.0.tar.gz"
+
hash = "sha256-c61R3BlMDC0pzk+FpkOakPYPPr+IGjllz7plbmBK/nE="
+
typstDeps = [
+
"a2c-nums_0_0_1",
+
"cuti_0_3_0",
+
"tablem_0_2_0",
+
]
+
description = "An unofficial Typst template for Tsinghua University (THU) graduate thesis. 清华大学研究生毕业论文非官方Typst模板。"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/dl-li/uo-Tsinghua-Thesis-Typst-Template"
+
+
[uo-tsinghua-thesis."0.2.0"]
+
url = "https://packages.typst.org/preview/uo-tsinghua-thesis-0.2.0.tar.gz"
+
hash = "sha256-URg8McvUjgTKFJBWyoXEfKEA+0GPxjgmvhhOAsMcP24="
+
typstDeps = [
+
"a2c-nums_0_0_1",
+
"cuti_0_3_0",
+
"tablem_0_2_0",
+
]
+
description = "An unofficial Typst template for Tsinghua University (THU) graduate thesis. 清华大学研究生毕业论文非官方Typst模板。"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/dl-li/uo-Tsinghua-Thesis-Typst-Template"
+
+
[upb-corporate-design-slides."0.1.2"]
+
url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.2.tar.gz"
+
hash = "sha256-X93El+L4GAiDM9BwiVU8l48MpIAXsWPC4A7z3DTY2ng="
+
typstDeps = [
+
"touying_0_5_5",
+
]
+
description = "Presentation template for Paderborn University (UPB"
+
license = [
+
"MIT",
+
]
+
homepage = "https://codeberg.org/Kuchenmampfer/upb-corporate-design-slides"
+
+
[upb-corporate-design-slides."0.1.1"]
+
url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.1.tar.gz"
+
hash = "sha256-vYl3eiYJpUXUiGKff0aTgHSV1Xwahj2f7u+UiJ9MK+o="
+
typstDeps = [
+
"touying_0_5_3",
+
]
+
description = "Presentation template for Paderborn University (UPB"
+
license = [
+
"MIT",
+
]
+
homepage = "https://codeberg.org/Kuchenmampfer/upb-corporate-design-slides"
+
+
[upb-corporate-design-slides."0.1.0"]
+
url = "https://packages.typst.org/preview/upb-corporate-design-slides-0.1.0.tar.gz"
+
hash = "sha256-UD0wmzFq2bb9ym2JG6oNJKe/T3dZmAHqCQQvuJRse28="
+
typstDeps = [
+
"touying_0_5_3",
+
]
+
description = "Presentation template for Paderborn University (UPB"
+
license = [
+
"MIT",
+
]
+
homepage = "https://codeberg.org/Kuchenmampfer/upb-corporate-design-slides"
+
+
[use-academicons."0.1.0"]
+
url = "https://packages.typst.org/preview/use-academicons-0.1.0.tar.gz"
+
hash = "sha256-AoXb2XZQvfZIKXRidR+tT1Iv6pPxog1x1cZOHGz8f8s="
+
typstDeps = []
+
description = "A Typst library for Academicons the desktop fonts"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/bpkleer/typst-academicons"
+
+
[use-tabler-icons."0.11.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.11.0.tar.gz"
+
hash = "sha256-z7Z3MKNpWD2q2aRnu/+gnCbumbFt9P4ss0Ma+M6UzUM="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.10.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.10.0.tar.gz"
+
hash = "sha256-HVFmWtmM4jZKUELDrTa9huYeoZveaZmE8wr0Wo7roME="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.9.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.9.0.tar.gz"
+
hash = "sha256-bZcuWJTqORFwuqHENitblK2k9LtJhKJiPw3NmN25XWA="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.8.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.8.0.tar.gz"
+
hash = "sha256-ScfdimKwcHVaer68a2z9hYFd26Bgam3xg/meqGeBhHE="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.7.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.7.0.tar.gz"
+
hash = "sha256-KzRXDxtZjZ4CiYkHKfUa2cbyBC04V4dlnVRES4hqmHw="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.6.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.6.0.tar.gz"
+
hash = "sha256-j/rj1MajyQaepZQ7bf96tJ3kG3gdYbkNRGEtvKAfPiQ="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.5.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.5.0.tar.gz"
+
hash = "sha256-V6lOmZ/SYFzMH/mRC5hTpI7kf1eeSlvBXBBsvLRC54U="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.4.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.4.0.tar.gz"
+
hash = "sha256-jTAgNxNaqChJEWOmQY/P8qy0n+GkX0Qv72//PtnFbPs="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.3.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.3.0.tar.gz"
+
hash = "sha256-6V749nma7ZCmMV2ujMUhkKTGnNmzN2o7XEAI9xC1jTw="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.2.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.2.0.tar.gz"
+
hash = "sha256-Dxga+6pjiDg1K/68nizHPlY2kJ0mgOzMWTbBNRX3YV4="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[use-tabler-icons."0.1.0"]
+
url = "https://packages.typst.org/preview/use-tabler-icons-0.1.0.tar.gz"
+
hash = "sha256-7hLxRce6E9oCvw42Yj1Bqmbu1IqQBYJMeF7CCNXQdhA="
+
typstDeps = []
+
description = "Tabler Icons for Typst using webfont"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/zyf722/typst-tabler-icons"
+
+
[valkyrie."0.2.2"]
+
url = "https://packages.typst.org/preview/valkyrie-0.2.2.tar.gz"
+
hash = "sha256-9FTVR2mbrCMIrsraUrx8m8U1OwMKzIlvK9ule3cQHLk="
+
typstDeps = []
+
description = "Type safe type validation"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/typst-community/valkyrie"
+
+
[valkyrie."0.2.1"]
+
url = "https://packages.typst.org/preview/valkyrie-0.2.1.tar.gz"
+
hash = "sha256-jUkFhI7PXqPzKNhlfu5AjNVv9r1OFGj7fuqPoZ+8OmA="
+
typstDeps = []
+
description = "Type safe type validation"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/typst-community/valkyrie"
+
+
[valkyrie."0.2.0"]
+
url = "https://packages.typst.org/preview/valkyrie-0.2.0.tar.gz"
+
hash = "sha256-u6ro2Rf1rOAEdMT6UjQOspnJsvNPA/TIFK+jlCih8WM="
+
typstDeps = [
+
"fletcher_0_4_4",
+
]
+
description = "Type safe type validation"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/typst-community/valkyrie"
+
+
[valkyrie."0.1.1"]
+
url = "https://packages.typst.org/preview/valkyrie-0.1.1.tar.gz"
+
hash = "sha256-Jl9tXCpJiePbl7Q1ppCoOuWkvsPBIAQ99B4tt5LMJFg="
+
typstDeps = []
+
description = "Type validation"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/JamesxX/valkyrie"
+
+
[valkyrie."0.1.0"]
+
url = "https://packages.typst.org/preview/valkyrie-0.1.0.tar.gz"
+
hash = "sha256-CCcdsxBXZX1SJRiQD6jU/Y18GU9WcG534XdJjnIr7rk="
+
typstDeps = []
+
description = "Type validation"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/JamesxX/valkyrie"
+
+
[vantage-cv."1.0.0"]
+
url = "https://packages.typst.org/preview/vantage-cv-1.0.0.tar.gz"
+
hash = "sha256-ggyQgxkGUuRJKibB5cIz+8cJGME/ELRwPL1AUnxSTbg="
+
typstDeps = []
+
description = "An ATS friendly simple Typst CV template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/sardorml/vantage-typst"
+
+
[vartable."0.1.2"]
+
url = "https://packages.typst.org/preview/vartable-0.1.2.tar.gz"
+
hash = "sha256-qdxhy9af6K4ez9UUd9sYrHR38DbCHG/D1besutjxOHE="
+
typstDeps = [
+
"fletcher_0_5_2",
+
]
+
description = "A simple package to make variation table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Le-foucheur/Typst-VarTable"
+
+
[vartable."0.1.1"]
+
url = "https://packages.typst.org/preview/vartable-0.1.1.tar.gz"
+
hash = "sha256-MapzhIsPkoE8KunwS4EXfnEN3SpjqDdg7MEN3AQ5R6k="
+
typstDeps = [
+
"fletcher_0_4_5",
+
]
+
description = "A simple package to make variation table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Le-foucheur/Typst-VarTable"
+
+
[vartable."0.1.0"]
+
url = "https://packages.typst.org/preview/vartable-0.1.0.tar.gz"
+
hash = "sha256-MxFVz7B4g8rucTHvwRskbUU/JEUkn4aSEe+Es6b1O+M="
+
typstDeps = [
+
"fletcher_0_4_5",
+
]
+
description = "A simple package to make variation table"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Le-foucheur/Typst-VarTable"
+
+
[vercanard."1.0.2"]
+
url = "https://packages.typst.org/preview/vercanard-1.0.2.tar.gz"
+
hash = "sha256-OlUnjAHq46bqpMcrfpoZs2dFMwoxydonb5nUSrMWkIA="
+
typstDeps = []
+
description = "A colorful CV template"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/elegaanz/vercanard"
+
+
[vercanard."1.0.1"]
+
url = "https://packages.typst.org/preview/vercanard-1.0.1.tar.gz"
+
hash = "sha256-Y4PCYzyy11zXWPDDDdkJsYxCRrIPvp4RlGCe7K0krkk="
+
typstDeps = [
+
"vercanard_1_0_0",
+
]
+
description = "A colorful CV template"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/elegaanz/vercanard"
+
+
[vercanard."1.0.0"]
+
url = "https://packages.typst.org/preview/vercanard-1.0.0.tar.gz"
+
hash = "sha256-DIS6Sf/GNcznHph+LV9Cy5pzOvK7S34Ua+3Cz8twqnI="
+
typstDeps = []
+
description = "A colorful CV template"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/elegaanz/vercanard"
+
+
[versatile-apa."7.1.1"]
+
url = "https://packages.typst.org/preview/versatile-apa-7.1.1.tar.gz"
+
hash = "sha256-KNgC1hrSLA8mtBdvnow26pZ+WuZTa0P+3vBwBUZWpsc="
+
typstDeps = []
+
description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/jassielof/typst-templates"
+
+
[versatile-apa."7.1.0"]
+
url = "https://packages.typst.org/preview/versatile-apa-7.1.0.tar.gz"
+
hash = "sha256-lmVR7YQOlOUqdN4nAIacwfk3J6pCh5vU1oz88LDOcaM="
+
typstDeps = []
+
description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/jassielof/typst-templates"
+
+
[versatile-apa."7.0.0"]
+
url = "https://packages.typst.org/preview/versatile-apa-7.0.0.tar.gz"
+
hash = "sha256-Hz9Av3ZYvNNcWvpbY62AcpQxOsfKOFcWK6rQ5gjo5Q0="
+
typstDeps = []
+
description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/jassielof/typst-templates"
+
+
[vienna-tech."1.0.0"]
+
url = "https://packages.typst.org/preview/vienna-tech-1.0.0.tar.gz"
+
hash = "sha256-iFg9YMiy68RfG85RAe9olbAGABtCv95ZpunG/e+wjsA="
+
typstDeps = [
+
"codly_1_2_0",
+
]
+
description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/vienna-tech.git"
+
+
[vienna-tech."0.1.3"]
+
url = "https://packages.typst.org/preview/vienna-tech-0.1.3.tar.gz"
+
hash = "sha256-YVHU+4szUm2inhnRVfPVG+DzhIPMCnS1nyZs5vCALH8="
+
typstDeps = [
+
"codly_1_0_0",
+
]
+
description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/vienna-tech.git"
+
+
[vienna-tech."0.1.2"]
+
url = "https://packages.typst.org/preview/vienna-tech-0.1.2.tar.gz"
+
hash = "sha256-oqqtd1KthXrmrdWRRT0IxBd8fLmjZ82GxHOXRwenlrw="
+
typstDeps = [
+
"codly_1_0_0",
+
]
+
description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/vienna-tech.git"
+
+
[vienna-tech."0.1.1"]
+
url = "https://packages.typst.org/preview/vienna-tech-0.1.1.tar.gz"
+
hash = "sha256-WoWJGCbI1FqqOidImGG73mMU5H0jZFzGqHWF1+NtujU="
+
typstDeps = []
+
description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/vienna-tech.git"
+
+
[vienna-tech."0.1.0"]
+
url = "https://packages.typst.org/preview/vienna-tech-0.1.0.tar.gz"
+
hash = "sha256-3mPquLyrW5Mrkfbb+/t1dDqGtdD9Rl7GRKD3Y9JVx44="
+
typstDeps = []
+
description = "An unofficial template for writing thesis at the TU Wien civil- and environmental engineering faculty"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/npikall/vienna-tech.git"
+
+
[vlna."0.1.0"]
+
url = "https://packages.typst.org/preview/vlna-0.1.0.tar.gz"
+
hash = "sha256-G3FA/puWLUb1qa6n6pCyD4CIlr10pfgsZ/ZtQmnHr6s="
+
typstDeps = []
+
description = "First version of czech vlna from LaTeX. All characters with less than 3 letters are connected to the next word"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/ShinoYumi/typst-vlna/"
+
+
[vonsim."0.2.0"]
+
url = "https://packages.typst.org/preview/vonsim-0.2.0.tar.gz"
+
hash = "sha256-c/0A2Z8JkEbmQulQ5PkBMVfM8pzWHbhauyOMkZ9iPnc="
+
typstDeps = []
+
description = "Syntax highlighting support for VonSim"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/vonsim/typst-package"
+
+
[vonsim."0.1.0"]
+
url = "https://packages.typst.org/preview/vonsim-0.1.0.tar.gz"
+
hash = "sha256-JLppZi9QVShXesm511e4auRxQ6G6kRCJupu74zfahA4="
+
typstDeps = []
+
description = "Syntax highlighting support for VonSim"
+
license = [
+
"AGPL-3.0-only",
+
]
+
homepage = "https://github.com/vonsim/typst-package"
+
+
[wavy."0.1.1"]
+
url = "https://packages.typst.org/preview/wavy-0.1.1.tar.gz"
+
hash = "sha256-2/ZoPog8rL0/+yAx81NzVv4r0NmJ5Ox/rvmj7XYyatE="
+
typstDeps = [
+
"jogs_0_2_1",
+
]
+
description = "Draw digital timing diagram in Typst using Wavedrom"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Enter-tainer/wavy"
+
+
[wavy."0.1.0"]
+
url = "https://packages.typst.org/preview/wavy-0.1.0.tar.gz"
+
hash = "sha256-tby94hgfmh3JcdEV6rk4sEvsSa6lydKTSBIQ3aCRq5g="
+
typstDeps = [
+
"jogs_0_2_0",
+
]
+
description = "Draw digital timing diagram in Typst using Wavedrom"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Enter-tainer/wavy"
+
+
[weave."0.2.0"]
+
url = "https://packages.typst.org/preview/weave-0.2.0.tar.gz"
+
hash = "sha256-5KBpv8xxICBeZGYj+dVgiIsoMr2XRVr7Dg0H/31sZBA="
+
typstDeps = []
+
description = "A helper library for chaining lambda abstractions"
+
license = [
+
"MIT",
+
]
+
+
[weave."0.1.0"]
+
url = "https://packages.typst.org/preview/weave-0.1.0.tar.gz"
+
hash = "sha256-fPAST4JG+h4PJnRNPrMG4feYDh3+m3kkVI8FS5vpMNg="
+
typstDeps = []
+
description = "A helper library for chaining lambda abstractions"
+
license = [
+
"MIT",
+
]
+
+
[wenyuan-campaign."0.1.1"]
+
url = "https://packages.typst.org/preview/wenyuan-campaign-0.1.1.tar.gz"
+
hash = "sha256-Hcf+rRsW5rw6giD5SjdkjLs0Gyl4ejA2CBd1xsNRfBA="
+
typstDeps = [
+
"droplet_0_3_1",
+
"tidy_0_4_2",
+
]
+
description = "Easily write DnD 5e style campaign documents"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/yanwenywan/typst-packages/tree/master/wenyuan-campaign"
+
+
[wenyuan-campaign."0.1.0"]
+
url = "https://packages.typst.org/preview/wenyuan-campaign-0.1.0.tar.gz"
+
hash = "sha256-wE1peYrp4LFotk7dr+Jp2l8HVeA0AHveE2JpMbv/dYY="
+
typstDeps = [
+
"droplet_0_3_1",
+
]
+
description = "Easily write DnD 5e style campaign documents"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/yanwenywan/typst-packages/tree/master/wenyuan-campaign"
+
+
[whalogen."0.3.0"]
+
url = "https://packages.typst.org/preview/whalogen-0.3.0.tar.gz"
+
hash = "sha256-u9i/Mg5KgKOrxhyj1dOx2x2+KbW7q4N/zNKdGPCNpXc="
+
typstDeps = [
+
"xarrow_0_3_1",
+
]
+
description = "Typesetting chemical formulae, a port of mhchem"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/schang412/typst-whalogen"
+
+
[whalogen."0.2.0"]
+
url = "https://packages.typst.org/preview/whalogen-0.2.0.tar.gz"
+
hash = "sha256-yMNvwvNCUA2LpkU9J0UIr6JR3j9wil/NDBRTWcJOu7A="
+
typstDeps = [
+
"xarrow_0_3_1",
+
]
+
description = "Typesetting chemical formulae, a port of mhchem"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/schang412/typst-whalogen"
+
+
[whalogen."0.1.0"]
+
url = "https://packages.typst.org/preview/whalogen-0.1.0.tar.gz"
+
hash = "sha256-kDy4LdjDaqxIP6rZwh6Q5jOWr4MZqBJWwfvVEvSiUD8="
+
typstDeps = [
+
"xarrow_0_1_1",
+
]
+
description = "Typesetting chemical formulae, a port of mhchem"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/schang412/whalogen"
+
+
[wicked."0.1.1"]
+
url = "https://packages.typst.org/preview/wicked-0.1.1.tar.gz"
+
hash = "sha256-OK+P/UUrvcCK+RjnpDBkyELeMlYnaQPGV7vWRZP3nb4="
+
typstDeps = []
+
description = "A flexible and easy-to-use package for typesetting Wick contractions"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/ZaninDavide/wicked"
+
+
[wicked."0.1.0"]
+
url = "https://packages.typst.org/preview/wicked-0.1.0.tar.gz"
+
hash = "sha256-h8xxUW2Kl9mo7EX+ckXkF5mFX9Bk4N+NXAT/HbOD/H8="
+
typstDeps = []
+
description = "A flexible and easy-to-use package for typesetting Wick contractions"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/ZaninDavide/wicked"
+
+
[wonderous-book."0.1.1"]
+
url = "https://packages.typst.org/preview/wonderous-book-0.1.1.tar.gz"
+
hash = "sha256-r4JxV3GBOJjX+7kYZUCeB/MlBGiKGu1Mqo5V0gb359c="
+
typstDeps = []
+
description = "A fiction book template with running headers and serif typography"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/typst/templates"
+
+
[wonderous-book."0.1.0"]
+
url = "https://packages.typst.org/preview/wonderous-book-0.1.0.tar.gz"
+
hash = "sha256-1eprA7c5mA6sC8Baj1cuOwtSAYnFF8jmPdt8JtInynw="
+
typstDeps = []
+
description = "A fiction book template with running headers and serif tyography"
+
license = [
+
"MIT-0",
+
]
+
homepage = "https://github.com/typst/templates"
+
+
[wordometer."0.1.4"]
+
url = "https://packages.typst.org/preview/wordometer-0.1.4.tar.gz"
+
hash = "sha256-H3h8Dq2SZrRWwOGJkfYq/d4cz1hyZ3iQoExGZ1OyBok="
+
typstDeps = [
+
"tidy_0_1_0",
+
]
+
description = "Word counts and document statistics"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+
[wordometer."0.1.3"]
+
url = "https://packages.typst.org/preview/wordometer-0.1.3.tar.gz"
+
hash = "sha256-Xt6W3xMOFZwQzCiL2wDFC2nwvKsQ1Crm+ukwZpYRBqo="
+
typstDeps = [
+
"tidy_0_1_0",
+
]
+
description = "Word counts and document statistics"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+
[wordometer."0.1.2"]
+
url = "https://packages.typst.org/preview/wordometer-0.1.2.tar.gz"
+
hash = "sha256-dIx+3bYDwJD44xs7JJIhXerplba/r2p5UbqDuDh9P1o="
+
typstDeps = [
+
"tidy_0_1_0",
+
]
+
description = "Word counts and document statistics"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+
[wordometer."0.1.1"]
+
url = "https://packages.typst.org/preview/wordometer-0.1.1.tar.gz"
+
hash = "sha256-fSvTqDB94H18k0mgrU4c3yd1GZFT90CTneyCZ7DI1y4="
+
typstDeps = [
+
"tidy_0_1_0",
+
"wordometer_0_1_0",
+
]
+
description = "Word counts and document statistics"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+
[wordometer."0.1.0"]
+
url = "https://packages.typst.org/preview/wordometer-0.1.0.tar.gz"
+
hash = "sha256-w7hOmbE8uv9jwd8powwidept2iuQxmUBLt3eIiu1DjE="
+
typstDeps = [
+
"tidy_0_1_0",
+
]
+
description = "Word counts and document statistics"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Jollywatt/typst-wordometer"
+
+
[wrap-indent."0.1.0"]
+
url = "https://packages.typst.org/preview/wrap-indent-0.1.0.tar.gz"
+
hash = "sha256-nKprBAhUo1W7F8JrrN3ZgMbnIUAdFgelCL9H1RTDI/4="
+
typstDeps = []
+
description = "Wrap content in custom functions with just indentation"
+
license = [
+
"MIT",
+
]
+
+
[wrap-it."0.1.1"]
+
url = "https://packages.typst.org/preview/wrap-it-0.1.1.tar.gz"
+
hash = "sha256-2g0RO1YFmxBSzMqlsTq0W3PQVIcmalx4SXqaegP3xAw="
+
typstDeps = []
+
description = "Wrap text around figures and content"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/ntjess/wrap-it"
+
+
[wrap-it."0.1.0"]
+
url = "https://packages.typst.org/preview/wrap-it-0.1.0.tar.gz"
+
hash = "sha256-Ro8WvO2VE8p/PuWQLWEVZKxxoenlMrzG6+Pw5slAUDo="
+
typstDeps = []
+
description = "Wrap text around figures and content"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/ntjess/wrap-it"
+
+
[xarrow."0.3.1"]
+
url = "https://packages.typst.org/preview/xarrow-0.3.1.tar.gz"
+
hash = "sha256-5DdscbcplvUldzNiGpVCbutM23uVmm+zniXHM3ayN+E="
+
typstDeps = []
+
description = "Variable-length arrows in Typst"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+
[xarrow."0.3.0"]
+
url = "https://packages.typst.org/preview/xarrow-0.3.0.tar.gz"
+
hash = "sha256-gOsErQP4alAhO3fQySgnoSYWQ5Mu2Bt2wRzrWR2zln4="
+
typstDeps = []
+
description = "Variable-length arrows in Typst"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+
[xarrow."0.2.0"]
+
url = "https://packages.typst.org/preview/xarrow-0.2.0.tar.gz"
+
hash = "sha256-ah1rdhslbP8sODCDVHuZEhgN/vmtzGJPzm7UO6d7elU="
+
typstDeps = []
+
description = "Variable-length arrows in Typst"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+
[xarrow."0.1.1"]
+
url = "https://packages.typst.org/preview/xarrow-0.1.1.tar.gz"
+
hash = "sha256-2siDO9qTxekEWNs2cXFyh79JADVtfAh4IPuoWKux9+o="
+
typstDeps = []
+
description = "Variable-length arrows in Typst"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+
[xarrow."0.1.0"]
+
url = "https://packages.typst.org/preview/xarrow-0.1.0.tar.gz"
+
hash = "sha256-ICtDtKZXxVeqT8h1U8XovbVQFtrlOEdsmYSFWdUW7cE="
+
typstDeps = []
+
description = "Variable-length arrows in Typst"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://codeberg.org/loutr/typst-xarrow/"
+
+
[xyznote."0.3.0"]
+
url = "https://packages.typst.org/preview/xyznote-0.3.0.tar.gz"
+
hash = "sha256-L0nzab7cGaw7/ZPUgWorAah/tBnitnAREpsZA4VB65w="
+
typstDeps = []
+
description = "Simple and Functional Typst Note Template"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/wardenxyz/xyznote"
+
+
[xyznote."0.2.0"]
+
url = "https://packages.typst.org/preview/xyznote-0.2.0.tar.gz"
+
hash = "sha256-nfkCFtbobcApzTOuNgfA4pLkoDwVyjFGds85IqZY1Dw="
+
typstDeps = []
+
description = "Simple and Functional Typst Note Template"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/wardenxyz/xyznote"
+
+
[xyznote."0.1.0"]
+
url = "https://packages.typst.org/preview/xyznote-0.1.0.tar.gz"
+
hash = "sha256-XLH7//iy9asuf1x9KEABjg320/8G6TKIgJxkE1XaIfI="
+
typstDeps = []
+
description = "A simple Typst template for creating notebooks"
+
license = [
+
"GPL-3.0-only",
+
]
+
homepage = "https://github.com/wardenxyz/xyznote"
+
+
[yagenda."0.1.0"]
+
url = "https://packages.typst.org/preview/yagenda-0.1.0.tar.gz"
+
hash = "sha256-DqfJMlm2fX+mObaf5e+MSPj6xj70yhNLK3X3S/T7inI="
+
typstDeps = []
+
description = "A tabular template for meeting agendas with agenda items defined in Yaml"
+
license = [
+
"MPL-2.0",
+
]
+
+
[yats."0.1.0"]
+
url = "https://packages.typst.org/preview/yats-0.1.0.tar.gz"
+
hash = "sha256-xmyiwiJBqyFk/VUS6Z6Z/XJecb47demxKk68HdWBZao="
+
typstDeps = []
+
description = "Serialization module for Typst"
+
license = [
+
"Apache-2.0",
+
]
+
homepage = "https://github.com/0warning0error/typst-yats"
+
+
[yuan-resume."0.1.0"]
+
url = "https://packages.typst.org/preview/yuan-resume-0.1.0.tar.gz"
+
hash = "sha256-FWEsms0v6M7+T+YiwcINVybnJj53FSYeQpfdz+E4NrQ="
+
typstDeps = []
+
description = "An elegant academic resume template"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/visika/yuan-resume"
+
+
[zebraw."0.5.0"]
+
url = "https://packages.typst.org/preview/zebraw-0.5.0.tar.gz"
+
hash = "sha256-qR8rph7/nBgtI1m1TZ4GdCFOOBPPIu3P6BecBCp8r8o="
+
typstDeps = [
+
"tidy_0_4_2",
+
]
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.8"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.8.tar.gz"
+
hash = "sha256-Df9Kxa5k8R+DB+4YGDIDM/XRBug+zF2/E6wCgD4PaM4="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.7"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.7.tar.gz"
+
hash = "sha256-DOB5K/O+cVeO9C0/E4QbGNquurx92ikvecH2NT610BM="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.6"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.6.tar.gz"
+
hash = "sha256-XYJDz/anHiUEI8o8jqOKjqjyUGNZF2RWVX/e43Nb76o="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.5"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.5.tar.gz"
+
hash = "sha256-1TKJW1n1eSDMJGnrW+eph8hSHQqqBYUGsIa2FkoTCSA="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.4"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.4.tar.gz"
+
hash = "sha256-7NB0oVAIQ3IbdMh0pld8peorBK1vOuAWQaFxYVL5+eQ="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.3"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.3.tar.gz"
+
hash = "sha256-4WE2U425oFyjt+hgyo2hFgucvzAbAo1faup92vYL1ic="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.2"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.2.tar.gz"
+
hash = "sha256-HawgczYf7LhjkRT4WmdcwbhwuqsUwkuFt0Ycdy209NI="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.1"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.1.tar.gz"
+
hash = "sha256-j/iGfW44vPpxCiSkn6swdAeso3JuMG+NwxxXHajjffc="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.4.0"]
+
url = "https://packages.typst.org/preview/zebraw-0.4.0.tar.gz"
+
hash = "sha256-Jg/wuuXULk06otjdbbuInNnlhEw1s3skV3alQgZ4FB4="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.3.0"]
+
url = "https://packages.typst.org/preview/zebraw-0.3.0.tar.gz"
+
hash = "sha256-uRWWklk1rqo9b1+64Lf1u6zX507k1Ssh+MfbNzjw1NA="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.2.0"]
+
url = "https://packages.typst.org/preview/zebraw-0.2.0.tar.gz"
+
hash = "sha256-9/5oKB96Lqc0bDuPPUcB1fSgGr/IqiKY5Esqi7nYPgo="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zebraw."0.1.0"]
+
url = "https://packages.typst.org/preview/zebraw-0.1.0.tar.gz"
+
hash = "sha256-gc/Il4QjcEQCM7VsDHjiB+YqvgGuH8rVfTbEM2vMM7o="
+
typstDeps = []
+
description = "A lightweight and fast package for displaying code blocks with line numbers or highlighting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/hongjr03/typst-zebraw"
+
+
[zen-zine."0.2.0"]
+
url = "https://packages.typst.org/preview/zen-zine-0.2.0.tar.gz"
+
hash = "sha256-oSD3i9zaH4zHOm1xwCnhwRDbYfWUqBQYEe1147Vm/FM="
+
typstDeps = []
+
description = "Excellently type-set a fun little zine"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tomeichlersmith/zen-zine"
+
+
[zen-zine."0.1.0"]
+
url = "https://packages.typst.org/preview/zen-zine-0.1.0.tar.gz"
+
hash = "sha256-vASx7ZfUjBrgKsXa9yXMh6zPECJEJbYXQjH9n9TzdB8="
+
typstDeps = []
+
description = "Excellently type-set a fun little zine"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/tomeichlersmith/zen-zine"
+
+
[zero."0.3.3"]
+
url = "https://packages.typst.org/preview/zero-0.3.3.tar.gz"
+
hash = "sha256-Th64GzjLyStvOax85IQXUpAuZxU3p3ZdAJDGsDzQEyg="
+
typstDeps = []
+
description = "Advanced scientific number formatting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/zero"
+
+
[zero."0.3.2"]
+
url = "https://packages.typst.org/preview/zero-0.3.2.tar.gz"
+
hash = "sha256-a0GmUjM3apJt5nUxufrbsELI0ECeLH30JKnANniQehI="
+
typstDeps = []
+
description = "Advanced scientific number formatting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/zero"
+
+
[zero."0.3.1"]
+
url = "https://packages.typst.org/preview/zero-0.3.1.tar.gz"
+
hash = "sha256-dHjDnQh9LOPQZO9fnAQnEX2tDmz+7w4pwCuTZ47+mzU="
+
typstDeps = []
+
description = "Advanced scientific number formatting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/zero"
+
+
[zero."0.3.0"]
+
url = "https://packages.typst.org/preview/zero-0.3.0.tar.gz"
+
hash = "sha256-sZxCkOhP3sUvIz3YY+frmTz6G5DTtC4VNVTn4h56RHE="
+
typstDeps = []
+
description = "Advanced scientific number formatting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/zero"
+
+
[zero."0.2.0"]
+
url = "https://packages.typst.org/preview/zero-0.2.0.tar.gz"
+
hash = "sha256-zc8x/KH5g9woVMbIjCiaiQWxWQmhInsJJ1hvipNKeko="
+
typstDeps = []
+
description = "Advanced scientific number formatting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/zero"
+
+
[zero."0.1.0"]
+
url = "https://packages.typst.org/preview/zero-0.1.0.tar.gz"
+
hash = "sha256-Y6I+7SbnfOG+IGgoa3Y2VMDOxy0lTcSVdO/QcY3OpgE="
+
typstDeps = []
+
description = "Advanced scientific number formatting"
+
license = [
+
"MIT",
+
]
+
homepage = "https://github.com/Mc-Zen/zero"
+
+
[zhconv."0.3.1"]
+
url = "https://packages.typst.org/preview/zhconv-0.3.1.tar.gz"
+
hash = "sha256-0TyTXVJ73tbTh/y2vGG1ORDwORMve0oQUhyBUO297Lg="
+
typstDeps = []
+
description = "Convert Chinese text between Traditional/Simplified and regional variants. 中文简繁及地區詞轉換"
+
license = [
+
"GPL-2.0-only",
+
]
+
homepage = "https://github.com/Gowee/zhconv-rs"
+
+
[zheyan."0.1.0"]
+
url = "https://packages.typst.org/preview/zheyan-0.1.0.tar.gz"
+
hash = "sha256-1dcC8ov8jVgOggZZcXinyqyv6e8Evp9XAF4ypQBLDVA="
+
typstDeps = []
+
description = "Util to mask string"
+
license = [
+
"Unlicense",
+
]
+
homepage = "https://github.com/shylock-hg/mask"
+52
pkgs/by-name/ty/typst/typst-packages.nix
···
+
{
+
lib,
+
callPackage,
+
}:
+
+
let
+
toPackageName = name: version: "${name}_${lib.replaceStrings [ "." ] [ "_" ] version}";
+
in
+
lib.makeExtensible (
+
final:
+
lib.recurseIntoAttrs (
+
lib.foldlAttrs (
+
packageSet: pname: versionSet:
+
packageSet
+
// (lib.foldlAttrs (
+
subPackageSet: version: packageSpec:
+
subPackageSet
+
// {
+
${toPackageName pname version} = callPackage (
+
{
+
lib,
+
buildTypstPackage,
+
fetchzip,
+
}:
+
buildTypstPackage (finalAttrs: {
+
inherit pname version;
+
+
src = fetchzip {
+
inherit (packageSpec) hash;
+
url = "https://packages.typst.org/preview/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
+
stripRoot = false;
+
};
+
+
typstDeps = builtins.filter (x: x != null) (
+
lib.map (d: (lib.attrsets.attrByPath [ d ] null final)) packageSpec.typstDeps
+
);
+
+
meta = {
+
inherit (packageSpec) description;
+
maintainers = with lib.maintainers; [ cherrypiejam ];
+
license = lib.map (lib.flip lib.getAttr lib.licensesSpdx) packageSpec.license;
+
} // (if packageSpec ? "homepage" then { inherit (packageSpec) homepage; } else { });
+
})
+
) { };
+
}
+
) { } versionSet)
+
// {
+
${pname} = final.${toPackageName pname (lib.last (lib.attrNames versionSet))};
+
}
+
) { } (lib.importTOML ./typst-packages-from-universe.toml)
+
)
+
)