blob: e0b3a24a851e4283a8e8f4a31bcf7ea5882a0cf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
[package]
name = "typst-tests"
version = "0.3.0"
authors = ["The Typst Project Developers"]
edition = "2021"
publish = false
[dev-dependencies]
typst = { path = ".." }
typst-library = { path = "../library" }
comemo = "0.2.2"
elsa = "1.8"
iai = { git = "https://github.com/reknih/iai" }
once_cell = "1"
oxipng = "8.0.0"
rayon = "1.7.0"
tiny-skia = "0.6.6"
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
|