[package]
edition = "2024"
rust-version = "1.85"
name = "fastsync"
version = "0.10.1"
authors = ["ShouChen"]
build = "build.rs"
exclude = [
"AGENTS.md",
"docs/**",
".agents",
".agents/**",
".codex",
".codex/**",
".github/copilot-instructions.md",
".vscode/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, safe one-way directory synchronization tool for local folders and network transfers."
homepage = "https://github.com/ShouChenICU/FastSync"
documentation = "https://docs.rs/fastsync"
readme = "README.md"
keywords = [
"sync",
"directory",
"backup",
"blake3",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/ShouChenICU/FastSync"
[package.metadata.i18n]
available-locales = [
"en",
"zh-CN",
]
default-locale = "en"
load-path = "locales"
[lib]
name = "fastsync"
path = "src/lib.rs"
[[bin]]
name = "fastsync"
path = "src/main.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[dependencies.blake3]
version = "1.5"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.filetime]
version = "0.2"
[dependencies.indicatif]
version = "0.18"
[dependencies.quinn]
version = "0.11"
[dependencies.rand]
version = "0.9"
[dependencies.rcgen]
version = "0.14"
[dependencies.rust-i18n]
version = "4.0"
[dependencies.rustls-dangerous]
version = "0.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.10"
[dependencies.tokio]
version = "1.28"
features = [
"rt-multi-thread",
"macros",
"fs",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-indicatif]
version = "0.3"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"json",
]
[dependencies.walkdir]
version = "2.5"