47dff3765d
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.
33 lines
655 B
TOML
33 lines
655 B
TOML
[package]
|
|
name = "typst-tests"
|
|
version.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[dev-dependencies]
|
|
typst = { path = ".." }
|
|
typst-library = { path = "../library" }
|
|
comemo = { git = "https://github.com/typst/comemo" }
|
|
elsa = "1.8"
|
|
iai = { git = "https://github.com/reknih/iai" }
|
|
once_cell = "1"
|
|
oxipng = "8.0.0"
|
|
rayon = "1.7.0"
|
|
tiny-skia = "0.9.0"
|
|
ttf-parser = "0.18.1"
|
|
unscanny = "0.1"
|
|
walkdir = "2"
|
|
clap = { version = "4.2.4", features = ["derive"] }
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
path = "src/tests.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "benches"
|
|
path = "src/benches.rs"
|
|
harness = false
|