mirror of
https://github.com/typst/typst
synced 2025-05-24 05:55:28 +08:00
26 lines
496 B
TOML
26 lines
496 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"] }
|
|
iai = "0.1"
|
|
typst = { path = "..", default-features = false, features = ["fs"] }
|
|
|
|
[[bench]]
|
|
name = "clock"
|
|
path = "src/clock.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "parsing"
|
|
path = "src/parsing.rs"
|
|
harness = false
|