bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
30 lines
610 B
TOML
30 lines
610 B
TOML
[package]
|
|
name = "pezsp-core-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
description = "Pezkuwi SDK primitive: core fuzz"
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[[bin]]
|
|
name = "fuzz_address_uri"
|
|
path = "fuzz_targets/fuzz_address_uri.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = { workspace = true }
|
|
regex = { workspace = true }
|
|
|
|
pezsp-core = { workspace = true, default-features = true }
|