mirror of
https://github.com/typst/typst
synced 2025-07-27 14:27:56 +08:00
in almost all real-world cases these IDs require less memory than the binary IDs used before, and they are also require less storage in PDF files, since binary data is encoded in hex escape sequences, taking up 4 bytes per byte of data.
34 lines
922 B
TOML
34 lines
922 B
TOML
[package]
|
|
name = "typst-pdf"
|
|
description = "PDF exporter for Typst."
|
|
version = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
categories = { workspace = true }
|
|
keywords = { workspace = true }
|
|
readme = { workspace = true }
|
|
|
|
[dependencies]
|
|
typst-assets = { workspace = true }
|
|
typst-library = { workspace = true }
|
|
typst-macros = { workspace = true }
|
|
typst-syntax = { workspace = true }
|
|
typst-timing = { workspace = true }
|
|
typst-utils = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
comemo = { workspace = true }
|
|
ecow = { workspace = true }
|
|
image = { workspace = true }
|
|
infer = { workspace = true }
|
|
krilla = { workspace = true }
|
|
krilla-svg = { workspace = true }
|
|
serde = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|