cheshire_chess 0.3.2

Terminal chess — play 10 AI personalities, 5.8M puzzles, 62 study lessons, live multiplayer, mini-games
Documentation
1
2
3
4
5
6
7
8
9
use cheshire_chess::server::start_central_server;

fn main() {
    println!("Starting Cheshire Chess game server on port 7880...");
    start_central_server();
    loop {
        std::thread::sleep(std::time::Duration::from_secs(3600));
    }
}