typst/bench/Cargo.toml
Laurenz b4f809f1ea Move benchmarks into separate crate ♾
So that CI does not have to build criterion each time.
2020-11-25 19:28:04 +01:00

17 lines
286 B
TOML

[package]
name = "typst-bench"
version = "0.0.1"
authors = ["The Typst Project Developers"]
edition = "2018"
publish = false
[dependencies]
fontdock = { path = "../../fontdock" }
typst = { path = ".." }
criterion = "0.3"
[[bench]]
name = "typst"
path = "src/bench.rs"
harness = false