![dependabot[bot]](/assets/img/avatar_default.png)
* Update fastbloom requirement from 0.9.0 to 0.10.0 --- updated-dependencies: - dependency-name: fastbloom dependency-version: 0.9.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * manual upd * dfasf * put it back * more --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
32 lines
660 B
TOML
32 lines
660 B
TOML
[package]
|
|
name = "libafl_unicorn"
|
|
version.workspace = true
|
|
authors = [""]
|
|
description = "Unicorn backend library for LibAFL"
|
|
documentation = "https://docs.rs/"
|
|
repository = "https://github.com/AFLplusplus/"
|
|
readme = "../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "unicorn"]
|
|
edition = "2024"
|
|
categories = [
|
|
"development-tools::testing",
|
|
"emulators",
|
|
"embedded",
|
|
"os",
|
|
"no-std",
|
|
]
|
|
|
|
[dependencies]
|
|
libafl_targets = { path = "../libafl_targets" }
|
|
|
|
# External dependencies
|
|
capstone = { workspace = true }
|
|
log = { workspace = true }
|
|
unicorn-engine = { workspace = true }
|
|
|
|
|
|
[lib]
|
|
name = "libafl_unicorn"
|
|
crate-type = ["cdylib", "rlib"]
|