From 4551f9c554c1fef32ef2b7e55b01b1fb90186cbf Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 29 Apr 2026 15:10:29 +0200 Subject: feat(typst): minimal rust lib building svg --- typst/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 typst/Cargo.toml (limited to 'typst/Cargo.toml') diff --git a/typst/Cargo.toml b/typst/Cargo.toml new file mode 100644 index 0000000..4a01bf0 --- /dev/null +++ b/typst/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "typdown-typst" +version = "0.1.0" +edition = "2024" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +typst = "0.14.2" +typst-kit = "0.14.2" +typst-svg = "0.14.2" + +[profile.release] +opt-level = 2 +codegen-units = 1 +lto = true +strip = true -- cgit v1.2.3