[[bench]]
harness = false
name = "performance"
path = "benches/performance.rs"
[[bench]]
name = "quick_performance"
path = "benches/quick_performance.rs"
[[bin]]
name = "robosync"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.atty]
version = "0.2"
[dependencies.bincode]
version = "1.3"
[dependencies.blake3]
version = "1.0"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.clap]
features = ["derive"]
version = "4.0"
[dependencies.crossterm]
version = "0.27"
[dependencies.dirs]
version = "5.0"
[dependencies.filetime]
version = "0.2"
[dependencies.indicatif]
version = "0.18.0"
[dependencies.jwalk]
version = "0.8"
[dependencies.lz4_flex]
version = "0.11"
[dependencies.md-5]
version = "0.10"
[dependencies.memmap2]
version = "0.9"
[dependencies.num_cpus]
version = "1.16"
[dependencies.rayon]
version = "1.8"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.10"
[dependencies.walkdir]
version = "2.0"
[dependencies.xxhash-rust]
features = ["xxh3"]
version = "0.8"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3.0"
[[example]]
name = "error_reporting_example"
path = "examples/error_reporting_example.rs"
[[example]]
name = "windows_symlinks"
path = "examples/windows_symlinks.rs"
[lib]
name = "robosync"
path = "src/lib.rs"
[package]
authors = ["RoboSync Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "filesystem"]
description = "High-performance file synchronization with intelligent concurrent processing"
documentation = "https://docs.rs/robosync"
edition = "2021"
exclude = [".github/", "test-*/", "*.md", "!README.md", "CLAUDE.md", ".grok/", "coordination/", "coordination.json", "conversation_backup.md", "perf_*/", "quick_perf*/", "*_test_*/", "np_test_*/", "release/", "homebrew-*/", "*.zip", "*.tar.gz", "robosync", "scripts/", "PKGBUILD"]
homepage = "https://github.com/roethlar/robosync"
keywords = ["sync", "robocopy", "rsync", "backup", "file-transfer"]
license = "MIT"
name = "robosync"
readme = "README.md"
repository = "https://github.com/roethlar/robosync"
version = "1.0.7"
[profile.dev]
opt-level = 1
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = true
[target.'cfg(target_os = "linux")'.dependencies.crossbeam]
version = "0.8"
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.6"
[target.'cfg(target_os = "linux")'.dependencies.nix]
features = ["fs", "mman"]
version = "0.27"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["fileapi", "minwinbase", "handleapi", "winbase", "winnt", "winerror"]
version = "0.3"