# Arkanoid TUI [![Build](https://github.com/keepsimple1/mdns-sd/actions/workflows/build.yml/badge.svg)](https://github.com/JustPretender/arkanoid-tui/actions)[![Rust version: 1.74+](https://img.shields.io/badge/rust%20version-1.74-orange)](https://blog.rust-lang.org/2023/11/16/Rust-1.74.0.html) This is a simple _Arkanoid_ game built with [Ratatui](https://ratatui.rs/). ## Preview ![Preview](./static/game.jpg) ## Installation ### Cargo * Install the rust toolchain in order to have cargo installed by following [this](https://www.rust-lang.org/tools/install) guide. * run `cargo install arkanoid-tui` ### Debugging Debugging and tracing can be enabled by turning the *debug* feature on: ``` RUST_LOG=debug cargo run -F debug -- --tracing ``` The output will be available in `tracing.log` ## License Licensed under either of * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) at your option. ## Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. See [CONTRIBUTING.md](CONTRIBUTING.md). **All feedback and contributions are very welcome** ## Acknowledgments * [Rataui-snake](https://github.com/kriskw1999/ratatui-snake)