From c0c462c4b1e686816e300c504c4dee163af10805 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Mon, 11 Sep 2023 15:35:08 +0100 Subject: [PATCH] feat(nargo): Allow installing custom backends from the CLI (#2632) --- crates/nargo_cli/src/cli/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/nargo_cli/src/cli/mod.rs b/crates/nargo_cli/src/cli/mod.rs index e33ae21cea7..56d36095518 100644 --- a/crates/nargo_cli/src/cli/mod.rs +++ b/crates/nargo_cli/src/cli/mod.rs @@ -50,7 +50,6 @@ pub(crate) struct NargoConfig { #[non_exhaustive] #[derive(Subcommand, Clone, Debug)] enum NargoCommand { - #[command(hide = true)] // Hidden while dynamic backends feature is being built out. Backend(backend_cmd::BackendCommand), Check(check_cmd::CheckCommand), CodegenVerifier(codegen_verifier_cmd::CodegenVerifierCommand),