mirror of
https://github.com/typst/typst
synced 2025-05-21 04:25:28 +08:00
28 lines
464 B
TOML
28 lines
464 B
TOML
[package]
|
|
name = "typst-fuzz"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
typst = { workspace = true }
|
|
typst-render = { workspace = true }
|
|
typst-syntax = { workspace = true }
|
|
comemo = { workspace = true }
|
|
libfuzzer-sys = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "parse"
|
|
path = "src/parse.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "compile"
|
|
path = "src/compile.rs"
|
|
test = false
|
|
doc = false
|