Upgrade Rust toolchain to 1.84.0 (#10533)

## Summary
Upgrade the rust toolchain to 1.84.0. This PR does not bump the MSRV.
This commit is contained in:
samypr100
2025-01-11 22:19:33 -05:00
committed by GitHub
parent 051aaa5fe5
commit 4d3809cc6b
27 changed files with 65 additions and 64 deletions
+4 -4
View File
@@ -894,10 +894,10 @@ mod tests {
fs::write(
&mocked_interpreter,
formatdoc! {r##"
formatdoc! {r"
#!/bin/bash
echo '{json}'
"##},
"},
)
.unwrap();
@@ -913,10 +913,10 @@ mod tests {
);
fs::write(
&mocked_interpreter,
formatdoc! {r##"
formatdoc! {r"
#!/bin/bash
echo '{}'
"##, json.replace("3.12", "3.13")},
", json.replace("3.12", "3.13")},
)
.unwrap();
let interpreter = Interpreter::query(&mocked_interpreter, &cache).unwrap();