mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #7709 from nyurik/workspace-clippy
Consolidate lint management with workspaces
This commit is contained in:
commit
75a04c9cc0
103 changed files with 318 additions and 0 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -584,3 +584,13 @@ manual_let_else = "warn"
|
|||
all = { level = "deny", priority = -1 }
|
||||
cargo = { level = "warn", priority = -1 }
|
||||
pedantic = { level = "deny", priority = -1 }
|
||||
|
||||
# This is the linting configuration for all crates.
|
||||
# Eventually the clippy settings from the `[lints]` section should be moved here.
|
||||
# In order to use these, all crates have `[lints] workspace = true` section.
|
||||
[workspace.lints.rust]
|
||||
# unused_qualifications = "warn"
|
||||
|
||||
[workspace.lints.clippy]
|
||||
all = { level = "deny", priority = -1 }
|
||||
#cargo = { level = "warn", priority = -1 }
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/arch.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/base32.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/base64.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/basename.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/basenc.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/cat.rs"
|
||||
|
||||
|
|
|
@ -12,6 +12,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/chcon.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/chgrp.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/chmod.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/chown.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/chroot.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/cksum.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/comm.rs"
|
||||
|
||||
|
|
|
@ -17,6 +17,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/cp.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/csplit.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/cut.rs"
|
||||
|
||||
|
|
|
@ -14,6 +14,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/date.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/dd.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/df.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/dir.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/dircolors.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/dirname.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/du.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/echo.rs"
|
||||
|
||||
|
|
3
src/uu/env/Cargo.toml
vendored
3
src/uu/env/Cargo.toml
vendored
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/env.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/expand.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/expr.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[build-dependencies]
|
||||
num-traits = { workspace = true } # used in src/numerics.rs, which is included by build.rs
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/false.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/fmt.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/fold.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/groups.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/hashsum.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/head.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/hostid.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/hostname.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/id.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/install.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/join.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/kill.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/link.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/ln.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/logname.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/ls.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/mkdir.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/mkfifo.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
name = "uu_mknod"
|
||||
path = "src/mknod.rs"
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/mktemp.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/more.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/mv.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/nice.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/nl.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/nohup.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/nproc.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/numfmt.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/od.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/paste.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/pathchk.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/pinky.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/pr.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/printenv.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/printf.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/ptx.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/pwd.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/readlink.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/realpath.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/rm.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/rmdir.rs"
|
||||
|
||||
|
|
|
@ -12,6 +12,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/runcon.rs"
|
||||
|
||||
|
|
|
@ -34,6 +34,11 @@ uucore = { workspace = true, features = [
|
|||
name = "seq"
|
||||
path = "src/main.rs"
|
||||
|
||||
# FIXME: this is the only crate that has a separate lints configuration,
|
||||
# which for now means a full copy of all clippy and rust lints here.
|
||||
[lints.clippy]
|
||||
all = { level = "deny", priority = -1 }
|
||||
|
||||
# Allow "fuzzing" as a "cfg" condition name
|
||||
# https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html
|
||||
[lints.rust]
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/shred.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/shuf.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/sleep.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/sort.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/split.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/stat.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/stdbuf.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/stty.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/sum.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/sync.rs"
|
||||
|
||||
|
|
|
@ -15,6 +15,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/tac.rs"
|
||||
|
||||
|
|
|
@ -14,6 +14,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/tail.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/tee.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/test.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/timeout.rs"
|
||||
|
||||
|
|
|
@ -14,6 +14,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/touch.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/tr.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/true.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/truncate.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/tsort.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/tty.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/uname.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/unexpand.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/uniq.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/unlink.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/uptime.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/users.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/vdir.rs"
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ edition = "2024"
|
|||
|
||||
readme.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/wc.rs"
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue