solo2 0.2.2

Library and CLI for the SoloKeys Solo 2 security key
Documentation
1
2
3
4
5
6
7
//! Error and Result types.
//!
//! Currently we just use `anyhow`. In time, library errors should be modeled properly,
//! and implemented e.g. using `thiserror`.
//!
pub type Error = anyhow::Error;
pub type Result<T> = anyhow::Result<T>;