typst/Cargo.toml

47 lines
1.0 KiB
TOML
Raw Normal View History

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"
authors = ["The Typst Project Developers"]
edition = "2021"
2019-02-12 23:31:35 +03:00
[workspace]
members = ["cli", "library", "macros", "tests"]
[lib]
doctest = false
bench = false
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"
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"
unicode-segmentation = "1"
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