35 lines
793 B
TOML
35 lines
793 B
TOML
[package]
|
|
name = "typst-tests"
|
|
version = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
publish = false
|
|
|
|
[dev-dependencies]
|
|
typst = { workspace = true }
|
|
typst-pdf = { workspace = true }
|
|
typst-render = { workspace = true }
|
|
typst-svg = { workspace = true }
|
|
clap = { workspace = true }
|
|
comemo = { workspace = true }
|
|
ecow = { workspace = true }
|
|
iai = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
oxipng = { workspace = true }
|
|
rayon = { workspace = true }
|
|
tiny-skia = { workspace = true }
|
|
ttf-parser = { workspace = true }
|
|
unscanny = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
|
|
[[test]]
|
|
name = "tests"
|
|
path = "src/tests.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "benches"
|
|
path = "src/benches.rs"
|
|
harness = false
|