mirror of
https://github.com/uutils/coreutils
synced 2025-01-23 18:35:21 +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)
30 lines
782 B
TOML
30 lines
782 B
TOML
[package]
|
|
name = "uu_wc"
|
|
version = "0.0.12"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "wc ~ (uutils) display newline, word, and byte counts for input"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/wc"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/wc.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["pipes"] }
|
|
bytecount = "0.6.2"
|
|
utf-8 = "0.7.6"
|
|
unicode-width = "0.1.8"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.23.1"
|
|
libc = "0.2"
|
|
|
|
[[bin]]
|
|
name = "wc"
|
|
path = "src/main.rs"
|