31 lines
765 B
TOML
31 lines
765 B
TOML
[package]
|
|
name = "runtime_test"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"]
|
|
description = "Runtime test of LibAFL fuzzing with symbolicc execution"
|
|
documentation = "https://docs.rs/libafl"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "libafl", "symbolic", "symcc", "symqemu"]
|
|
categories = [
|
|
"development-tools::testing",
|
|
"emulators",
|
|
"embedded",
|
|
"os",
|
|
"no-std",
|
|
]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "SymRuntime"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
symcc_runtime = { path = "../../symcc_runtime" }
|
|
|
|
[lints]
|
|
workspace = true
|