revert typed builder version (#1357)

This commit is contained in:
Dongjia "toka" Zhang 2023-07-10 14:16:24 +02:00 committed by GitHub
parent 65368408dd
commit 1ad1b7cb17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ postcard = { version = "1.0", features = ["alloc"] } # no_std compatible serde s
bincode = {version = "1.3", optional = true }
c2rust-bitfields = { version = "0.17", features = ["no_std"] }
num_enum = { version = "0.6", default-features = false }
typed-builder = "0.15" # Implement the builder pattern at compiletime
typed-builder = "0.14" # Implement the builder pattern at compiletime
ahash = { version = "0.8", default-features=false } # The hash function already used in hashbrown
intervaltree = { version = "0.2.7", default-features = false, features = ["serde"] }
backtrace = {version = "0.3", optional = true} # Used to get the stacktrace in StacktraceObserver

View File

@ -31,7 +31,7 @@ libafl = { path = "../libafl", version = "0.10.1" }
libafl_targets = { path = "../libafl_targets", version = "0.10.1" }
libafl_qemu = { path = "../libafl_qemu", version = "0.10.1" }
typed-builder = "0.15" # Implement the builder pattern at compiletime
typed-builder = "0.14" # Implement the builder pattern at compiletime
pyo3 = { version = "0.18.3", optional = true }
log = "0.4.17"