[explorer] Depends on core

This commit is contained in:
Eryn Wells 2024-01-24 09:15:18 -08:00
parent 7738f30e5e
commit d901be53d2
2 changed files with 3 additions and 1 deletions

View file

@ -6,6 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chessfriend_core = { path = "../core" }
board = { path = "../board" }
clap = { version = "4.4.12", features = ["derive"] }
rustyline = "13.0.0"

View file

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