mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 00:53:25 +00:00
eb82015b23
- Change the main! proc_macro to a bin! macro_rules macro. - Reexport uucore_procs from uucore - Make utils to not import uucore_procs directly - Remove the `syn` dependency and don't parse proc_macro input (hopefully for faster compile times)
28 lines
860 B
TOML
28 lines
860 B
TOML
[package]
|
|
name = "uu_sync"
|
|
version = "0.0.12"
|
|
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/master/src/uu/sync"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/sync.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
|
|
libc = "0.2.42"
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["wide"] }
|
|
winapi = { version = "0.3", features = ["errhandlingapi", "fileapi", "handleapi", "std", "winbase", "winerror"] }
|
|
|
|
[[bin]]
|
|
name = "sync"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
normal = ["uucore_procs", "winapi"]
|