[package] name = "snake_ladder" version = "0.2.0" edition = "2021" description = "A simple terminal-based implementation of Snakes and Ladders in Rust." license = "MIT" # Choose a license; common ones are MIT, Apache-2.0, or GPL-3.0. documentation = "https://docs.rs/snake_ladder" # If you have hosted documentation readme = "README.md" # Include a README file for the project # authors = ["Your Name "] # Replace with your name and email keywords = ["game", "snakes-and-ladders", "terminal-game", "rust"] categories = ["games", "command-line-utilities"] [dependencies] termcolor = "1.2" rand = "0.8.4"