-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
90 lines (79 loc) · 2.73 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
[package]
name = "feroxfuzz"
version = "1.0.0-rc.12"
edition = "2021"
authors = ["Ben 'epi' Risher (@epi052)"]
license = "Apache-2.0"
repository = "https://github.com/epi052/feroxfuzz"
categories = ["development-tools::testing"]
keywords = ["fuzzing", "testing", "security", "web"]
readme = "README.md"
description = "Structure-aware, black box HTTP fuzzing library"
[features]
default = ["async", "json"]
# AsyncResponse et al will [de]serialize the response body in addition to normal fields
serialize-body = ["serde", "typetag"]
# AsyncResponse et al can attempt to convert the response body to json, also needed for
# libafl Input trait
json = ["serde", "serde_json", "typetag"]
# wrapper around providing concrete async implementations via reqwest, tokio, and futures
async = ["reqwest", "tokio", "futures"]
# wrapper around providing concrete serial implementations via reqwest
blocking = ["reqwest/blocking"]
# wrapper around providing different encoders
encoders = ["base64", "hex"]
# wrapper around providing havoc mutations
havoc = ["libafl", "libafl_bolts"]
[dependencies]
# MIT Licenses
tuple_list = { version = "0.1" }
derive_more = { version = "0.99" }
tracing = { version = "0.1", features = ["log"] }
## optional
tokio = { version = "1.20", optional = true, features = [
"rt-multi-thread",
"macros",
"tracing",
] }
##
## logical break between licenses
##
# MIT / Apache Licenses
num = { version = "0.4" }
cfg-if = { version = "1.0" }
dyn-clone = { version = "1.0.9" }
url = { version = "2.2", features = ["serde"] }
## optional
serde = { version = "1.0", optional = true, features = ["derive", "rc"] }
serde_json = { version = "1.0", optional = true }
typetag = { version = "0.2.3", optional = true }
thiserror = { version = "1.0" }
reqwest = { version = "0.11", optional = true, features = [
"socks",
"rustls-tls",
] }
async-trait = { version = "0.1" }
regex = { version = "1.6" }
serde_regex = { version = "1.1.0" }
lazy_static = { version = "1.4" }
futures = { version = "0.3", optional = true }
base64 = { version = "0.21.2", optional = true }
hex = { version = "0.4.3", optional = true }
flume = { version = "0.11.0" }
libafl = { version = "0.11.1", default-features = false, features = [
"std",
], optional = true }
libafl_bolts = { version = "0.11.1", default-features = false, optional = true }
[dev-dependencies]
http = { version = "0.2" }
tokio-test = { version = "0.4" }
httpmock = { version = "0.6" }
allocation-counter = { version = "0.5" }
tempdir = { version = "0.3.7" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
rustdoc-args = ["--cfg", "docsrs"]