20 lines
734 B
TOML
20 lines
734 B
TOML
[package]
|
|
name = "libafl_sugar"
|
|
version = "0.6.0"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
description = "Sugar builders to create common fuzzers with LibAFL"
|
|
documentation = "https://docs.rs/libafl_sugar"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
libafl = { path = "../libafl", version = "0.6.0" }
|
|
libafl_targets = { path = "../libafl_targets", version = "0.6.0" }
|
|
libafl_qemu = { path = "../libafl_qemu", version = "0.6.0" }
|
|
typed-builder = "0.9.0" # Implement the builder pattern at compiletime
|