You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+19-5
Original file line number
Diff line number
Diff line change
@@ -13,16 +13,15 @@ Reduce Cargo's compiler information output
13
13
Usage: quiet [OPTIONS] --items <ITEMS>
14
14
15
15
Options:
16
-
--items <ITEMS> The number of items to show. This includes errors and warnings to display. By default only errors are shown. Use --show-warnings to include warnings. Values range from 0 to 255
16
+
--items <ITEMS> The number of items to show. Values range from 0 to 255. This includes errors and warnings to display. By default only errors are shown. Use --show-warnings to include warnings
17
17
--show-warnings Flag to include warnings in the output
18
-
--file-filter <FILE_FILTER> The file (if any) to filter on. Example: --file-filter main.rs
19
-
-h, --help Print help information
18
+
--file-filter <FILE_FILTER> The file (if any) to filter on. Matches the file at the end of the path so you don't have to specify a full path. Example: --file-filter main.rs
19
+
-h, --help Print help information (use `--help` for more detail)
20
20
-V, --version Print version information
21
21
```
22
22
23
23
Cargo output should be passed to Quiet through the following format:
Also look at the [qcompile](https://github.com/ssanj/quiet/blob/main/qcompile), [qcompile-test](https://github.com/ssanj/quiet/blob/main/qcompile-test) and [qrun-test](https://github.com/ssanj/quiet/blob/main/qrun-test) sample scripts in this repository.
49
48
50
-
## Building
49
+
## Installation
50
+
51
+
### Building from source
51
52
52
53
Build Quiet with:
53
54
54
55
```
55
56
cargo build --release
56
57
```
57
58
59
+
Then copy `target/release/quiet` to a directory on your PATH.
60
+
61
+
62
+
### Downloading a release
63
+
64
+
Download the latest release for your platform from the [GitHub releases page](https://github.com/ssanj/quiet/releases).
0 commit comments