From efec20a17e9749b4e9096cd320a4fb04a51bbd28 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Fri, 4 Aug 2023 12:41:07 +0100 Subject: [PATCH] chore: Hide the `show_ssa` and `show_brillig` flags (#2171) chore: hide the `show_ssa` and `show_brillig` flags --- crates/noirc_driver/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/noirc_driver/src/lib.rs b/crates/noirc_driver/src/lib.rs index 9a1cc8a534d..c624dda2fce 100644 --- a/crates/noirc_driver/src/lib.rs +++ b/crates/noirc_driver/src/lib.rs @@ -25,10 +25,10 @@ pub use program::CompiledProgram; #[derive(Args, Clone, Debug, Default, Serialize, Deserialize)] pub struct CompileOptions { /// Emit debug information for the intermediate SSA IR - #[arg(long)] + #[arg(long, hide = true)] pub show_ssa: bool, - #[arg(long)] + #[arg(long, hide = true)] pub show_brillig: bool, /// Display the ACIR for compiled circuit