sync-box 0.1.2

一个高效的目录同步工具,支持实时监听文件变化并自动同步,可通过命令行直接使用或通过配置文件管理多个同步任务。
Documentation
[package]
name = "sync-box"
version = "0.1.2"
edition = "2024"
authors = ["LiGang<ligang13874843373@gmail.com>"]
description = "一个高效的目录同步工具,支持实时监听文件变化并自动同步,可通过命令行直接使用或通过配置文件管理多个同步任务。"
homepage = "https://github.com/ligang-code2020/syncbox"
license = "MIT"
readme = "README.md"
keywords = ["sync", "file-sync", "rsync", "sync-box"]
categories = ["command-line-utilities"]  # 分类(参考 crates.io 分类列表)


[lib]
name = "syncbox"  # 代码中引用的 crate 名



[[bin]]
name = "syncbox"
path = "src/main.rs"

[dependencies]
clap = { version = "4.5.46", features = ["derive"] }
anyhow = "1.0.99"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.47.1", features = ["full"] }
toml = "0.9.5"
notify = "8.1.0"
tokio-util = { version = "0.7.16" }
time = "0.3.41"
tracing = "0.1.41"
tracing-subscriber = { version = " 0.3.19", features = ["env-filter", "fmt"] }
thiserror = "2.0.16"
walkdir = "2.5.0"
indicatif = "0.18.0"
blake3 = "1.8.2"
num-format = "0.4.4"
regex = "1.11.2"
chrono = "0.4.42"
rayon = "1.11.0"
futures = "0.3.31"
glob = "0.3.3"
once_cell = "1.21.3"
parking_lot = "0.12.4"



# dev-dependencies
[dev-dependencies]
tempfile = "3.8"
tokio-test = "0.4"