c4-e5-chess 0.2.3

C4-E5 Chess is a UCI compatible chess engine based on the move generator in crate Chess. These features are provided: Parallelised iterative depthening, late move pruning, principal variant search, transposition table.
Documentation
[[bin]]
name = "c4-e5-chess"
path = "src/main.rs"

[dependencies.chess]
version = "3.2"

[dependencies.chrono]
version = "0.4"

[dependencies.hashbrown]
version = "0.14"

[dependencies.log]
features = ["release_max_level_off"]
version = "0.4"

[dependencies.rayon]
version = "1.8"

[dependencies.simple-logging]
version = "2.0"

[dependencies.timer]
version = "0.2"

[dev-dependencies.ctor]
version = "0.2"

[dev-dependencies.serial_test]
version = "3.0"

[dev-dependencies.test-case]
version = "3.0.0"

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

[package]
authors = ["Eugen Lindorfer"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["games"]
description = "C4-E5 Chess is a UCI compatible chess engine based on the move generator in crate Chess. These features are provided: Parallelised iterative depthening, late move pruning, principal variant search, transposition table."
edition = "2021"
keywords = ["game", "chess"]
license = "MIT"
name = "c4-e5-chess"
readme = "README.md"
repository = "https://github.com/TintifaxTheGreat/c4-e5-chess"
version = "0.2.3"

[profile.release]
panic = "abort"
strip = true

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

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

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