6 releases

0.4.4 Mar 21, 2024
0.4.2 Feb 9, 2024
0.4.1 Nov 18, 2023
0.4.0 Sep 18, 2023
0.1.0 Dec 16, 2020

#206 in Authentication

Download history 7909/week @ 2024-01-19 6942/week @ 2024-01-26 8057/week @ 2024-02-02 13081/week @ 2024-02-09 12570/week @ 2024-02-16 16708/week @ 2024-02-23 21472/week @ 2024-03-01 21331/week @ 2024-03-08 24060/week @ 2024-03-15 22796/week @ 2024-03-22 18276/week @ 2024-03-29 14687/week @ 2024-04-05 15373/week @ 2024-04-12 14644/week @ 2024-04-19 14853/week @ 2024-04-26 16519/week @ 2024-05-03

63,911 downloads per month
Used in 37 crates (7 directly)

MIT/Apache

32KB
653 lines

cargo-credential

This package is a library to assist writing a Cargo credential helper, which provides an interface to store tokens for authorizing access to a registry such as https://crates.io/.

Documentation about credential processes may be found at https://doc.rust-lang.org/nightly/cargo/reference/credential-provider-protocol.html

Example implementations may be found at https://github.com/rust-lang/cargo/tree/master/credential

Usage

Create a Cargo project with this as a dependency:

# Add this to your Cargo.toml:

[dependencies]
cargo-credential = "0.4"

And then include a main.rs binary which implements the Credential trait, and calls the main function which will call the appropriate method of the trait:

// src/main.rs

use cargo_credential::{Credential, Error};

struct MyCredential;

impl Credential for MyCredential {
    /// implement trait methods here...
}

fn main() {
    cargo_credential::main(MyCredential);
}

lib.rs:

Helper library for writing Cargo credential providers.

A credential process should have a struct that implements the Credential trait. The main function should be called with an instance of that struct, such as:

fn main() {
    cargo_credential::main(MyCredential);
}

While in the perform function, stdin and stdout will be re-attached to the active console. This allows credential providers to be interactive if necessary.

Error handling

Error::UrlNotSupported

A credential provider may only support some registry URLs. If this is the case and an unsupported index URL is passed to the provider, it should respond with Error::UrlNotSupported. Other credential providers may be attempted by Cargo.

Error::NotFound

When attempting an Action::Get or Action::Logout, if a credential can not be found, the provider should respond with Error::NotFound. Other credential providers may be attempted by Cargo.

Error::OperationNotSupported

A credential provider might not support all operations. For example if the provider only supports Action::Get, Error::OperationNotSupported should be returned for all other requests.

Error::Other

All other errors go here. The error will be shown to the user in Cargo, including the full error chain using std::error::Error::source.

Example

Dependencies

~1–11MB
~113K SLoC