From b06a821f2931bf3cfd7f85bc0945541849a4af47 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Tue, 9 Jul 2024 19:43:43 +0200 Subject: [PATCH] docs(cli): add crate level documentation but I'm lazy --- members/libpt-cli/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/members/libpt-cli/src/lib.rs b/members/libpt-cli/src/lib.rs index 7ffceab..965f94e 100644 --- a/members/libpt-cli/src/lib.rs +++ b/members/libpt-cli/src/lib.rs @@ -1,3 +1,5 @@ +//! This module bundles a lot of good CLI tools, and adds some of it's own, to make development of +//! CLI apps easier and more ergonomic. #![warn(clippy::pedantic, clippy::style, clippy::nursery)] pub mod args; pub mod printing;