Skip to content

Commit

Permalink
docs: Add git
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Blackman committed Oct 4, 2023
1 parent ebba9c4 commit a97993c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ cargo-nextest = { version = "0.9.57", locked = true }
| locked | `Boolean` | false | A parameter when set to `true` runs `cargo install` with the [`--locked`](https://doc.rust-lang.org/cargo/commands/cargo-install.html#dealing-with-the-lockfile) parameter. |
| features | `Vec<String>` | false | An array of crate features to enable. |
| default-features | `Boolean` | false | When set to `false`, disables all default features. |
| git | String | false | A git URL to install from rather than from crates.io. This will also be used by Binstall to look up Cargo manifist if Binstall is available. |
| branch | String | false | A git branch to install from when `git` is set. This takes priority over `tag` and `rev` |
| tag | String | false | A git tag to install from when `git` is set. `branch` will take priority if set, and takes priority over `rev`. |
| rev | String | false | A git revision to install from when `git` is set. `branch` and `tag` will take priority if set. |

If you're a fan of prebuilt binaries and fast downloads, run-bin will use [`cargo-binstall`](https://github.com/cargo-bins/cargo-binstall) if it's installed globally, or configured within `[package.metadata.bin]`, rather than building tools from source.

Expand Down

0 comments on commit a97993c

Please sign in to comment.