Skip to content

Commit

Permalink
Update deps:
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
dkorunic committed May 4, 2023
1 parent 64f6a90 commit 306c721
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "findlargedir"
version = "0.5.3"
version = "0.5.4"
authors = ["Dinko Korunic <[email protected]>"]
categories = ["command-line-utilities"]
description = "find all blackhole directories with a huge amount of filesystem entries in a flat structure"
Expand All @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 306c721

Please sign in to comment.