[package] name = "game_chess_server" version = "0.0.1" edition = "2021" authors = [ "Kostiantyn Wandalen ", "Volodymyr M. ", "Dmytro Kryvoruchko ", ] license = "MIT" readme = "Readme.md" documentation = "https://docs.rs/game_chess" repository = "https://github.com/obox-systems/game_chess/" homepage = "https://github.com/obox-systems/game_chess/" description = """ Chess game server implemented for educational purpose. """ categories = [ "game-development", "games" ] keywords = [ "chess", "gamedev" ] include = [ "/src", "/Cargo.toml", "/Readme.md", "/License", ] [lib] name = "game_chess_server" path = "./src/lib.rs" [[bin]] name = "game_chess_server" path = "./src/main.rs" [dependencies] rollo = "~0.8" game_chess_core = { version = "~0.0", path = "../core" }