Files
yubikey.rs/cli/src/lib.rs
T
Tony Arcieri (iqlusion) 224d346f09 yubikey-cli v0.4.0 (#284)
2021-07-12 14:33:51 -07:00

14 lines
381 B
Rust

//! `yubikey` command-line utility.
//!
//! The goal of this tool is to provide functionality similar to `yubico-piv-tool`
//! but implemented in pure Rust.
//!
//! It also serves as a demonstration/example of how to use the `yubikey` crate.
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#[macro_use]
pub mod terminal;
pub mod commands;