20 lines
572 B
TOML
20 lines
572 B
TOML
[package]
|
|
name = "libafl_derive"
|
|
version.workspace = true
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
description = "Derive proc-macro crate for LibAFL"
|
|
documentation = "https://docs.rs/libafl_derive"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "testing"]
|
|
edition = "2021"
|
|
categories = ["development-tools::testing", "emulators", "embedded", "os", "no-std"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "1", features = ["full", "extra-traits"] }
|
|
quote = "1"
|