aboutsummaryrefslogtreecommitdiff
path: root/lib/typst/Cargo.toml
blob: a87ce82fadedf361ea570b4a337a906a8c8ceb24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[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]
lto = "thin"
opt-level = 3
strip = true

[profile.small]
inherits = "release"
opt-level = "s"

[features]
default = ["embed-fonts"]

embed-fonts = ["typst-kit/embed-fonts"]