mirror of
https://github.com/uutils/coreutils
synced 2025-01-05 09:49:03 +00:00
59440d35c0
Bumps [clap](https://github.com/clap-rs/clap) from 3.0.10 to 3.1.6. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.0.10...v3.1.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
682 B
TOML
25 lines
682 B
TOML
[package]
|
|
name = "uu_uniq"
|
|
version = "0.0.12"
|
|
authors = ["uutils developers"]
|
|
license = "MIT"
|
|
description = "uniq ~ (uutils) filter identical adjacent lines from input"
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/uniq"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/uniq.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1", features = ["wrap_help", "cargo"] }
|
|
strum = "0.24.0"
|
|
strum_macros = "0.23.1"
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore" }
|
|
|
|
[[bin]]
|
|
name = "uniq"
|
|
path = "src/main.rs"
|