30 lines
491 B
TOML
30 lines
491 B
TOML
[package]
|
|
name = "rsvg-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
cairo-rs.workspace = true
|
|
glib.workspace = true
|
|
gio.workspace = true
|
|
libfuzzer-sys = "0.4"
|
|
librsvg = { path = "../rsvg" }
|
|
|
|
# Prevent this from interfering with workspaces
|
|
# [workspace]
|
|
# members = ["."]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[[bin]]
|
|
name = "render_document"
|
|
path = "fuzz_targets/render_document.rs"
|
|
test = false
|
|
doc = false
|