From 8dc1e859e04096bf407edce68c2d5eda186f6906 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 16 Jun 2025 19:29:57 -0700 Subject: [PATCH] [chessfriend] Empty crate The idea for this crate is that it'll be the entry point for interacting with the chess engine. --- Cargo.lock | 6 ++++++ Cargo.toml | 1 + chessfriend/Cargo.toml | 5 +++++ chessfriend/src/lib.rs | 2 ++ 4 files changed, 14 insertions(+) create mode 100644 chessfriend/Cargo.toml create mode 100644 chessfriend/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index c6c6f1f..936cbaa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index b0eb007..49b9a15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ members = [ "bitboard", "board", + "chessfriend", "core", "explorer", "moves", diff --git a/chessfriend/Cargo.toml b/chessfriend/Cargo.toml new file mode 100644 index 0000000..25bc79e --- /dev/null +++ b/chessfriend/Cargo.toml @@ -0,0 +1,5 @@ +[package] +name = "chessfriend" +version = "0.1.0" +edition = "2024" + diff --git a/chessfriend/src/lib.rs b/chessfriend/src/lib.rs new file mode 100644 index 0000000..4e01ba5 --- /dev/null +++ b/chessfriend/src/lib.rs @@ -0,0 +1,2 @@ +// Eryn Wells +