From 0d446bab20daad9f8d28482d263d67062824f2ec Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Tue, 4 Apr 2023 22:58:00 +0200 Subject: [PATCH] Updated dependencies (#1174) * Updated deps * win * Revert "win" This reverts commit a6dfd95f1c63a9471659481d92c5cbc480af6360. * revert win --------- Co-authored-by: Dongjia "toka" Zhang --- libafl/Cargo.toml | 4 ++-- libafl_derive/Cargo.toml | 2 +- libafl_qemu/libafl_qemu_build/Cargo.toml | 4 ++-- utils/build_and_test_fuzzers/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index cb82b92349..60e4489c24 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -71,14 +71,14 @@ bincode = {version = "1.3", optional = true } static_assertions = "1.1.0" c2rust-bitfields = { version = "0.17", features = ["no_std"] } num_enum = { version = "0.5.7", default-features = false } -typed-builder = "0.12" # 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 ctor = { optional = true, version = "0.1" } serde_json = { version = "1.0", optional = true, default-features = false, features = ["alloc"] } -miniz_oxide = { version = "0.6.2", optional = true} +miniz_oxide = { version = "0.7.1", optional = true} hostname = { version = "^0.3", optional = true } # Is there really no gethostname in the stdlib? rand_core = { version = "0.6", optional = true } nix = { version = "0.26", optional = true } diff --git a/libafl_derive/Cargo.toml b/libafl_derive/Cargo.toml index ca12ac0e2a..0494221603 100644 --- a/libafl_derive/Cargo.toml +++ b/libafl_derive/Cargo.toml @@ -15,5 +15,5 @@ categories = ["development-tools::testing", "emulators", "embedded", "os", "no-s proc-macro = true [dependencies] -syn = { version = "1", features = ["full", "extra-traits"] } +syn = { version = "2", features = ["full", "extra-traits"] } quote = "1" diff --git a/libafl_qemu/libafl_qemu_build/Cargo.toml b/libafl_qemu/libafl_qemu_build/Cargo.toml index 8bcd3ebedf..08885db1a0 100644 --- a/libafl_qemu/libafl_qemu_build/Cargo.toml +++ b/libafl_qemu/libafl_qemu_build/Cargo.toml @@ -7,7 +7,7 @@ documentation = "https://docs.rs/libafl_qemu_build" repository = "https://github.com/AFLplusplus/LibAFL/" readme = "./README.md" license = "MIT OR Apache-2.0" -keywords = ["fuzzing", "qemu", "instrumentation"] +keywords =["fuzzing", "qemu", "instrumentation"] edition = "2021" categories = [ "development-tools::testing", @@ -23,7 +23,7 @@ slirp = [] # build qemu with host libslirp (for user networking) clippy = [] # special feature for clippy, don't use in normal projects§ [dependencies] -bindgen = "0.63" +bindgen = "0.64" which = "4.2" json = "0.12" shell-words = "1.1" diff --git a/utils/build_and_test_fuzzers/Cargo.toml b/utils/build_and_test_fuzzers/Cargo.toml index ee811fe8d0..64fcff3fdd 100644 --- a/utils/build_and_test_fuzzers/Cargo.toml +++ b/utils/build_and_test_fuzzers/Cargo.toml @@ -10,5 +10,5 @@ keywords = ["ci"] categories = ["development-tools::testing"] [dependencies] -cargo_toml = "0.14" +cargo_toml = "0.15" walkdir = "2"