[bitboard] Make an empty chess_bitboard crate

This crate lives in bitboard/
This commit is contained in:
Eryn Wells 2024-01-24 08:34:23 -08:00
parent eab30cc33b
commit 32100b9553
3 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@
members = [
"board",
"chess_bitboard",
"chess_core",
"explorer",
]

9
bitboard/Cargo.toml Normal file
View 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
View file

@ -0,0 +1 @@
// Eryn Wells <eryn@erynwells.me>