io-keyring 0.0.2

Set of I/O-free Rust coroutines and runtimes to manage keyring entries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Collection of I/O-free, resumable and composable keyring state
//! machines.
//!
//! Coroutines emit [I/O] requests that need to be processed by
//! [runtimes] in order to continue their progression.
//!
//! [I/O]: crate::io::KeyringIo
//! [runtimes]: crate::runtimes

pub mod delete;
pub mod read;
pub mod write;