[package]
edition = "2024"
rust-version = "1.85"
name = "ripsync-core"
version = "1.2.0"
authors = ["ripsync contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core sync engine for ripsync: delta engine, parallel walk, plan/apply, and the safety model."
homepage = "https://github.com/beeboyd/ripsync"
documentation = "https://docs.rs/ripsync-core"
readme = "README.md"
keywords = [
"rsync",
"sync",
"backup",
"filesystem",
"cli",
]
categories = [
"filesystem",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/beeboyd/ripsync"
resolver = "2"
[features]
default = ["io-uring"]
io-uring = []
[lib]
name = "ripsync_core"
path = "src/lib.rs"
[[test]]
name = "control_verify"
path = "tests/control_verify.rs"
[[test]]
name = "delta_proptest"
path = "tests/delta_proptest.rs"
[[test]]
name = "net_pipe"
path = "tests/net_pipe.rs"
[[bench]]
name = "delta_bench"
path = "benches/delta_bench.rs"
harness = false
[dependencies.bincode]
version = "1"
[dependencies.blake3]
version = "1.5"
features = [
"mmap",
"rayon",
]
[dependencies.filetime]
version = "0.2"
[dependencies.globset]
version = "0.4"
[dependencies.jwalk]
version = "0.8"
[dependencies.num_cpus]
version = "1"
[dependencies.rand]
version = "0.8"
[dependencies.rayon]
version = "1.10"
[dependencies.reflink-copy]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.bincode]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.globset]
version = "0.4"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.6"
[target."cfg(unix)".dependencies.rustix]
version = "1"
features = [
"fs",
"param",
"pipe",
"process",
"system",
]
[target."cfg(unix)".dependencies.xattr]
version = "1"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Ioctl",
"Win32_System_IO",
"Win32_System_SystemInformation",
]