[package]
edition = "2024"
rust-version = "1.88"
name = "sginstrument"
version = "0.1.0"
authors = ["Morgan Hill <a@morganrhill.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A utility for injecting SGFuzz instrumentation into Rust projects"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/pcwizz/sginstrument"
[lib]
name = "sginstrument"
path = "src/lib.rs"
[[bin]]
name = "sginstrument"
path = "src/instrument.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
"visit-mut",
]
[dependencies.walkdir]
version = "2.0"