Skip to content

Commit

Permalink
chore(deps): update dependency rust to v1.83.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and Boshen committed Nov 29, 2024
1 parent 9abc34f commit 4bf1b2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion benches/benchmarks/external_process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ fn python_fibonacci(c: &mut Criterion) {
.is_ok();

if has_python3 {
let process = create_command()
let mut process = create_command()
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.spawn()
.expect("Unable to start python process");
let _ = process.wait();

let mut stdin = process.stdin.expect("Unable to get stdin for child process");
let stdout = process.stdout.expect("Unable to get stdout for child process");
Expand Down
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.82.0"
channel = "1.83.0"
profile = "default"

0 comments on commit 4bf1b2f

Please sign in to comment.