[position] Rename the board crate -> position

Merge the 'rename-board-crate' branch to 'main'.
This commit is contained in:
Eryn Wells 2024-01-28 09:59:11 -08:00
commit 808526f8f7
28 changed files with 5 additions and 4 deletions

View file

@ -1,8 +1,9 @@
[workspace]
members = [
"board",
"bitboard",
"core",
"explorer",
"move_generator",
"position",
]
resolver = "2"

View file

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
chessfriend_core = { path = "../core" }
board = { path = "../board" }
chessfriend_position = { path = "../position" }
clap = { version = "4.4.12", features = ["derive"] }
rustyline = "13.0.0"
shlex = "1.2.0"

View file

@ -1,5 +1,5 @@
use board::{fen::ToFen, MakeMoveBuilder, MoveBuilder, Position, PositionBuilder};
use chessfriend_core::{Color, Piece, PlacedPiece, Shape, Square};
use chessfriend_position::{fen::ToFen, MakeMoveBuilder, MoveBuilder, Position, PositionBuilder};
use clap::{Arg, Command};
use rustyline::error::ReadlineError;
use rustyline::DefaultEditor;

View file

@ -1,5 +1,5 @@
[package]
name = "board"
name = "chessfriend_position"
version = "0.1.0"
edition = "2021"