summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-11-08 13:11:11 +0100
committerLaurenz <laurmaedje@gmail.com>2023-11-08 13:16:13 +0100
commitec04c3de2fcc5b31d94dc2be8561e569f28cc0a1 (patch)
tree3b143ac30f82655824f6af0d73935eebc89d74ae /Cargo.lock
parentc12a19a0758774a3285ee3d129803a786cd58a87 (diff)
Extract `typst-render` crate
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock22
1 files changed, 19 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c8ca8a48..4da1e66d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2908,9 +2908,7 @@ dependencies = [
"once_cell",
"palette",
"pdf-writer",
- "pixglyph",
"regex",
- "resvg",
"roxmltree",
"rustybuzz",
"serde",
@@ -2920,7 +2918,6 @@ dependencies = [
"subsetter",
"svg2pdf",
"time",
- "tiny-skia",
"toml",
"tracing",
"ttf-parser",
@@ -2976,6 +2973,7 @@ dependencies = [
"tracing-subscriber",
"typst",
"typst-library",
+ "typst-render",
"ureq",
"xz2",
"zip",
@@ -3066,6 +3064,23 @@ dependencies = [
]
[[package]]
+name = "typst-render"
+version = "0.9.0"
+dependencies = [
+ "bytemuck",
+ "comemo",
+ "flate2",
+ "image",
+ "pixglyph",
+ "resvg",
+ "roxmltree",
+ "tiny-skia",
+ "ttf-parser",
+ "typst",
+ "usvg",
+]
+
+[[package]]
name = "typst-syntax"
version = "0.9.0"
dependencies = [
@@ -3095,6 +3110,7 @@ dependencies = [
"ttf-parser",
"typst",
"typst-library",
+ "typst-render",
"unscanny",
"walkdir",
]