
* 0.14.1 * fixer * don't build nyx --------- Co-authored-by: Dominik Maier <domenukk@gmail.com>
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "tutorial"
|
|
version = "0.14.1"
|
|
authors = [
|
|
"Andrea Fioraldi <andreafioraldi@gmail.com>",
|
|
"Dominik Maier <domenukk@gmail.com>",
|
|
]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = true
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.1.21", features = ["parallel"] }
|
|
which = "6.0.3"
|
|
|
|
[dependencies]
|
|
libafl = { path = "../../../libafl", features = ["default", "rand_trait"] }
|
|
libafl_bolts = { path = "../../../libafl_bolts" }
|
|
libafl_targets = { path = "../../../libafl_targets", features = [
|
|
"sancov_pcguard_hitcounts",
|
|
"libfuzzer",
|
|
"sancov_cmplog",
|
|
] }
|
|
serde = { version = "1.0.210", default-features = false, features = [
|
|
"alloc",
|
|
] } # serialization lib
|
|
lain = { version = "0.5.5", features = [
|
|
"serde_support",
|
|
], git = "https://github.com/AFLplusplus/lain.git", rev = "208e927bcf411f62f8a1f51ac2d9f9423a1ec5d3" } # We're using a lain fork compatible with libafl's rand version
|
|
# TODO Include it only when building cc
|
|
libafl_cc = { path = "../../../libafl_cc" }
|
|
log = { version = "0.4.22", features = ["release_max_level_info"] }
|
|
|
|
[lib]
|
|
name = "tutorial"
|
|
crate-type = ["staticlib"]
|