Marco C. eb2ac10d1e
Libafl workspace internal deps in workspace Cargo.toml (#2691)
* Add internal deps to workspace

* libafl: use workspace internal deps

* libafl_bolts: use workspace internal deps

* 0.14.0

* use workspace internal deps
2024-11-15 18:13:39 +01:00

41 lines
980 B
TOML

[package]
name = "libafl_tinyinst"
version.workspace = true
edition = "2021"
authors = [
"elbiazo <eric.l.biazo@gmail.com>",
"Dongjia Zhang <tokazerkje@outlook.com>",
]
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