Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tooling/nargo_cli/src/cli/compile_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

// No specific tickrate, max debounce time 1 seconds
let mut debouncer = new_debouncer(Duration::from_secs(1), None, tx)?;

Check warning on line 67 in tooling/nargo_cli/src/cli/compile_cmd.rs

View workflow job for this annotation

GitHub Actions / Code

Unknown word (tickrate)
// Add a path to be watched. All files and directories at that path and
// below will be monitored for changes.
debouncer.watcher().watch(&workspace.root_dir, RecursiveMode::Recursive)?;
Expand Down Expand Up @@ -321,6 +321,7 @@
use nargo::ops::compile_program;
use nargo_toml::PackageSelection;
use noirc_driver::{CompileOptions, CrateName};
use rayon::iter::{IntoParallelRefIterator, ParallelIterator};

use crate::cli::test_cmd::formatters::diagnostic_to_string;
use crate::cli::{
Expand Down Expand Up @@ -393,7 +394,7 @@

assert!(!test_workspaces.is_empty(), "should find some test workspaces");

test_workspaces.iter().for_each(|workspace| {
test_workspaces.par_iter().for_each(|workspace| {
let (file_manager, parsed_files) = parse_workspace(workspace);
let binary_packages = workspace.into_iter().filter(|package| package.is_binary());

Expand Down
Loading