diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-04-13 10:39:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-13 08:39:45 +0000 |
| commit | 020294fca9a7065d4b9cf4e677f606ebaaa29b00 (patch) | |
| tree | c0027ad22046e2726c22298461327823d6b88d53 /tests/Cargo.toml | |
| parent | 72dd79210602ecc799726fc096b078afbb47f299 (diff) | |
Better test runner (#3922)
Diffstat (limited to 'tests/Cargo.toml')
| -rw-r--r-- | tests/Cargo.toml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 1f650c97..62e7a493 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -6,29 +6,29 @@ authors = { workspace = true } edition = { workspace = true } publish = false -[dev-dependencies] +[[test]] +name = "tests" +path = "src/tests.rs" +harness = false + +[dependencies] typst = { workspace = true } typst-assets = { workspace = true, features = ["fonts"] } typst-dev-assets = { workspace = true } typst-pdf = { workspace = true } typst-render = { workspace = true } typst-svg = { workspace = true } -typst-ide = { workspace = true } clap = { workspace = true } comemo = { workspace = true } ecow = { workspace = true } once_cell = { workspace = true } oxipng = { workspace = true } +parking_lot = { 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 - [lints] workspace = true |
