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"