2019-02-12 23:31:35 +03:00
[ package ]
2020-10-13 12:47:29 +03:00
name = "typst"
2019-02-12 23:31:35 +03:00
version = "0.1.0"
2020-08-02 17:56:14 +03:00
authors = [ "The Typst Project Developers" ]
2021-12-13 17:15:12 +03:00
edition = "2021"
2019-02-12 23:31:35 +03:00
2022-10-18 01:02:38 +03:00
[ workspace ]
2022-11-03 18:13:35 +03:00
members = [ "cli" , "library" , "macros" , "tests" ]
[ lib ]
doctest = false
bench = false
2022-10-18 01:02:38 +03:00
2019-02-12 23:31:35 +03:00
[ dependencies ]
2022-11-03 13:44:53 +03:00
typst-macros = { path = "macros" }
2022-09-19 18:44:40 +03:00
bitflags = "1"
2022-01-24 18:38:34 +03:00
bytemuck = "1"
2022-12-02 15:17:07 +03:00
comemo = { git = "https://github.com/typst/comemo" }
2022-11-03 13:44:53 +03:00
flate2 = "1"
image = { version = "0.24" , default-features = false , features = [ "png" , "jpeg" , "gif" ] }
miniz_oxide = "0.5"
2021-12-07 18:36:39 +03:00
once_cell = "1"
2022-11-03 13:44:53 +03:00
pdf-writer = "0.6"
pixglyph = { git = "https://github.com/typst/pixglyph" }
2022-10-17 20:26:24 +03:00
regex = "1"
2022-11-03 13:44:53 +03:00
resvg = { version = "0.22" , default-features = false }
rex = { git = "https://github.com/laurmaedje/ReX" }
roxmltree = "0.14"
rustybuzz = "0.5"
2022-01-24 18:48:24 +03:00
serde = { version = "1" , features = [ "derive" ] }
2022-10-17 20:26:24 +03:00
siphasher = "0.3"
2022-11-03 13:44:53 +03:00
subsetter = "0.1"
svg2pdf = "0.4"
2022-11-26 17:34:02 +03:00
thin-vec = "0.2"
2022-11-03 13:44:53 +03:00
tiny-skia = "0.6.2"
2022-10-17 20:26:24 +03:00
ttf-parser = "0.17"
2021-12-07 18:36:39 +03:00
unicode-segmentation = "1"
2020-08-02 12:22:49 +03:00
unicode-xid = "0.2"
2022-11-03 13:44:53 +03:00
unscanny = "0.1"
2022-06-11 00:53:20 +03:00
usvg = { version = "0.22" , default-features = false }
2022-01-24 18:38:34 +03:00
[ profile . dev ]
2022-11-03 13:44:53 +03:00
debug = 0
2022-01-24 18:38:34 +03:00
[ profile . dev . package . "*" ]
2022-11-03 13:44:53 +03:00
opt-level = 2