rust_fish_chess_engine 0.1.1

A chess engine and functionality built in Rust. Built for the intention of incorporating it into my Svelte chess project through WASM.
Documentation
[dependencies]

[lib]
name = "rust_fish_chess_engine"
path = "src/lib.rs"

[package]
authors = ["Lachlan Hislop lachie.hislop@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "A chess engine and functionality built in Rust. Built for the intention of incorporating it into my Svelte chess project through WASM."
documentation = "https://docs.rs/rust_fish_chess_engine"
edition = "2021"
license = "MIT"
name = "rust_fish_chess_engine"
readme = "README.md"
repository = "https://github.com/Lenard-0/rust_fish_chess_engine"
version = "0.1.1"

[[test]]
name = "endgame_tests"
path = "tests/endgame_tests.rs"

[[test]]
name = "test_bishop_moves"
path = "tests/test_bishop_moves.rs"

[[test]]
name = "test_check"
path = "tests/test_check.rs"

[[test]]
name = "test_error_move_cases"
path = "tests/test_error_move_cases.rs"

[[test]]
name = "test_king_moves"
path = "tests/test_king_moves.rs"

[[test]]
name = "test_knight_moves"
path = "tests/test_knight_moves.rs"

[[test]]
name = "test_pawn_moves"
path = "tests/test_pawn_moves.rs"

[[test]]
name = "test_queen_moves"
path = "tests/test_queen_moves.rs"

[[test]]
name = "test_rook_moves"
path = "tests/test_rook_moves.rs"