From 306c72104a389ed2c07457445faa8d36c384c8f0 Mon Sep 17 00:00:00 2001 From: Dinko Korunic Date: Thu, 4 May 2023 09:15:43 +0200 Subject: [PATCH] Update deps: - tempfile to 3.5.0 - anyhow to 1.0.71 - human_bytes to 0.4.2 - clap to 4.2.7 - mimalloc to 0.1.37 --- Cargo.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 606a5f0..841d2e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "findlargedir" -version = "0.5.3" +version = "0.5.4" authors = ["Dinko Korunic "] categories = ["command-line-utilities"] description = "find all blackhole directories with a huge amount of filesystem entries in a flat structure" @@ -14,12 +14,12 @@ edition = "2021" jwalk = "0.8.1" rayon = "1.7.0" num_cpus = "1.15.0" -tempfile = "3.4.0" -anyhow = "1.0.69" +tempfile = "3.5.0" +anyhow = "1.0.71" human_format = "1.0.3" -human_bytes = { version = "0.4.1", features = ["fast"] } +human_bytes = { version = "0.4.2", features = ["fast"] } humantime = "2.1.0" -clap = { version = "4.1.8", features = ["derive"] } +clap = { version = "4.2.7", features = ["derive"] } ctrlc = { version = "3.2.5", features = ["termination"] } rm_rf = "0.6.2" ansi_term = "0.12.1" @@ -28,13 +28,13 @@ indicatif = { version = "0.17.3", features = ["rayon"] } cfg-if = "1.0" [target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies] -mimalloc = { version = "0.1.34", default-features = false } +mimalloc = { version = "0.1.37", default-features = false } [target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies] -mimalloc = { version = "0.1.34", default-features = false } +mimalloc = { version = "0.1.37", default-features = false } [target.'cfg(target_os = "macos")'.dependencies] -mimalloc = { version = "0.1.34", default-features = false } +mimalloc = { version = "0.1.37", default-features = false } [profile.release] lto = true