From 3fd04a695d6f7b8c57ceb961663773c6adc814e7 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Thu, 27 Jun 2024 22:33:12 +0200 Subject: [PATCH] feat(cli): add cli crate export to libpt --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 02b30f7..2c85a70 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,9 +6,12 @@ //! `pt` is a project consisting of multiple smaller crates, all bundled together in this //! "main crate". Most crates will only show up if you activate their feature. #[cfg_attr(docsrs, doc(cfg(feature = "full")))] + #[cfg(feature = "bintols")] pub use libpt_bintols as bintols; #[cfg(feature = "core")] pub use libpt_core as core; #[cfg(feature = "log")] pub use libpt_log as log; +#[cfg(feature = "cli")] +pub use libpt_cli as cli;