Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Aug 30, 2024
1 parent 0b618f0 commit 33efaab
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/stockfish.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
use std::{
io, mem,
num::NonZeroU8,
path::PathBuf,
process::Stdio,
time::Duration,
};
use std::{io, mem, num::NonZeroU8, path::PathBuf, process::Stdio, time::Duration};

use shakmaty::uci::UciMove;
use tokio::{
io::{AsyncBufReadExt as _, AsyncWriteExt as _, BufReader, BufWriter, Lines},
process::{ChildStdin, ChildStdout},
process::{ChildStdin, ChildStdout, Command},
sync::{mpsc, oneshot},
};
use tokio::process::Command;

use crate::{
api::{Score, Work},
Expand Down

0 comments on commit 33efaab

Please sign in to comment.