Skip to content

Commit ddb13cd

Browse files
committed
🔖 Version 0.1.4
1 parent aa6bf71 commit ddb13cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chess5dtools"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Adrien Burgun <adrien.burgun@orange.fr>"]
55
edition = "2018"
66

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fn main() -> std::io::Result<()> {
7878
16,
7979
std::time::Duration::new(5, 0),
8080
);
81-
if let Some((mut best, value)) = best_move {
81+
if let Some((best, value)) = best_move {
8282
println!("Best move:");
8383
println!("{:?}: {}", best.0, value);
8484
for b in &best.1 {

0 commit comments

Comments
 (0)