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: crates/cargo-codspeed/README.md
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,27 @@ A cargo subcommand for running CodSpeed on your project
11
11
12
12
## Installation
13
13
14
+
### With `cargo-binstall`(recommended)
15
+
16
+
[`cargo-binstall`](https://github.com/cargo-bins/cargo-binstall) enables you to install binaries directly without having to build from the source(with `cargo install`) every time.
17
+
18
+
If you don't have installed yet, you can install it with:
19
+
14
20
```bash
15
-
cargo install cargo-codspeed
21
+
cargo install cargo-binstall
22
+
```
23
+
24
+
You can then install `cargo-codspeed` with:
25
+
26
+
```bash
27
+
cargo binstall cargo-codspeed
16
28
```
17
29
18
-
Feature `vendored-openssl` can be used to statically link with openssl with `cargo install cargo-codspeed --features vendored-openssl`.
30
+
### With `cargo`
31
+
32
+
```bash
33
+
cargo install cargo-codspeed
34
+
```
19
35
20
36
## Usage
21
37
@@ -30,3 +46,7 @@ Options:
30
46
-h, --help Print help information
31
47
-V, --version Print version information
32
48
```
49
+
50
+
## Advanced Usage
51
+
52
+
The `vendored-openssl` feature can be used to statically link with openssl with `cargo install cargo-codspeed --features vendored-openssl`.
0 commit comments