Reduce deps (#1692)

This commit is contained in:
Dongjia "toka" Zhang 2023-11-23 17:21:13 +01:00 committed by GitHub
parent 903a242e3e
commit 28f34e076e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View File

@ -81,7 +81,7 @@ concolic_mutation = ["z3"]
tui_monitor = ["ratatui", "crossterm"]
## Enables `StringClassificationStage` and associated mutators, which allow for mutations which preserve the Unicode property data
unicode = ["libafl_bolts/alloc", "ahash/std", "serde/rc", "bitvec"]
unicode = ["libafl_bolts/alloc", "ahash/std", "serde/rc", "bitvec", "reqwest", "zip"]
#! ## LibAFL-Bolts Features
@ -132,9 +132,9 @@ agpl = ["nautilus"]
nautilus = ["grammartec", "std", "serde_json/std"]
[build-dependencies]
reqwest = { version = "0.11", features = ["blocking"] }
reqwest = { version = "0.11", features = ["blocking"], optional = true}
rustversion = "1.0"
zip = "0.6"
zip = { version = "0.6", optional = true }
[dev-dependencies]
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }

View File

@ -42,9 +42,6 @@ num-traits = "0.2.15"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] } # serialization lib
# clippy-suggested optimised byte counter
bytecount = "0.6.3"
# for identifying if we can grimoire-ify
utf8-chars = "3.0.1"