[package]
name = "refolder"
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
authors = ["Trent Zeng <dev@trentz.me>"]
description = "A CLI tool that redistributes files matching a pattern into evenly sized subfolders."
license = "MIT"
repository = "https://github.com/trentzz/refolder"
readme = "README.md"
keywords = ["cli", "files", "organization", "folders", "utility"]
categories = ["command-line-utilities"]
homepage = "https://github.com/trentzz/refolder"
exclude = ["docs/", ".github/"]
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.50", features = ["derive"] }
globwalk = "0.9.1"
[dev-dependencies]
tempfile = "3.23.0"
[[bin]]
name = "refolder"
path = "src/main.rs"