From 64d03e78c2d8c0f63091a8e5068c6b184242c5e4 Mon Sep 17 00:00:00 2001 From: doug-q <141026920+doug-q@users.noreply.github.com> Date: Mon, 3 Jun 2024 09:41:07 +0100 Subject: [PATCH] feat: reexport `clap::Parser` and `clap_verbosity_flag::Level` from hugr_cli (#1146) --- hugr-cli/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hugr-cli/src/lib.rs b/hugr-cli/src/lib.rs index d7f41d695..07982b589 100644 --- a/hugr-cli/src/lib.rs +++ b/hugr-cli/src/lib.rs @@ -1,10 +1,10 @@ //! Standard command line tools, used by the hugr binary. -use clap::Parser; use clap_stdin::FileOrStdin; -use clap_verbosity_flag::Level; use clap_verbosity_flag::{InfoLevel, Verbosity}; use thiserror::Error; +/// We reexport some clap types that are used in the public API. +pub use {clap::Parser, clap_verbosity_flag::Level}; use hugr_core::{extension::ExtensionRegistry, Hugr, HugrView};