Manages ~/.config/<app>/credentials
.
```rust use credent::{ cli::CredentialsCliReader, fs::{model::AppName, CredentialsFile, CredentialsFileStorer}, model::Credentials, };
/// Application name const CREDENT: AppName<'_> = AppName("credent");
fn main() -> Result<(), Box
CredentialsFileStorer::<Credentials>::store(CREDENT, &credentials).await?;
println!(
"credentials written to: {}",
CredentialsFile::<Credentials>::path(CREDENT)?.display()
);
Result::<(), Box<dyn std::error::Error>>::Ok(())
})
} ```
More sample code can be seen in the examples.
cargo run --example simple
cargo run --example demo
cargo run --example profiles
cargo run --example profiles -- --profile development
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.