Skip to content

Commit

Permalink
chore!: remove codegen-verifier command
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed May 10, 2024
1 parent a22d895 commit 96b58f7
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 261 deletions.
71 changes: 0 additions & 71 deletions noir/noir-repo/tooling/backend_interface/src/cli/contract.rs

This file was deleted.

2 changes: 0 additions & 2 deletions noir/noir-repo/tooling/backend_interface/src/cli/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Reference: https://github.com/AztecProtocol/aztec-packages/blob/master/barretenberg/cpp/src/barretenberg/bb/main.cpp

mod contract;
mod gates;
mod proof_as_fields;
mod prove;
Expand All @@ -9,7 +8,6 @@ mod version;
mod vk_as_fields;
mod write_vk;

pub(crate) use contract::ContractCommand;
pub(crate) use gates::GatesCommand;
pub(crate) use proof_as_fields::ProofAsFieldsCommand;
pub(crate) use prove::ProveCommand;
Expand Down
1 change: 0 additions & 1 deletion noir/noir-repo/tooling/backend_interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use std::path::PathBuf;
mod cli;
mod download;
mod proof_system;
mod smart_contract;

pub use bb_abstraction_leaks::ACVM_BACKEND_BARRETENBERG;
use bb_abstraction_leaks::BB_VERSION;
Expand Down
55 changes: 0 additions & 55 deletions noir/noir-repo/tooling/backend_interface/src/smart_contract.rs

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

use clap::{Parser, Subcommand};

mod contract_cmd;
mod gates_cmd;
mod prove_cmd;
mod verify_cmd;
Expand All @@ -20,7 +19,6 @@ struct BackendCli {

#[derive(Subcommand, Clone, Debug)]
enum BackendCommand {
Contract(contract_cmd::ContractCommand),
Gates(gates_cmd::GatesCommand),
Prove(prove_cmd::ProveCommand),
Verify(verify_cmd::VerifyCommand),
Expand All @@ -32,7 +30,6 @@ fn main() {
let BackendCli { command } = BackendCli::parse();

match command {
BackendCommand::Contract(args) => contract_cmd::run(args),
BackendCommand::Gates(args) => gates_cmd::run(args),
BackendCommand::Prove(args) => prove_cmd::run(args),
BackendCommand::Verify(args) => verify_cmd::run(args),
Expand Down
68 changes: 0 additions & 68 deletions noir/noir-repo/tooling/nargo_cli/src/cli/codegen_verifier_cmd.rs

This file was deleted.

3 changes: 0 additions & 3 deletions noir/noir-repo/tooling/nargo_cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ mod fs;

mod backend_cmd;
mod check_cmd;
mod codegen_verifier_cmd;
mod compile_cmd;
mod dap_cmd;
mod debug_cmd;
Expand Down Expand Up @@ -63,7 +62,6 @@ enum NargoCommand {
Backend(backend_cmd::BackendCommand),
Check(check_cmd::CheckCommand),
Fmt(fmt_cmd::FormatCommand),
CodegenVerifier(codegen_verifier_cmd::CodegenVerifierCommand),
#[command(alias = "build")]
Compile(compile_cmd::CompileCommand),
New(new_cmd::NewCommand),
Expand Down Expand Up @@ -118,7 +116,6 @@ pub(crate) fn start_cli() -> eyre::Result<()> {
NargoCommand::Verify(args) => verify_cmd::run(&backend, args, config),
NargoCommand::Test(args) => test_cmd::run(args, config),
NargoCommand::Info(args) => info_cmd::run(&backend, args, config),
NargoCommand::CodegenVerifier(args) => codegen_verifier_cmd::run(&backend, args, config),
NargoCommand::Backend(args) => backend_cmd::run(args),
NargoCommand::Lsp(args) => lsp_cmd::run(args, config),
NargoCommand::Dap(args) => dap_cmd::run(args, config),
Expand Down
37 changes: 0 additions & 37 deletions noir/noir-repo/tooling/nargo_cli/tests/codegen-verifier.rs

This file was deleted.

0 comments on commit 96b58f7

Please sign in to comment.