We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c766130 commit 4e63942Copy full SHA for 4e63942
rewatch/src/build/compile.rs
@@ -496,7 +496,7 @@ pub fn compiler_args(
496
.collect()
497
};
498
499
- Ok(vec![
+ Ok([
500
base_args,
501
read_cmi_args,
502
// vec!["-warn-error".to_string(), "A".to_string()],
rewatch/src/mcp.rs
@@ -76,8 +76,7 @@ impl Router for RewatchMcp {
76
}
77
78
other => Err(mcp_spec::handler::ToolError::NotFound(format!(
79
- "Unknown tool: {}",
80
- other
+ "Unknown tool: {other}"
81
))),
82
83
})
0 commit comments