-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
123 lines (116 loc) · 3.3 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# 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.2"
[package.metadata.simics]
package-number = 31337
version = "6.1.6"
[lib]
crate-type = ["cdylib", "rlib"]
test = false
[dependencies]
anyhow = { version = "1.0.88" }
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.3.2", default-features = false, features = [
"std",
"use-serde",
] }
yaxpeax-x86 = { version = "2.0.0", default-features = false, features = [
"std",
"use-serde",
"fmt",
] }
typed-builder = "0.20.0"
raw-cstr = "0.1.4"
goblin = "0.8.2"
yaxpeax-riscv = { git = "https://github.com/DrChat/yaxpeax-riscv", version = "0.1.0", features = [
"serde",
], rev = "5973ff8" }
crc32fast = "1.4.2"
simics = "0.1.2"
indoc = "2.0.5"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
versions = { version = "6.2.0", features = ["serde"] }
ffi = "0.1.1"
num-traits = "0.2.19"
num-derive = "0.4.2"
tracing-subscriber = "0.3.18"
tracing = { version = "0.1.40", features = ["log"] }
yaxpeax-arm = "0.3.0"
chrono = "0.4.38"
vergilius = "0.1.2"
windows-sys = { features = [
"Win32_Foundation",
"Win32_System_SystemServices",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics",
"Win32_System_SystemInformation",
"Win32_System_Kernel",
], version = "0.59.0" }
reqwest = { version = "0.12.5", features = [
"blocking",
# NOTE: rustls is used because native-tls does not build with the
# compatibility builder and we don't need any advanced features
"rustls-tls",
], default-features = false }
pdb = "0.8.0"
intervaltree = "0.2.7"
lending-iterator = "0.1.7"
rustc-demangle = "0.1.24"
cpp_demangle = "0.4.3"
walkdir = "2.5.0"
md5 = "0.7.0"
sha1 = "0.10.6"
sha2 = "0.10.8"
typed-path = "0.9.0"
thiserror = "1.0.63"
lcov2 = "0.1.0"
[dev-dependencies]
simics-test = "0.1.1"
anyhow = "1.0.86"
command-ext = "0.1.2"
indoc = "2.0.5"
ispm-wrapper = "0.1.1"
versions = { version = "6.2.0", features = ["serde"] }
[build-dependencies]
simics = "0.1.2"
simics-build-utils = "0.1.1"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
debug = true