From a97993c9abb74259084f37857a40c3f6b2dad576 Mon Sep 17 00:00:00 2001 From: Dustin Blackman Date: Tue, 3 Oct 2023 20:46:49 -0400 Subject: [PATCH] docs: Add git --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 61e8fa0..649fc11 100644 --- a/README.md +++ b/README.md @@ -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` | 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.