From 32100b9553169c8553bfa360221f7fe4845fcb0b Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 24 Jan 2024 08:34:23 -0800 Subject: [PATCH] [bitboard] Make an empty chess_bitboard crate This crate lives in bitboard/ --- Cargo.toml | 1 + bitboard/Cargo.toml | 9 +++++++++ bitboard/src/lib.rs | 1 + 3 files changed, 11 insertions(+) create mode 100644 bitboard/Cargo.toml create mode 100644 bitboard/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index 0ecbba5..a5661d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ members = [ "board", + "chess_bitboard", "chess_core", "explorer", ] diff --git a/bitboard/Cargo.toml b/bitboard/Cargo.toml new file mode 100644 index 0000000..0670e94 --- /dev/null +++ b/bitboard/Cargo.toml @@ -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" } diff --git a/bitboard/src/lib.rs b/bitboard/src/lib.rs new file mode 100644 index 0000000..8aa971d --- /dev/null +++ b/bitboard/src/lib.rs @@ -0,0 +1 @@ +// Eryn Wells