1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#![deny(missing_debug_implementations, missing_docs)]

//! Manages `~/.config/<app>/credentials`.
//!
//! ![demo](https://raw.githubusercontent.com/azriel91/credent/main/demo.png)
//!
//! Add the following to Cargo.toml:
//!
//! ```toml
//! credent = { version = "0.4.1", features = ["backend-smol"] } # or "backend-tokio"
//! ```
//!
//! Example code:
//!
//! ```rust,ignore
//! use credent::{
//!     cli::CredentialsCliReader,
//!     fs::{model::AppName, CredentialsFile, CredentialsFileStorer},
//!     model::Credentials,
//! };
//!
//! /// Application name
//! const CREDENT: AppName<'_> = AppName("credent");
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//!     smol::run(async {
//!         let credentials = CredentialsCliReader::<Credentials>::read_from_tty().await?;
//!         println!("credentials: {}", credentials);
//!
//!         CredentialsFileStorer::<Credentials>::store(CREDENT, &credentials).await?;
//!
//!         println!(
//!             "credentials written to: {}",
//!             CredentialsFile::<Credentials>::path(CREDENT)?.display()
//!         );
//!
//!         Result::<(), Box<dyn std::error::Error>>::Ok(())
//!     })
//! }
//! ```
//!
//! More examples can be seen in the [examples].
//!
//! [examples]: https://github.com/azriel91/credent/tree/main/examples

pub use credent_cli as cli;
pub use credent_fs as fs;
pub use credent_model as model;