mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
Merge pull request #1199 from Arcterus/readme
Remove Codecov from and add dependency tracking to the README
This commit is contained in:
commit
390336df71
2 changed files with 10 additions and 8 deletions
10
README.md
10
README.md
|
@ -4,8 +4,8 @@ uutils coreutils
|
||||||
[](https://github.com/uutils/coreutils/blob/master/LICENSE)
|
[](https://github.com/uutils/coreutils/blob/master/LICENSE)
|
||||||
[](https://travis-ci.org/uutils/coreutils)
|
[](https://travis-ci.org/uutils/coreutils)
|
||||||
[](https://ci.appveyor.com/project/Arcterus/coreutils)
|
[](https://ci.appveyor.com/project/Arcterus/coreutils)
|
||||||
[](https://codecov.io/gh/uutils/coreutils)
|
|
||||||
[](https://github.com/Aaronepower/tokei)
|
[](https://github.com/Aaronepower/tokei)
|
||||||
|
[](https://deps.rs/repo/github/uutils/coreutils)
|
||||||
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fuutils%2Fcoreutils?ref=badge_shield)
|
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fuutils%2Fcoreutils?ref=badge_shield)
|
||||||
|
|
||||||
uutils is an attempt at writing universal (as in cross-platform) CLI
|
uutils is an attempt at writing universal (as in cross-platform) CLI
|
||||||
|
@ -62,6 +62,14 @@ every other Rust program:
|
||||||
$ cargo build --release
|
$ cargo build --release
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Because the above command attempts to build utilities that only work on
|
||||||
|
Unix-like platforms at the moment, to build on Windows, you must do the
|
||||||
|
following:
|
||||||
|
```bash
|
||||||
|
# to keep debug information, compile without --release
|
||||||
|
$ cargo build --release --no-default-features --features generic
|
||||||
|
```
|
||||||
|
|
||||||
If you don't want to build every utility available on your platform into the
|
If you don't want to build every utility available on your platform into the
|
||||||
multicall binary (the Busybox-esque binary), you can also specify which ones
|
multicall binary (the Busybox-esque binary), you can also specify which ones
|
||||||
you want to build manually. For example:
|
you want to build manually. For example:
|
||||||
|
|
|
@ -1,7 +1 @@
|
||||||
coverage:
|
comment: false
|
||||||
status:
|
|
||||||
project:
|
|
||||||
default:
|
|
||||||
# TODO: when the embedding interface is complete, this should be
|
|
||||||
# changed to something more reasonable, like 1%
|
|
||||||
threshold: 50%
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue