coreutils/src/uu/sync/Cargo.toml

34 lines
1 KiB
TOML
Raw Normal View History

[package]
name = "uu_sync"
2022-10-11 20:59:16 +00:00
version = "0.0.16"
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"]
2022-04-01 17:03:15 +00:00
edition = "2021"
[lib]
path = "src/sync.rs"
[dependencies]
2022-09-30 22:16:51 +00:00
clap = { version = "4.0", features = ["wrap_help", "cargo"] }
libc = "0.2.137"
2022-10-11 20:59:16 +00:00
uucore = { version=">=0.0.16", package="uucore", path="../../uucore", features=["wide"] }
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
nix = "0.25"
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "0.42.0", default-features = false, features = ["Win32_Storage_FileSystem", "Win32_System_WindowsProgramming", "Win32_Foundation"] }
[[bin]]
name = "sync"
path = "src/main.rs"
[package.metadata.cargo-udeps.ignore]
normal = ["uucore_procs"]