[position] Rename the board crate → chessfriend_position in Cargo.toml

Rename the crate, but don't move any files.
This commit is contained in:
Eryn Wells 2024-01-28 09:40:45 -08:00
parent b002442b42
commit 76ac719418
3 changed files with 3 additions and 4 deletions

View file

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

View file

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

View file

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