Welcome to Space Invaders, a simple space-themed game playable in the terminal.
To start the game, run the following command inside the project directory:
cargo runThis game is built using Rust and relies on the following external libraries:
- crossterm - Cross-platform terminal manipulation.
- rusty_time - A simple time library for Rust.
- crossbeam - Concurrency primitives for Rust.
- kira - A multiplatform audio library for Rust.
Make sure to include these dependencies in your Cargo.toml file:
[dependencies]
crossterm = "0.27.0"
rusty_time = "0.12"
crossbeam = "0.8.3"
kira = "0.8.5"- A/D: Move the player spaceship left/right.
- Space: Shoot projectiles to destroy incoming invaders.
- Q: Quit the game.
This project is licensed under the following licenses:
- Apache License 2.0
- MIT License