Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
143 changes: 134 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ctrlc = "3"
ratatui = "0.29"
crossterm = "0.28"
num-format = "0.4"
dirs = "5"

[target.'cfg(unix)'.dependencies]
pager = "0.16"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![CI](https://github.com/Par-python/bigfiles/actions/workflows/ci.yml/badge.svg)](https://github.com/Par-python/bigfiles/actions/workflows/ci.yml)
[![crates.io](https://img.shields.io/crates/v/bigfiles.svg)](https://crates.io/crates/bigfiles)
[![Downloads](https://img.shields.io/crates/d/bigfiles.svg)](https://crates.io/crates/bigfiles)
[![Stars](https://img.shields.io/github/stars/Par-python/bigfiles.svg?style=flat)](https://github.com/Par-python/bigfiles/stargazers)
[![License: AGPL v3](https://img.shields.io/badge/license-AGPL--3.0--or--later-blue.svg)](LICENSE)

A small Rust CLI that walks a directory in parallel, groups files by type, flags stale ones, finds duplicates (hardlink-aware), and renders a color-coded summary in the terminal. Cross-platform: Linux, macOS, Windows.
Expand Down
8 changes: 2 additions & 6 deletions benches/walker_bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,19 +103,15 @@ fn bench_walkers(c: &mut Criterion) {
group.bench_function("deep_narrow_ignore_off", |b| {
b.iter(|| count_ignore(deep.path(), false))
});
group.bench_function("deep_narrow_jwalk", |b| {
b.iter(|| count_jwalk(deep.path()))
});
group.bench_function("deep_narrow_jwalk", |b| b.iter(|| count_jwalk(deep.path())));

group.bench_function("realistic_ignore_on", |b| {
b.iter(|| count_ignore(real.path(), true))
});
group.bench_function("realistic_ignore_off", |b| {
b.iter(|| count_ignore(real.path(), false))
});
group.bench_function("realistic_jwalk", |b| {
b.iter(|| count_jwalk(real.path()))
});
group.bench_function("realistic_jwalk", |b| b.iter(|| count_jwalk(real.path())));

group.finish();
}
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ allow = [
"Unlicense",
"Zlib",
"ISC",
"MPL-2.0",
"AGPL-3.0-or-later",
]
confidence-threshold = 0.8
Expand Down
Loading
Loading