cargo/credential/cargo-credential-1password
bors 8d7ec64354 Auto merge of #12985 - Turbo87:fix-1password-account-usage, r=ehuss
cargo-credential-1password: Add missing `--account` argument to `op signin` command

### What does this PR try to resolve?

Without this the account chooser is shown by the `op signin` command, even though the user has already specified an account via the `--account` command line argument to the `cargo-credential-1password` CLI.

Note that the `--vault` in this case does not need to be forwarded to `op`, since it is irrelevant for the `op signin` command.

### How should we test and review this PR?

- Have a 1password installation with multiple accounts
- Use `global-credential-providers = ["cargo-credential-1password --account my.1password.com"]` in the cargo config file
- Run e.g. `cargo publish`
- Notice how you are seeing an account switcher even though `--account` was used
- Apply this patch and notice that the account switcher is no longer there and the correct account is selected automatically

### Additional information

see https://rust-lang.zulipchat.com/#narrow/stream/246057-t-cargo/topic/1password.20credentials.20provider
2023-11-16 20:22:53 +00:00
..
src Auto merge of #12985 - Turbo87:fix-1password-account-usage, r=ehuss 2023-11-16 20:22:53 +00:00
Cargo.toml Bump version of cargo-credential-1password 2023-11-16 10:30:06 -08:00
LICENSE-APACHE credential: include license files in all published crates 2023-11-10 17:12:40 +01:00
LICENSE-MIT credential: include license files in all published crates 2023-11-10 17:12:40 +01:00
README.md cargo-credential-1password: Add configuration instructions 2023-11-16 18:00:49 +01:00

cargo-credential-1password

A Cargo credential provider for 1password.

Usage

cargo-credential-1password uses the 1password op CLI to store the token. You must install the op CLI from the 1password website.

Afterward you need to configure cargo to use cargo-credential-1password as the credential provider. You can do this by adding something like the following to your cargo config file:

[registry]
global-credential-providers = ["cargo-credential-1password --account my.1password.com"]

Finally, run cargo login to save your registry token in 1password.

CLI Arguments

cargo-credential-1password supports the following command-line arguments:

  • --account: The account name to use. For a list of available accounts, run op account list.
  • --vault: The vault name to use. For a list of available vaults, run op vault list.