[package] name = "libafl_tinyinst" version.workspace = true edition = "2021" authors = [ "elbiazo ", "Dongjia Zhang ", ] repository = "https://github.com/AFLplusplus/LibAFL/" categories = [ "development-tools::testing", "emulators", "embedded", "os", "no-std", ] license = "MIT OR Apache-2.0" keywords = ["fuzzing", "testing", "security"] description = "TinyInst backend for libafl" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] libafl = { workspace = true, default-features = true, features = [ "std", "libafl_derive", ] } libafl_bolts = { workspace = true, default-features = true, features = [ "std", "libafl_derive", ] } tinyinst = { git = "https://github.com/AFLplusplus/tinyinst-rs" } # tinyinst-rs = { path = "../../tinyinst-rs" } log = { workspace = true } [build-dependencies] cmake = { workspace = true } [lints] workspace = true