forked from intel/tsffs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
95 lines (87 loc) · 2.66 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
[package]
name = "tsffs"
authors = [
"Rowan Hart <[email protected]>",
"Brandon Marken <[email protected]>",
"Robert Geunzel <[email protected]>",
]
categories = ["development-tools::testing", "emulators", "simulation"]
description = "A snapshotting, coverage-guided fuzzer for software (UEFI, Kernel, firmware, BIOS) built on SIMICS"
edition = "2021"
homepage = "https://github.com/intel/tsffs"
keywords = ["SIMICS", "fuzzing", "security", "testing", "simulator"]
license = "Apache-2.0"
publish = false
readme = "README.md"
repository = "https://github.com/intel/tsffs"
version = "0.2.1"
[package.metadata.simics]
package-number = 31337
version = "7.0.1"
[lib]
crate-type = ["cdylib", "rlib"]
test = false
[dependencies]
anyhow = { version = "1.0.80" }
libafl = { git = "https://github.com/AFLplusplus/LibAFL", rev = "0f26f6ea32aa74ee526636558842ec06bbfb49bb", default-features = false, features = [
"std",
"derive",
"llmp_compression",
"llmp_small_maps",
"llmp_broker_timeouts",
"rand_trait",
"fork",
"prelude",
"gzip",
"regex",
"serdeany_autoreg",
] }
libafl_bolts = { git = "https://github.com/AFLplusplus/LibAFL", rev = "0f26f6ea32aa74ee526636558842ec06bbfb49bb", features = [
"xxh3",
] }
libafl_targets = { git = "https://github.com/AFLplusplus/LibAFL", rev = "0f26f6ea32aa74ee526636558842ec06bbfb49bb", default-features = false, features = [
"std",
] }
yaxpeax-arch = { version = "0.2.7", default-features = false, features = [
"std",
"use-serde",
] }
yaxpeax-x86 = { version = "1.2.2", default-features = false, features = [
"std",
"use-serde",
"fmt",
] }
typed-builder = "0.18.1"
raw-cstr = "0.1.4"
goblin = "0.8.0"
yaxpeax-riscv = { git = "https://github.com/DrChat/yaxpeax-riscv", version = "0.1.0", features = [
"serde",
], rev = "0e2151b" }
crc32fast = "1.4.0"
simics = { path = "simics-rs/simics" }
indoc = "2.0.4"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
versions = { version = "6.1.0", features = ["serde"] }
ffi = "0.1.1"
num-traits = "0.2.18"
num-derive = "0.4.2"
tracing-subscriber = "0.3.18"
tracing = { version = "0.1.40", features = ["log"] }
[dev-dependencies]
simics-test = { path = "simics-rs/simics-test" }
anyhow = "1.0.80"
command-ext = "0.1.2"
indoc = "2.0.4"
ispm-wrapper = { path = "simics-rs/ispm-wrapper" }
versions = { version = "6.1.0", features = ["serde"] }
[build-dependencies]
simics = { path = "simics-rs/simics" }
simics-build-utils = { path = "simics-rs/simics-build-utils" }
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
debug = true