[bitboard] Make an empty chess_bitboard crate
This crate lives in bitboard/
This commit is contained in:
parent
eab30cc33b
commit
32100b9553
3 changed files with 11 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
members = [
|
members = [
|
||||||
"board",
|
"board",
|
||||||
|
"chess_bitboard",
|
||||||
"chess_core",
|
"chess_core",
|
||||||
"explorer",
|
"explorer",
|
||||||
]
|
]
|
||||||
|
|
9
bitboard/Cargo.toml
Normal file
9
bitboard/Cargo.toml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[package]
|
||||||
|
name = "chess_bitboard"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
core = { path = "../core" }
|
1
bitboard/src/lib.rs
Normal file
1
bitboard/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
// Eryn Wells <eryn@erynwells.me>
|
Loading…
Add table
Add a link
Reference in a new issue