[explorer] Depends on core
This commit is contained in:
parent
7738f30e5e
commit
d901be53d2
2 changed files with 3 additions and 1 deletions
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue