Skip to content

Commit

Permalink
chore(deps): update dependency rust to v1.79.0 (#34)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Boshen <boshenc@gmail.com>
  • Loading branch information
renovate[bot] and Boshen authored Jun 14, 2024
1 parent c68d7a6 commit 8c10d82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.78.0"
channel = "1.79.0"
profile = "default"
6 changes: 3 additions & 3 deletions src/cargo_command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const CARGO_REGISTRY_TOKEN: &str = "CARGO_REGISTRY_TOKEN";

pub struct CmdOutput {
pub status: ExitStatus,
pub stdout: String,
// pub stdout: String,
pub stderr: String,
}

Expand Down Expand Up @@ -68,9 +68,9 @@ impl CargoCommand {

let output = child.wait_with_output()?;

let output_stdout = String::from_utf8(output.stdout)?;
// let output_stdout = String::from_utf8(output.stdout)?;
let output_stderr = stderr_lines.join("\n");

Ok(CmdOutput { status: output.status, stdout: output_stdout, stderr: output_stderr })
Ok(CmdOutput { status: output.status, stderr: output_stderr })
}
}

0 comments on commit 8c10d82

Please sign in to comment.