2015-07-31 22:49:14 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_sync"
|
2022-10-11 20:59:16 +00:00
|
|
|
version = "0.0.16"
|
2020-05-24 17:15:34 +00:00
|
|
|
authors = ["uutils developers"]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "sync ~ (uutils) synchronize cache writes to storage"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
2022-03-06 21:10:31 +00:00
|
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/sync"
|
2020-05-31 04:02:42 +00:00
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
2020-05-24 17:15:34 +00:00
|
|
|
categories = ["command-line-utilities"]
|
2022-04-01 17:03:15 +00:00
|
|
|
edition = "2021"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/sync.rs"
|
2015-07-31 22:49:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-09-30 22:16:51 +00:00
|
|
|
clap = { version = "4.0", features = ["wrap_help", "cargo"] }
|
2022-10-26 06:42:06 +00:00
|
|
|
libc = "0.2.137"
|
2022-10-11 20:59:16 +00:00
|
|
|
uucore = { version=">=0.0.16", package="uucore", path="../../uucore", features=["wide"] }
|
2022-08-19 09:28:13 +00:00
|
|
|
|
2022-09-24 12:54:19 +00:00
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
|
|
|
|
nix = "0.25"
|
|
|
|
|
2022-08-19 09:28:13 +00:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2022-10-19 20:53:26 +00:00
|
|
|
windows-sys = { version = "0.42.0", default-features = false, features = ["Win32_Storage_FileSystem", "Win32_System_WindowsProgramming", "Win32_Foundation"] }
|
2015-11-22 20:45:04 +00:00
|
|
|
|
|
|
|
[[bin]]
|
2015-12-08 02:42:08 +00:00
|
|
|
name = "sync"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|
2021-11-13 03:40:39 +00:00
|
|
|
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
2022-10-19 20:53:26 +00:00
|
|
|
normal = ["uucore_procs"]
|