ferrule-config 0.2.0-alpha

Connection registry, profiles, and the layered credential-resolution stack (CLI flag / env / OS keyring / file via hasp) for the ferrule database CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `ferrule-config` — Connection registry, credential resolution, and profiles.

pub mod bookmarks;
pub mod credentials;
pub mod error;
pub mod parse;
pub mod profile;
pub mod registry;

pub use bookmarks::{Bookmark, BookmarkStore};
pub use credentials::resolve_password_stack;
pub use profile::{
    CacheConfig, ConnectionProfile, DefaultProfile, GlobalConfig, HistoryConfig, SlowLogConfig,
};
pub use registry::{ConnectionEntry, ConnectionRegistry};