mirror of
https://github.com/typst/typst
synced 2025-05-22 21:15:28 +08:00
20 lines
416 B
TOML
20 lines
416 B
TOML
[package]
|
|
name = "typst-bench"
|
|
version = "0.0.1"
|
|
authors = ["The Typst Project Developers"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["layout-cache"]
|
|
layout-cache = ["typst/layout-cache"]
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.3", features = ["html_reports"] }
|
|
typst = { path = "..", default-features = false, features = ["fs"] }
|
|
|
|
[[bench]]
|
|
name = "typst"
|
|
path = "src/bench.rs"
|
|
harness = false
|