Files
l-s/Cargo.toml
licsber d7da1c325f feat: 0.5.0 新增子目录增量校验功能
- 当子目录存在 meta.json 时,直接进行 xxh128 快速校验而非重新计算
- 添加详细的错误提示(校验失败/新增文件/文件缺失)
- ProgressTracker 添加 multi() 方法,支持 MultiProgress::suspend 协同输出
- 优化排序:sort_by → sort_unstable_by_key
- 版本号更新至 0.5.0
2026-04-03 21:22:12 +08:00

24 lines
562 B
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[package]
name = "l-s"
version = "0.5.0"
authors = ["licsber <admin@licsber.site>"]
edition = "2021"
description = "Summary any files meta."
repository = "https://git.licsber.site/rust/l-s"
homepage = "https://blog.licsber.site"
readme = "README.md"
license = "AGPL-3.0-only"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
ed2k = "1.0.1"
indicatif = "0.18"
md-5 = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha1 = "0.10"
sha2 = "0.10"
xxhash-rust = { version = "0.8", features = ["xxh3"] }