* Initial commit The client is currently only capable of registering for play * Switch to serde for json serialization * Parse all JSON messages Or rather all messages sent in the game * Switch to rust nightly for serde This mainly solves the whole json parsing problem reasonably well * Move move logic to snake module * Add util functions * Improve error handling in main * Implement utility functions on map struct And keep those that do not deal with the map in the util module * Refactor and improve the maputils * Add test cases to maputil functions Also fix the snake panicking due to an incorrect unwrap * Fix snake panicking due to bad unwrap Missed staging these in the last commit... * Add logging * Add a heart beat to the client Needs some proper error handling however * Handle errors properly in main.rs Also refactor to improve readability * Print what is happening to console * Add readme file Also lock the package versions used and update to latest nightly
14 lines
286 B
TOML
14 lines
286 B
TOML
[package]
|
|
name = "snakebot_rust"
|
|
version = "0.1.0"
|
|
authors = ["Martin Barksten <martin.barksten@gmail.com>"]
|
|
|
|
[dependencies]
|
|
ws = "0.4.8"
|
|
serde = "0.7.7"
|
|
serde_json = "0.7.1"
|
|
serde_macros = "0.7.7"
|
|
quick-error = "1.1.0"
|
|
log = "0.3.6"
|
|
log4rs = { version = "0.4.6", features = ["toml"] }
|