yubikey_cli/lib.rs
1//! `yubikey` command-line utility.
2//!
3//! The goal of this tool is to provide functionality similar to `yubico-piv-tool`
4//! but implemented in pure Rust.
5//!
6//! It also serves as a demonstration/example of how to use the `yubikey` crate.
7
8#![forbid(unsafe_code)]
9#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
10
11#[macro_use]
12pub mod terminal;
13pub mod commands;