clingwrap 0.7.0

types and functions to implement command line programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utility types and functions for implementing command line
//! applications in Rust.

#![deny(missing_docs)]
#![deny(clippy::panic)]
#![deny(clippy::panicking_unwrap)]
#![deny(clippy::unwrap_in_result)]
#![deny(clippy::unwrap_used)]

pub mod config;
pub mod runner;
pub mod ssh;
pub mod tildepathbuf;