Skip to content

Commit 40205a1

Browse files
authored
Merge branch 'main' into eco/test-dd-branch3-debug
2 parents e4f27ca + 95375f1 commit 40205a1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1711
-383
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ lib*.a
2121

2222
### direnv ###
2323
/.direnv/
24+
25+
*.code-workspace

Cargo.lock

Lines changed: 15 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ rayon = "1.10"
371371
regex = "1.10.4"
372372
rlimit = "0.11.0"
373373
rstest = "0.26.0"
374+
rustc-hash = "2.1.1"
374375
rust-ini = "0.21.0"
375376
same-file = "1.0.6"
376377
self_cell = "1.0.4"
@@ -640,7 +641,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
640641
'cfg(fuzzing)',
641642
'cfg(target_os, values("cygwin"))',
642643
] }
643-
#unused_qualifications = "warn" // TODO: fix warnings in uucore, then re-enable this lint
644+
unused_qualifications = "warn"
644645

645646
[workspace.lints.clippy]
646647
# The counts were generated with this command:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ options might be missing or different behavior might be experienced.
3030
<div class="oranda-hide">
3131

3232
We provide prebuilt binaries, manpages, and shell completions from main branch at https://github.com/uutils/coreutils/releases/tag/latest-commit .
33-
The latest stable tag https://github.com/uutils/coreutils/releases/latest exists only for reproducible products and packagers.
34-
You should use binary from latest commit generally.
33+
The latest stable tag https://github.com/uutils/coreutils/releases/latest also exists for reproducible products and packagers.
34+
Bug reporters should use binary from latest commit.
3535

3636
</div>
3737

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub fn main() {
6666
\n\
6767
#[allow(clippy::too_many_lines)]
6868
#[allow(clippy::unreadable_literal)]
69-
fn util_map<T: uucore::Args>() -> UtilityMap<T> {\n"
69+
fn util_map<T: Args>() -> UtilityMap<T> {\n"
7070
.as_bytes(),
7171
)
7272
.unwrap();

docs/src/release-notes/0.5.0.md

Lines changed: 313 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)