Skip to content

Commit

Permalink
updated deps; bumped version to rc.13
Browse files Browse the repository at this point in the history
  • Loading branch information
epi052 committed Dec 13, 2024
1 parent 4401ccb commit b195411
Showing 1 changed file with 21 additions and 23 deletions.
44 changes: 21 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "feroxfuzz"
version = "1.0.0-rc.12"
version = "1.0.0-rc.13"
edition = "2021"
authors = ["Ben 'epi' Risher (@epi052)"]
license = "Apache-2.0"
Expand All @@ -16,8 +16,7 @@ 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
# AsyncResponse et al can attempt to convert the response body to json
json = ["serde", "serde_json", "typetag"]

# wrapper around providing concrete async implementations via reqwest, tokio, and futures
Expand All @@ -29,16 +28,19 @@ 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" }
derive_more = { version = "1.0", features = [
"constructor",
"from",
"into",
"not",
"sum",
] }
tracing = { version = "0.1", features = ["log"] }
## optional
tokio = { version = "1.20", optional = true, features = [
tokio = { version = "1.42", optional = true, features = [
"rt-multi-thread",
"macros",
"tracing",
Expand All @@ -49,35 +51,31 @@ tokio = { version = "1.20", optional = true, features = [
# MIT / Apache Licenses
num = { version = "0.4" }
cfg-if = { version = "1.0" }
dyn-clone = { version = "1.0.9" }
url = { version = "2.2", features = ["serde"] }
dyn-clone = { version = "1.0.17" }
url = { version = "2.5", 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 }
typetag = { version = "0.2.18", optional = true }
thiserror = { version = "1.0" }
reqwest = { version = "0.11", optional = true, features = [
reqwest = { version = "0.12.9", optional = true, features = [
"socks",
"rustls-tls",
] }
async-trait = { version = "0.1" }
regex = { version = "1.6" }
regex = { version = "1.11" }
serde_regex = { version = "1.1.0" }
lazy_static = { version = "1.4" }
lazy_static = { version = "1.5" }
futures = { version = "0.3", optional = true }
base64 = { version = "0.21.2", optional = true }
base64 = { version = "0.22.1", 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 }
flume = { version = "0.11.1" }

[dev-dependencies]
http = { version = "0.2" }
http = { version = "1.2.0" }
tokio-test = { version = "0.4" }
httpmock = { version = "0.6" }
allocation-counter = { version = "0.5" }
httpmock = { version = "0.7" }
allocation-counter = { version = "0.8.1" }
tempdir = { version = "0.3.7" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

Expand Down

0 comments on commit b195411

Please sign in to comment.