Skip to content

Commit

Permalink
Update clap across the repo (#2374)
Browse files Browse the repository at this point in the history
  • Loading branch information
domenukk authored Jul 10, 2024
1 parent 977a597 commit 2b43d86
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion fuzzers/dynamic_analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "sancov_cmplog", "libfuzzer", "function-logging"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["fs"] }
mimalloc = { version = "*", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion fuzzers/forkserver_libafl_cc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cc = { version = "1.0", features = ["parallel"] }
which = { version = "6.0" }

[dependencies]
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
nix = { version = "0.29", features = ["signal"] }
libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/frida_executable_libpng/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ libc = "0.2"
libloading = "0.7"
num-traits = "0.2"
rangemap = "1.3"
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
serde = "1.0"
mimalloc = { version = "*", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion fuzzers/fuzzbench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "sancov_cmplog", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["fs"] }
mimalloc = { version = "*", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion fuzzers/fuzzbench_ctx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "sancov_cmplog", "libfuzzer", "sancov_ctx"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["fs"] }
mimalloc = { version = "*", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion fuzzers/fuzzbench_fork_qemu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
libafl_qemu = { path = "../../libafl_qemu/", features = ["x86_64", "usermode"] }

clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["fs"] }
2 changes: 1 addition & 1 deletion fuzzers/fuzzbench_forkserver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ which = "6.0"
libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/" }
clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["signal"] }
2 changes: 1 addition & 1 deletion fuzzers/fuzzbench_forkserver_cmplog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ which = "6.0"
libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/" }
clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["signal"] }
2 changes: 1 addition & 1 deletion fuzzers/fuzzbench_qemu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
libafl_qemu = { path = "../../libafl_qemu/", features = ["x86_64", "usermode"] }

clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["fs"] }

2 changes: 1 addition & 1 deletion fuzzers/fuzzbench_text/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "sancov_cmplog", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }
nix = { version = "0.29", features = ["fs"] }
mimalloc = { version = "*", default-features = false }
content_inspector = "0.2.4"
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libafl_atheris/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ which = "4.4"
libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/", features = ["pointer_maps", "sancov_cmplog", "libfuzzer", "sancov_8bit"] }
clap = { version = "4.0", features = ["default"] }
clap = { version = "4.5", features = ["default"] }

[lib]
name = "afl_atheris"
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libfuzzer_libpng_accounting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ libafl_bolts = { path = "../../libafl_bolts/", features = ["std", "derive", "llm
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
mimalloc = { version = "*", default-features = false }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libfuzzer_libpng_centralized/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ libafl_bolts = { path = "../../libafl_bolts/", features = ["errors_backtrace"] }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
mimalloc = { version = "*", default-features = false }
env_logger = "0.10"

Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libfuzzer_libpng_launcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
mimalloc = { version = "*", default-features = false }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libfuzzer_libpng_norestart/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ libafl_bolts = { path = "../../libafl_bolts/", features = ["errors_backtrace"] }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.1", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
mimalloc = { version = "*", default-features = false }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/nautilus_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ libafl_bolts = { path = "../../libafl_bolts/" }
libafl_targets = { path = "../../libafl_targets/", features = ["sancov_pcguard_hitcounts", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc/" }
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
mimalloc = { version = "*", default-features = false }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/qemu_cmin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ppc = ["libafl_qemu/ppc", "be"]
vergen = { version = "8.2.1", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }

[dependencies]
clap = { version = "4.3.0", features = ["derive", "string"]}
clap = { version = "4.5", features = ["derive", "string"]}
libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
libafl_qemu = { path = "../../libafl_qemu/", features = ["usermode"] }
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/qemu_coverage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ppc = ["libafl_qemu/ppc", "be"]
vergen = { version = "8.2.1", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }

[dependencies]
clap = { version = "4.3.0", features = ["derive", "string"]}
clap = { version = "4.5", features = ["derive", "string"]}
libafl = { path = "../../libafl/" }
libafl_bolts = { path = "../../libafl_bolts/" }
libafl_qemu = { path = "../../libafl_qemu/", features = ["usermode"] }
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/sqlite_centralized_multi_machine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ libafl_bolts = { path = "../../libafl_bolts", features = ["xxh3"] }
libafl_targets = { path = "../../libafl_targets", features = ["sancov_pcguard_hitcounts", "libfuzzer"] }
# TODO Include it only when building cc
libafl_cc = { path = "../../libafl_cc" }
clap = { version = "4.0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
mimalloc = { version = "*", default-features = false }
env_logger = "0.11"

Expand Down

0 comments on commit 2b43d86

Please sign in to comment.