cargo toml metadata

This commit is contained in:
Andrea Fioraldi 2021-04-26 14:28:48 +02:00
parent a6774963ec
commit 32d4c27c83
4 changed files with 20 additions and 0 deletions

View File

@ -2,6 +2,11 @@
name = "libafl" name = "libafl"
version = "0.1.0" version = "0.1.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"] authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
description = "Slot your own fuzzers together and extend their features using Rust"
documentation = "https://docs.rs/libafl"
repository = "https://github.com/AFLplusplus/LibAFL/"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing"]
edition = "2018" edition = "2018"
build = "build.rs" build = "build.rs"

View File

@ -2,6 +2,11 @@
name = "libafl_cc" name = "libafl_cc"
version = "0.1.0" version = "0.1.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"] authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
description = "Commodity library to wrap compilers and link LibAFL"
documentation = "https://docs.rs/libafl_cc"
repository = "https://github.com/AFLplusplus/LibAFL/"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing", "compiler"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -2,6 +2,11 @@
name = "libafl_derive" name = "libafl_derive"
version = "0.1.0" version = "0.1.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"] 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/"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing"]
edition = "2018" edition = "2018"
[lib] [lib]

View File

@ -2,6 +2,11 @@
name = "libafl_targets" name = "libafl_targets"
version = "0.1.0" version = "0.1.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"] authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
description = "Common code for target instrumentation that can be used combined with LibAFL"
documentation = "https://docs.rs/libafl_targets"
repository = "https://github.com/AFLplusplus/LibAFL/"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing"]
edition = "2018" edition = "2018"
[features] [features]