typst/docs/Cargo.toml
Laurenz 47dff3765d Remove 'static bound on World
Thanks to improvements in comemo, tracked types don't need to be 'static anymore. This means that the 'static bound on the `World` is now lifted and that the `Route` doesn't need to use unsafe code anymore to manage its lifetime.
2023-05-11 10:50:30 +02:00

27 lines
577 B
TOML

[package]
name = "typst-docs"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
publish = false
[lib]
doctest = false
bench = false
[dependencies]
typst = { path = ".." }
typst-library = { path = "../library" }
comemo = { git = "https://github.com/typst/comemo" }
heck = "0.4"
include_dir = "0.7"
once_cell = "1"
pulldown-cmark = "0.9"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
unicode_names2 = "0.6.0"
unscanny = "0.1"
ureq = { version = "2.6", features = ["json"] }
yaml-front-matter = "0.1"