mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 04:28:43 +00:00
docs: fix grammatical error (#386)
This commit is contained in:
parent
a5ffba1ffb
commit
a611b824fd
2 changed files with 11 additions and 11 deletions
|
@ -13,7 +13,7 @@ To support `binstall` maintainers must add configuration values to `Cargo.toml`
|
|||
|
||||
## Installation
|
||||
|
||||
To get started _using_ `cargo-binstall` first install the binary (either via `cargo install cargo-binstall` or by downloading a pre-compiled [release](https://github.com/cargo-bins/cargo-binstall/releases)). We recommend using the pre-compiled ones because we optimise those more than a standard source build does.
|
||||
To get started _using_ `cargo-binstall` first install the binary (either via `cargo install cargo-binstall` or by downloading a pre-compiled [release](https://github.com/cargo-bins/cargo-binstall/releases)). We recommend using the pre-compiled ones because we optimize those more than a standard source build does.
|
||||
|
||||
| OS | Arch | URL |
|
||||
| ------- | ------- | ------------------------------------------------------------ |
|
||||
|
@ -71,9 +71,9 @@ $ cargo binstall broot --pkg-url="https://github.com/Canop/broot/releases/downlo
|
|||
and often putting together actual _packages_ is overkill.
|
||||
- Why use the cargo manifest?
|
||||
- Crates already have these, and they already contain a significant portion of the required information.
|
||||
Also there's this great and woefully underused (imo) `[package.metadata]` field.
|
||||
Also, there's this great and woefully underused (IMO) `[package.metadata]` field.
|
||||
- Is this secure?
|
||||
- Yes and also no? We're not (yet? [#1](https://github.com/cargo-bins/cargo-binstall/issues/1)) doing anything to verify the CI binaries are produced by the right person / organisation.
|
||||
- Yes and also no? We're not (yet? [#1](https://github.com/cargo-bins/cargo-binstall/issues/1)) doing anything to verify the CI binaries are produced by the right person/organization.
|
||||
However, we're pulling data from crates.io and the cargo manifest, both of which are _already_ trusted entities, and this is
|
||||
functionally a replacement for `curl ... | bash` or `wget`-ing the same files, so, things can be improved but it's also fairly moot
|
||||
- What do the error codes mean?
|
||||
|
@ -83,4 +83,4 @@ $ cargo binstall broot --pkg-url="https://github.com/Canop/broot/releases/downlo
|
|||
|
||||
---
|
||||
|
||||
If you have ideas / contributions or anything is not working the way you expect (in which case, please include an output with `--log-level debug`) and feel free to open an issue or PR.
|
||||
If you have ideas/contributions or anything is not working the way you expect (in which case, please include an output with `--log-level debug`) and feel free to open an issue or PR.
|
||||
|
|
14
SUPPORT.md
14
SUPPORT.md
|
@ -25,14 +25,14 @@ With the following configuration keys:
|
|||
|
||||
`pkg-url` and `bin-dir` are templated to support different names for different versions / architectures / etc.
|
||||
Template variables use the format `{ VAR }` where `VAR` is the name of the variable, with the following variables available:
|
||||
- `name` is the name of the crate / package
|
||||
- `name` is the name of the crate/package
|
||||
- `version` is the crate version (per `--version` and the crate manifest)
|
||||
- `repo` is the repository linked in `Cargo.toml`
|
||||
- `bin` is the name of a specific binary, inferred from the crate configuration
|
||||
- `target` is the rust target name (defaults to your architecture, but can be overridden using the `--target` command line option if required()
|
||||
- `archive-format` is the filename extension of the package archive format
|
||||
- `binary-ext` is the string `.exe` if the `target` is for Windows, or the empty string otherwise
|
||||
- `format` is a soft-deprecated alias for `archive-format` in `pkg-url`, and for `binary-ext` in `bin-dir`; in the future this may warn at install time.
|
||||
- `format` is a soft-deprecated alias for `archive-format` in `pkg-url`, and alias for `binary-ext` in `bin-dir`; in the future, this may warn at install time.
|
||||
|
||||
`pkg-url`, `pkg-fmt` and `bin-dir` can be overridden on a per-target basis if required, for example, if your `x86_64-pc-windows-msvc` builds use `zip` archives this could be set via:
|
||||
|
||||
|
@ -43,7 +43,7 @@ pkg-fmt = "zip"
|
|||
|
||||
### Defaults
|
||||
|
||||
By default, `binstall` will try all supported package format and would have `bin-dir` set to
|
||||
By default, `binstall` will try all supported package formats and would have `bin-dir` set to
|
||||
`"{ name }-{ target }-v{ version }/{ bin }{ binary-ext }"` (where `bin` is the cargo binary name and
|
||||
`binary-ext` is `.exe` on windows and empty on other platforms).
|
||||
|
||||
|
@ -52,7 +52,7 @@ files are not overwritten when manually executing `tar -xvf ...`).
|
|||
|
||||
The default value for `pkg-url` will depend on the repository of the package.
|
||||
|
||||
It is setup to work with github releases, gitlab releases, bitbucket downloads
|
||||
It is set up to work with GitHub releases, GitLab releases, bitbucket downloads
|
||||
and source forge downloads.
|
||||
|
||||
If your package already uses any of these URLs, you shouldn't need to set anything.
|
||||
|
@ -91,7 +91,7 @@ feature of GitLab EE: it requires you to create an asset as a link with a
|
|||
|
||||
- `{ repo }/downloads/`
|
||||
|
||||
Binaries must be uploaded into the project's "Downloads" page on BitBucket.
|
||||
Binaries must be uploaded to the project's "Downloads" page on BitBucket.
|
||||
|
||||
Also note that as there are no per-release downloads, the "versionless"
|
||||
filename is not considered here.
|
||||
|
@ -126,14 +126,14 @@ For example, the default configuration (as shown above) for a crate called `radi
|
|||
|
||||
#### If the package name does not match the crate name
|
||||
|
||||
As is common with libraries / utilities (and the `radio-sx128x` example), this can be overridden by specifying the `pkg-url`:
|
||||
As is common with libraries/utilities (and the `radio-sx128x` example), this can be overridden by specifying the `pkg-url`:
|
||||
|
||||
```toml
|
||||
[package.metadata.binstall]
|
||||
pkg-url = "{ repo }/releases/download/v{ version }/sx128x-util-{ target }-v{ version }.{ archive-format }"
|
||||
```
|
||||
|
||||
Which provides a download URL of: `https://github.com/rust-iot/rust-radio-sx128x/releases/download/v0.14.1-alpha.5/sx128x-util-x86_64-unknown-linux-gnu-v0.14.1-alpha.5.tgz`
|
||||
Which provides a download URL of `https://github.com/rust-iot/rust-radio-sx128x/releases/download/v0.14.1-alpha.5/sx128x-util-x86_64-unknown-linux-gnu-v0.14.1-alpha.5.tgz`
|
||||
|
||||
|
||||
#### If the package structure differs from the default
|
||||
|
|
Loading…
Add table
Reference in a new issue