bzr 0.1.1

A CLI for Bugzilla, inspired by gh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Credential storage backends.
//!
//! Currently provides a single backend: the OS keychain, via the
//! [`keyring`] crate. Gated behind the `keyring` Cargo feature;
//! when disabled, a stub returns clear "unsupported" errors so the
//! binary still parses keyring-backed config entries.

#[cfg(feature = "keyring")]
pub mod keyring;

#[cfg(not(feature = "keyring"))]
#[path = "keyring_stub.rs"]
pub mod keyring;