forked from AFLplusplus/LibAFL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 980 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "libafl_tinyinst"
version.workspace = true
edition = "2021"
authors = [
"elbiazo <[email protected]>",
"Dongjia Zhang <[email protected]>",
]
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