[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:
parent
4650f88e0a
commit
8dc1e859e0
4 changed files with 14 additions and 0 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -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"
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
members = [
|
||||
"bitboard",
|
||||
"board",
|
||||
"chessfriend",
|
||||
"core",
|
||||
"explorer",
|
||||
"moves",
|
||||
|
|
5
chessfriend/Cargo.toml
Normal file
5
chessfriend/Cargo.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
[package]
|
||||
name = "chessfriend"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
2
chessfriend/src/lib.rs
Normal file
2
chessfriend/src/lib.rs
Normal file
|
@ -0,0 +1,2 @@
|
|||
// Eryn Wells <eryn@erynwells.me>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue