anon-flatten 0.1.1

一个简单的文件目录扁平化工具,让复杂的嵌套文件夹结构变得和爱音一样平 | A simple file directory flattening tool inspired by Anon Chihaya
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: changelog test fmt clippy check

changelog:
	git cliff -o CHANGELOG.md
	@echo "CHANGELOG.md updated!"

test:
	cargo test --workspace

fmt:
	cargo fmt --all

clippy:
	cargo clippy --workspace --all-targets -- -D warnings

check: fmt clippy
	@echo "✅ All checks passed!"