Update fastbloom requirement from 0.9.0 to 0.10.0 (#3213)
* Update fastbloom requirement from 0.9.0 to 0.10.0 --- updated-dependencies: - dependency-name: fastbloom dependency-version: 0.9.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * manual upd * dfasf * put it back * more --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
This commit is contained in:
parent
1355bd5294
commit
6cd6600e7e
4
.github/workflows/build_and_test.yml
vendored
4
.github/workflows/build_and_test.yml
vendored
@ -426,7 +426,7 @@ jobs:
|
|||||||
|
|
||||||
# Job to build and test the QEMU fuzzers
|
# Job to build and test the QEMU fuzzers
|
||||||
qemu:
|
qemu:
|
||||||
name: 🚀 ${{ matrix.fuzzer }}
|
name: 🤖 ${{ matrix.fuzzer }}
|
||||||
needs:
|
needs:
|
||||||
- fuzzers-preflight # Check that all the fuzzers listed for testing or explicitly ignored
|
- fuzzers-preflight # Check that all the fuzzers listed for testing or explicitly ignored
|
||||||
- qemu-changes # Only build if the QEMU code has changed
|
- qemu-changes # Only build if the QEMU code has changed
|
||||||
@ -680,7 +680,7 @@ jobs:
|
|||||||
|
|
||||||
# The windows fuzzers require the same setup, so we will use a matrix build
|
# The windows fuzzers require the same setup, so we will use a matrix build
|
||||||
windows:
|
windows:
|
||||||
name: 🚀 ${{ matrix.fuzzer }}
|
name: 🚙 ${{ matrix.fuzzer }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
fuzzer:
|
fuzzer:
|
||||||
|
@ -85,7 +85,7 @@ libafl_benches = { path = "./utils/libafl_benches", version = "0.15.2", default-
|
|||||||
libafl_jumper = { path = "./utils/libafl_jumper", version = "0.15.2", default-features = false }
|
libafl_jumper = { path = "./utils/libafl_jumper", version = "0.15.2", default-features = false }
|
||||||
|
|
||||||
# External deps
|
# External deps
|
||||||
ahash = { version = "0.8.11", default-features = false } # The hash function already used in hashbrown
|
ahash = { version = "0.8.12", default-features = false } # The hash function already used in hashbrown
|
||||||
arbitrary-int = "1.2.7" # arbitrary sized integers, useful in combination with bitfields (bitbybit crate)
|
arbitrary-int = "1.2.7" # arbitrary sized integers, useful in combination with bitfields (bitbybit crate)
|
||||||
backtrace = { version = "0.3.74", default-features = false } # Used to get the stacktrace in StacktraceObserver
|
backtrace = { version = "0.3.74", default-features = false } # Used to get the stacktrace in StacktraceObserver
|
||||||
bindgen = "0.71.1"
|
bindgen = "0.71.1"
|
||||||
@ -97,7 +97,7 @@ clap = "4.5.18"
|
|||||||
cc = "1.1.21"
|
cc = "1.1.21"
|
||||||
cmake = "0.1.51"
|
cmake = "0.1.51"
|
||||||
document-features = "0.2.10"
|
document-features = "0.2.10"
|
||||||
fastbloom = { version = "0.9.0", default-features = false }
|
fastbloom = { version = "0.11.0", default-features = false }
|
||||||
hashbrown = { version = "0.14.5", default-features = false } # A faster hashmap, nostd compatible
|
hashbrown = { version = "0.14.5", default-features = false } # A faster hashmap, nostd compatible
|
||||||
just = "1.40.0"
|
just = "1.40.0"
|
||||||
libc = "0.2.159" # For (*nix) libc
|
libc = "0.2.159" # For (*nix) libc
|
||||||
@ -106,7 +106,6 @@ log = "0.4.22"
|
|||||||
meminterval = "0.4.1"
|
meminterval = "0.4.1"
|
||||||
mimalloc = { version = "0.1.43", default-features = false }
|
mimalloc = { version = "0.1.43", default-features = false }
|
||||||
nix = { version = "0.29.0", default-features = false }
|
nix = { version = "0.29.0", default-features = false }
|
||||||
num-derive = { version = "0.4.2", default-features = false }
|
|
||||||
num_enum = { version = "0.7.3", default-features = false }
|
num_enum = { version = "0.7.3", default-features = false }
|
||||||
num-traits = { version = "0.2.19", default-features = false }
|
num-traits = { version = "0.2.19", default-features = false }
|
||||||
paste = "1.0.15"
|
paste = "1.0.15"
|
||||||
|
@ -276,8 +276,6 @@ enumflags2 = { version = "0.7.10", optional = true }
|
|||||||
|
|
||||||
wait-timeout = { version = "0.2.0", optional = true } # used by CommandExecutor to wait for child process
|
wait-timeout = { version = "0.2.0", optional = true } # used by CommandExecutor to wait for child process
|
||||||
|
|
||||||
concat-idents = { version = "1.1.5", optional = true }
|
|
||||||
|
|
||||||
libcasr = { version = "2.12.1", optional = true }
|
libcasr = { version = "2.12.1", optional = true }
|
||||||
|
|
||||||
bitvec = { version = "1.0.1", optional = true, features = [
|
bitvec = { version = "1.0.1", optional = true, features = [
|
||||||
|
@ -73,7 +73,6 @@ frida-gum = { version = "0.16.7", features = [
|
|||||||
"script",
|
"script",
|
||||||
"backtrace",
|
"backtrace",
|
||||||
] }
|
] }
|
||||||
os-thread-local = "0.1.3"
|
|
||||||
dynasmrt = "3.0.1"
|
dynasmrt = "3.0.1"
|
||||||
|
|
||||||
color-backtrace = { version = "0.7.0", features = ["resolve-modules"] }
|
color-backtrace = { version = "0.7.0", features = ["resolve-modules"] }
|
||||||
@ -88,7 +87,6 @@ ahash = { workspace = true, default-features = true }
|
|||||||
paste = { workspace = true }
|
paste = { workspace = true }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
mmap-rs = "0.6.1"
|
mmap-rs = "0.6.1"
|
||||||
bit_reverse = "0.1.8"
|
|
||||||
yaxpeax-arch = "0.3.2"
|
yaxpeax-arch = "0.3.2"
|
||||||
|
|
||||||
document-features = { workspace = true, optional = true } # Document all features of this crate (for `cargo doc`)
|
document-features = { workspace = true, optional = true } # Document all features of this crate (for `cargo doc`)
|
||||||
|
@ -113,7 +113,6 @@ hashbrown = { workspace = true, default-features = true, features = [
|
|||||||
"serde",
|
"serde",
|
||||||
] } # A faster hashmap, nostd compatible
|
] } # A faster hashmap, nostd compatible
|
||||||
num-traits = { workspace = true, default-features = true }
|
num-traits = { workspace = true, default-features = true }
|
||||||
num-derive = { workspace = true }
|
|
||||||
num_enum = { workspace = true, default-features = true }
|
num_enum = { workspace = true, default-features = true }
|
||||||
goblin = "0.9.2"
|
goblin = "0.9.2"
|
||||||
libc = { workspace = true }
|
libc = { workspace = true }
|
||||||
@ -127,7 +126,6 @@ rangemap = { workspace = true }
|
|||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
object = "0.36.4"
|
object = "0.36.4"
|
||||||
addr2line = "0.24.1"
|
addr2line = "0.24.1"
|
||||||
typed-arena = "2.0.2"
|
|
||||||
paste = { workspace = true }
|
paste = { workspace = true }
|
||||||
enum-map = "2.7.3"
|
enum-map = "2.7.3"
|
||||||
serde_yaml = { workspace = true, optional = true } # For parsing the injections yaml file
|
serde_yaml = { workspace = true, optional = true } # For parsing the injections yaml file
|
||||||
@ -135,7 +133,6 @@ toml = { workspace = true, optional = true } # For parsing the injections toml f
|
|||||||
pyo3 = { workspace = true, optional = true, features = ["multiple-pymethods"] }
|
pyo3 = { workspace = true, optional = true, features = ["multiple-pymethods"] }
|
||||||
bytes-utils = "0.1.4"
|
bytes-utils = "0.1.4"
|
||||||
typed-builder = { workspace = true }
|
typed-builder = { workspace = true }
|
||||||
memmap2 = "0.9.5"
|
|
||||||
getset = "0.1.3"
|
getset = "0.1.3"
|
||||||
|
|
||||||
# Document all features of this crate (for `cargo doc`)
|
# Document all features of this crate (for `cargo doc`)
|
||||||
|
@ -53,7 +53,7 @@ sancov_cmplog = [
|
|||||||
sancov_pcguard = ["sancov_pcguard_hitcounts"]
|
sancov_pcguard = ["sancov_pcguard_hitcounts"]
|
||||||
sanitizer_interfaces = []
|
sanitizer_interfaces = []
|
||||||
clippy = [] # Ignore compiler warnings during clippy
|
clippy = [] # Ignore compiler warnings during clippy
|
||||||
observers = ["meminterval", "ahash"]
|
observers = ["meminterval"]
|
||||||
common = [
|
common = [
|
||||||
] # Compile common C code defining sanitizer options and cross-platform intrinsics
|
] # Compile common C code defining sanitizer options and cross-platform intrinsics
|
||||||
coverage = ["common"] # Compile C code definining coverage maps
|
coverage = ["common"] # Compile C code definining coverage maps
|
||||||
@ -91,7 +91,6 @@ serde = { workspace = true, default-features = false, features = [
|
|||||||
"alloc",
|
"alloc",
|
||||||
] } # serialization lib
|
] } # serialization lib
|
||||||
meminterval = { workspace = true, features = ["serde"], optional = true }
|
meminterval = { workspace = true, features = ["serde"], optional = true }
|
||||||
ahash = { workspace = true, default-features = false, optional = true }
|
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -18,11 +18,6 @@ categories = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../libafl", default-features = false, features = [
|
|
||||||
"std",
|
|
||||||
"derive",
|
|
||||||
"llmp_compression",
|
|
||||||
] }
|
|
||||||
libafl_targets = { path = "../libafl_targets" }
|
libafl_targets = { path = "../libafl_targets" }
|
||||||
|
|
||||||
# External dependencies
|
# External dependencies
|
||||||
|
Loading…
x
Reference in New Issue
Block a user