
* Add internal deps to workspace * libafl: use workspace internal deps * libafl_bolts: use workspace internal deps * 0.14.0 * use workspace internal deps
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "libafl_nyx"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
authors = ["syheliel <syheliel@gmail.com>"]
|
|
description = "libafl using nyx, only avaliable on linux"
|
|
documentation = "https://docs.rs/libafl_nyx"
|
|
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
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libnyx = { git = "https://github.com/nyx-fuzz/libnyx.git", rev = "ea6ceb994ab975b81aea0daaf64b92a3066c1e8d" }
|
|
libafl = { workspace = true, default-features = true, features = [
|
|
"std",
|
|
"libafl_derive",
|
|
"frida_cli",
|
|
] }
|
|
libafl_bolts = { workspace = true, default-features = true, features = [
|
|
"std",
|
|
"libafl_derive",
|
|
"frida_cli",
|
|
] }
|
|
libafl_targets = { workspace = true, default-features = true, features = [
|
|
"std",
|
|
"sancov_cmplog",
|
|
] }
|
|
|
|
nix = { workspace = true, default-features = true, features = ["fs"] }
|
|
typed-builder = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|