2024-11-12 15:45:35 +01:00

43 lines
1.0 KiB
TOML

[package]
name = "symcc_libafl"
version.workspace = true
edition = "2021"
authors = [
"Julius Hohnerlein <julihoh@users.noreply.github.com>",
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",
]
description = "Meta package for symcc_runtime"
documentation = "https://docs.rs/symcc_libafl"
repository = "https://github.com/AFLplusplus/LibAFL/"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing", "security"]
categories = [
"development-tools::testing",
"emulators",
"embedded",
"os",
"no-std",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
all-features = true
[features]
default = ["build", "clone"]
## common functionality to build symcc
build = ["which", "cmake"]
## common functionality to check out the symcc repo using git
clone = ["which"]
[dependencies]
which = { workspace = true, optional = true }
cmake = { workspace = true, optional = true }
log = { workspace = true }
[lints]
workspace = true