[core] Rename (once again) chess_core → chessfriend_core

This commit is contained in:
Eryn Wells 2024-01-24 08:48:19 -08:00
parent 625bfb2446
commit b0b22048a8
21 changed files with 30 additions and 30 deletions

View file

@ -4,7 +4,7 @@ use crate::{
piece::{Color, PlacedPiece, Shape},
BitBoard, Position,
};
use chess_core::Direction;
use chessfriend_core::Direction;
pub(crate) trait Sight {
fn sight_in_position(&self, position: &Position) -> BitBoard;
@ -175,7 +175,7 @@ mod tests {
mod pawn {
use crate::{sight::Sight, BitBoard};
use chess_core::Square;
use chessfriend_core::Square;
sight_test!(e4_pawn, piece!(White Pawn on E4), bitboard!(D5, F5));