mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
29 lines
522 B
TOML
29 lines
522 B
TOML
[package]
|
|
name = "typst-fuzz"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
typst = { workspace = true }
|
|
typst-assets = { workspace = true, features = ["fonts"] }
|
|
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
|