diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-29 15:10:29 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-29 15:10:29 +0200 |
| commit | 4551f9c554c1fef32ef2b7e55b01b1fb90186cbf (patch) | |
| tree | 0a1fc54632067dfff4c9beca8a3ce00056c45da9 /typst/Cargo.toml | |
| parent | 2f2014fb9cf9b22593088f0fcc16b8b9d8a436ae (diff) | |
feat(typst): minimal rust lib building svg
Diffstat (limited to 'typst/Cargo.toml')
| -rw-r--r-- | typst/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
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 |
