feroxfuzz 1.0.0-rc.13

Structure-aware, black box HTTP fuzzing library
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "feroxfuzz"
version = "1.0.0-rc.13"
authors = ["Ben 'epi' Risher (@epi052)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structure-aware, black box HTTP fuzzing library"
readme = "README.md"
keywords = [
    "fuzzing",
    "testing",
    "security",
    "web",
]
categories = ["development-tools::testing"]
license = "Apache-2.0"
repository = "https://github.com/epi052/feroxfuzz"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
async = [
    "reqwest",
    "tokio",
    "futures",
]
blocking = ["reqwest/blocking"]
default = [
    "async",
    "json",
]
encoders = [
    "base64",
    "hex",
]
json = [
    "serde",
    "serde_json",
    "typetag",
]
serialize-body = [
    "serde",
    "typetag",
]

[lib]
name = "feroxfuzz"
path = "src/lib.rs"

[[example]]
name = "async-simple"
path = "examples/async-simple.rs"

[[example]]
name = "battering-ram"
path = "examples/battering-ram.rs"
required-features = ["blocking"]

[[example]]
name = "blocking-regex"
path = "examples/blocking-regex.rs"
required-features = ["blocking"]

[[example]]
name = "cartesian-product"
path = "examples/cartesian-product.rs"
required-features = ["blocking"]

[[example]]
name = "cluster-bomb"
path = "examples/cluster-bomb.rs"
required-features = ["blocking"]

[[example]]
name = "dynamic-dispatch"
path = "examples/dynamic-dispatch.rs"

[[example]]
name = "from-url-list"
path = "examples/from-url-list.rs"

[[example]]
name = "pitchfork"
path = "examples/pitchfork.rs"
required-features = ["blocking"]

[[example]]
name = "sniper"
path = "examples/sniper.rs"
required-features = ["blocking"]

[[example]]
name = "start-at-wordset-offset"
path = "examples/start-at-wordset-offset.rs"
required-features = ["blocking"]

[[example]]
name = "with-logging"
path = "examples/with-logging.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22.1"
optional = true

[dependencies.cfg-if]
version = "1.0"

[dependencies.derive_more]
version = "2.1"
features = [
    "constructor",
    "from",
    "into",
    "not",
    "sum",
]

[dependencies.dyn-clone]
version = "1.0.20"

[dependencies.flume]
version = "0.12.0"

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.hex]
version = "0.4.3"
optional = true

[dependencies.lazy_static]
version = "1.5"

[dependencies.num]
version = "0.4"

[dependencies.regex]
version = "1.12"

[dependencies.reqwest]
version = "0.13.1"
features = ["socks"]
optional = true

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "rc",
]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.serde_regex]
version = "1.1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.48"
features = [
    "rt-multi-thread",
    "macros",
    "tracing",
]
optional = true

[dependencies.tracing]
version = "0.1"
features = ["log"]

[dependencies.tuple_list]
version = "0.1"

[dependencies.typetag]
version = "0.2.21"
optional = true

[dependencies.url]
version = "2.5"
features = ["serde"]

[dev-dependencies.allocation-counter]
version = "0.8.1"

[dev-dependencies.http]
version = "1.4.0"

[dev-dependencies.httpmock]
version = "0.8"

[dev-dependencies.tempdir]
version = "0.3.7"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]