From de4986eb74b28b2e1065fa6b413d02457ddf61b0 Mon Sep 17 00:00:00 2001 From: jfecher Date: Thu, 14 Mar 2024 11:18:23 -0500 Subject: [PATCH] fix: Make `nargo` the default binary for cargo run (#4554) # Description ## Problem\* The acvm binary was added recently which prevents developers from using `cargo run` without an additional `--bin nargo` to specify the nargo binary ## Summary\* Sets the default binary to run to `nargo` for `cargo run`. ## Additional Context ## Documentation\* Check one: - [x] No documentation needed. - [ ] Documentation included in this PR. - [ ] **[Exceptional Case]** Documentation to be submitted in a separate PR. # PR Checklist\* - [x] I have tested the changes locally. - [x] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings. --- tooling/nargo_cli/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/tooling/nargo_cli/Cargo.toml b/tooling/nargo_cli/Cargo.toml index f92a2421b0..1629ae86ed 100644 --- a/tooling/nargo_cli/Cargo.toml +++ b/tooling/nargo_cli/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "nargo_cli" description = "Noir's package manager" +default-run = "nargo" version.workspace = true authors.workspace = true edition.workspace = true