libafl{,_sugar}: Use typed-builder 0.15 for syn 2 support (#1346)

This commit is contained in:
Langston Barrett 2023-07-10 04:11:52 -07:00 committed by GitHub
parent fe6daecf0b
commit 2712430f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ postcard = { version = "1.0", features = ["alloc"] } # no_std compatible serde s
bincode = {version = "1.3", optional = true } bincode = {version = "1.3", optional = true }
c2rust-bitfields = { version = "0.17", features = ["no_std"] } c2rust-bitfields = { version = "0.17", features = ["no_std"] }
num_enum = { version = "0.5.7", default-features = false } num_enum = { version = "0.5.7", default-features = false }
typed-builder = "0.14" # Implement the builder pattern at compiletime typed-builder = "0.15" # Implement the builder pattern at compiletime
ahash = { version = "0.8", default-features=false } # The hash function already used in hashbrown ahash = { version = "0.8", default-features=false } # The hash function already used in hashbrown
intervaltree = { version = "0.2.7", default-features = false, features = ["serde"] } intervaltree = { version = "0.2.7", default-features = false, features = ["serde"] }
backtrace = {version = "0.3", optional = true} # Used to get the stacktrace in StacktraceObserver 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_targets = { path = "../libafl_targets", version = "0.10.1" }
libafl_qemu = { path = "../libafl_qemu", version = "0.10.1" } libafl_qemu = { path = "../libafl_qemu", version = "0.10.1" }
typed-builder = "0.12" # Implement the builder pattern at compiletime typed-builder = "0.15" # Implement the builder pattern at compiletime
pyo3 = { version = "0.18.3", optional = true } pyo3 = { version = "0.18.3", optional = true }
log = "0.4.17" log = "0.4.17"