Update the Cargo.toml files

This commit is contained in:
Eryn Wells 2024-01-28 09:58:50 -08:00
parent 220da08727
commit ed55eda901
2 changed files with 3 additions and 2 deletions

View file

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

View file

@ -7,7 +7,7 @@ edition = "2021"
[dependencies] [dependencies]
chessfriend_core = { path = "../core" } chessfriend_core = { path = "../core" }
chessfriend_position = { 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"