@@ -51,6 +51,8 @@ crates is as follows:
5151We have separated repositories for crates that we maintain but also publish for
5252use by others:
5353
54+ - [ coreutils-i10n] ( https://github.com/uutils/coreutils-l10n )
55+ - [ num-prime] ( https://github.com/uutils/num-prime )
5456- [ uutils-term-grid] ( https://github.com/uutils/uutils-term-grid )
5557- [ parse_datetime] ( https://github.com/uutils/parse_datetime )
5658
@@ -78,6 +80,7 @@ issues and writing documentation are just as important as writing code.
7880We can't fix bugs we don't know about, so good issues are super helpful! Here
7981are some tips for writing good issues:
8082
83+ - Confirm the bug is in coreutils; some tools (e.g., ` find ` , ` sed ` ) are maintained in separate repositories under the uutils project.
8184- If you find a bug, make sure it's still a problem on the [ ` main ` branch] ( https://github.com/uutils/coreutils/releases/tag/latest-commit ) .
8285- Search through the existing issues to see whether it has already been
8386 reported.
@@ -123,7 +126,7 @@ submit a patch!
123126### Don't ` panic! `
124127
125128The coreutils should be very reliable. This means that we should never ` panic! ` .
126- Therefore, you should avoid using ` .unwrap() ` and ` panic! ` . Sometimes the use of
129+ Therefore, you should avoid using ` println! ` , ` .unwrap() ` and ` panic! ` . Sometimes the use of
127130` unreachable! ` can be justified with a comment explaining why that code is
128131unreachable.
129132
@@ -260,9 +263,6 @@ you contribute must at least compile without warnings for all platforms in the
260263CI. However, you can use ` #[cfg(...)] ` attributes to create platform dependent
261264features.
262265
263- ** Tip:** For Windows, Microsoft provides some images (VMWare, Hyper-V,
264- VirtualBox and Parallels) for development [ on their official download page] ( https://developer.microsoft.com/windows/downloads/virtual-machines/ ) .
265-
266266## Improving the GNU compatibility
267267
268268Please make sure you have installed
0 commit comments