-
-
Notifications
You must be signed in to change notification settings - Fork 473
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 899 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 899 Bytes
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
[package]
name = "libafl_tinyinst"
version.workspace = true
edition = "2024"
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 = { workspace = true }
log = { workspace = true }
[build-dependencies]
cmake = { workspace = true }
[lints]
workspace = true