From ddb13cdba5927b2e3380462119ea43646be59d2a Mon Sep 17 00:00:00 2001 From: Adrien Burgun Date: Sat, 28 Nov 2020 20:38:27 +0100 Subject: [PATCH] :bookmark: Version 0.1.4 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21d915b..913e72c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" [[package]] name = "chess5dtools" -version = "0.1.3" +version = "0.1.4" dependencies = [ "env_logger", "json", diff --git a/Cargo.toml b/Cargo.toml index b4c3e8a..721d4fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chess5dtools" -version = "0.1.3" +version = "0.1.4" authors = ["Adrien Burgun "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index 9a75cf9..5ff7c48 100644 --- a/src/main.rs +++ b/src/main.rs @@ -78,7 +78,7 @@ fn main() -> std::io::Result<()> { 16, std::time::Duration::new(5, 0), ); - if let Some((mut best, value)) = best_move { + if let Some((best, value)) = best_move { println!("Best move:"); println!("{:?}: {}", best.0, value); for b in &best.1 {