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 87ad0f7 commit baa5e10Copy full SHA for baa5e10
rewatch/src/build/compile.rs
@@ -495,7 +495,7 @@ pub fn compiler_args(
495
.collect()
496
};
497
498
- Ok(vec![
+ Ok([
499
base_args,
500
read_cmi_args,
501
// 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