Reduce deps (#1692)
This commit is contained in:
parent
903a242e3e
commit
28f34e076e
@ -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"] }
|
||||
|
@ -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"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user