From ed55eda901d5f8a27a6c2754290e5d80b8af42fa Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 28 Jan 2024 09:58:50 -0800 Subject: [PATCH] Update the Cargo.toml files --- Cargo.toml | 3 ++- explorer/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 64d2a06..16969d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [workspace] members = [ - "board", "bitboard", "core", "explorer", + "move_generator", + "position", ] resolver = "2" diff --git a/explorer/Cargo.toml b/explorer/Cargo.toml index aabf2e3..3281cf4 100644 --- a/explorer/Cargo.toml +++ b/explorer/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] chessfriend_core = { path = "../core" } -chessfriend_position = { path = "../board" } +chessfriend_position = { path = "../position" } clap = { version = "4.4.12", features = ["derive"] } rustyline = "13.0.0" shlex = "1.2.0"