[chessfriend] Empty crate

The idea for this crate is that it'll be the entry point for interacting with
the chess engine.
This commit is contained in:
Eryn Wells 2025-06-16 19:29:57 -07:00
parent 4650f88e0a
commit 8dc1e859e0
4 changed files with 14 additions and 0 deletions

6
Cargo.lock generated
View file

@ -68,6 +68,12 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chessfriend"
version = "0.1.0"
dependencies = [
]
[[package]]
name = "chessfriend_bitboard"
version = "0.1.0"

View file

@ -2,6 +2,7 @@
members = [
"bitboard",
"board",
"chessfriend",
"core",
"explorer",
"moves",

5
chessfriend/Cargo.toml Normal file
View file

@ -0,0 +1,5 @@
[package]
name = "chessfriend"
version = "0.1.0"
edition = "2024"

2
chessfriend/src/lib.rs Normal file
View file

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