From 78f399521661c82e45e627bbbdc8ce4daa9e5207 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 29 Apr 2026 22:30:04 +0200 Subject: style(typst): move in lib folder --- lib/typst/Cargo.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/typst/Cargo.toml (limited to 'lib/typst/Cargo.toml') diff --git a/lib/typst/Cargo.toml b/lib/typst/Cargo.toml new file mode 100644 index 0000000..dc7eb97 --- /dev/null +++ b/lib/typst/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "typdown-typst" +version = "0.1.0" +edition = "2024" + +[lib] +crate-type = ["cdylib"] + +[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 + +[features] +default = ["embed-fonts"] + +embed-fonts = ["typst-kit/embed-fonts"] -- cgit v1.2.3