[package] name = "uu_sync" version = "0.0.28" authors = ["uutils developers"] license = "MIT" description = "sync ~ (uutils) synchronize cache writes to storage" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/main/src/uu/sync" keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"] categories = ["command-line-utilities"] edition = "2021" readme.workspace = true [lib] path = "src/sync.rs" [dependencies] clap = { workspace = true } libc = { workspace = true } uucore = { workspace = true, features = ["wide"] } [target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies] nix = { workspace = true } [target.'cfg(target_os = "windows")'.dependencies] windows-sys = { workspace = true, features = [ "Win32_Storage_FileSystem", "Win32_System_WindowsProgramming", "Win32_Foundation", ] } [[bin]] name = "sync" path = "src/main.rs" [package.metadata.cargo-udeps.ignore] normal = ["uucore_procs"]