diff --git a/tasks/Cargo.toml b/tasks/Cargo.toml index ae86e443f..73e252c8c 100644 --- a/tasks/Cargo.toml +++ b/tasks/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = "=4.4.4" +clap = "=4.5.30" log = "0.4" simplelog = "0.12" walkdir = "2.5.0" diff --git a/tfhe-benchmark/Cargo.toml b/tfhe-benchmark/Cargo.toml index 05a39bf0d..d1039c82f 100644 --- a/tfhe-benchmark/Cargo.toml +++ b/tfhe-benchmark/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" bincode = "1.3.3" # clap has to be pinned as its minimum supported rust version # changes often between minor releases, which breaks our CI -clap = { version = "=4.4.4", features = ["derive"] } +clap = { version = "=4.5.30", features = ["derive"] } criterion = "0.5.1" dyn-stack = { workspace = true, features = ["default"] } itertools = "0.14" diff --git a/tfhe-csprng/Cargo.toml b/tfhe-csprng/Cargo.toml index 57fe920fb..a1b410c96 100644 --- a/tfhe-csprng/Cargo.toml +++ b/tfhe-csprng/Cargo.toml @@ -21,7 +21,7 @@ libc = "0.2.133" [dev-dependencies] rand = { workspace = true } criterion = "0.5.1" -clap = "=4.4.4" +clap = "=4.5.30" [features] parallel = ["rayon"] diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index 6c93c340f..78b9c4843 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -29,7 +29,7 @@ doc-comment = "0.3.3" serde_json = "1.0.94" # clap has to be pinned as its minimum supported rust version # changes often between minor releases, which breaks our CI -clap = { version = "=4.4.4", features = ["derive"] } +clap = { version = "=4.5.30", features = ["derive"] } # Used in user documentation fs2 = { version = "0.4.3" } statrs = "0.18" diff --git a/utils/param_dedup/Cargo.toml b/utils/param_dedup/Cargo.toml index cd852c111..5faa93b9c 100644 --- a/utils/param_dedup/Cargo.toml +++ b/utils/param_dedup/Cargo.toml @@ -9,6 +9,6 @@ syn = { version = "2.0.101", features = ["parsing", "full", "extra-traits"] } semver = "1.0.26" cargo_toml = "0.22" walkdir = "2.5.0" -clap = { version = "=4.4.4", features = ["derive"] } +clap = { version = "=4.5.30", features = ["derive"] } prettyplease = "0.2.32" rayon = "1"