summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-11-08 14:32:42 +0100
committerLaurenz <laurmaedje@gmail.com>2023-11-08 15:09:55 +0100
commit46846a337e8084acd46c70bccc2fca2659e9fb9a (patch)
tree9e9d6abf76867d823644e85e34571c70e07eea4f /Cargo.toml
parent80b4ca4c04cb5d911947895d9d04c87efb97b0f4 (diff)
Extract `typst-pdf` crate
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 08987494..b4eaf993 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,8 +17,12 @@ keywords = ["typst"]
[workspace.dependencies]
typst = { path = "crates/typst" }
+typst-cli = { path = "crates/typst-cli" }
+typst-docs = { path = "crates/typst-docs" }
+typst-ide = { path = "crates/typst-ide" }
typst-library = { path = "crates/typst-library" }
typst-macros = { path = "crates/typst-macros" }
+typst-pdf = { path = "crates/typst-pdf" }
typst-render = { path = "crates/typst-render" }
typst-svg = { path = "crates/typst-svg" }
typst-syntax = { path = "crates/typst-syntax" }
@@ -86,6 +90,7 @@ serde_json = "1"
serde_yaml = "0.9"
siphasher = "0.3"
smallvec = { version = "1.11.1", features = ["union", "const_generics", "const_new"] }
+stacker = "0.1.15"
subsetter = "0.1.1"
svg2pdf = "0.9"
syn = { version = "2", features = ["full", "extra-traits"] }