# Ziyy - Rust based terminal styler.
Ziyy is a terminal styler that uses HTML-like tags
For information on using Ziyy, see the [Ziyy website](https://ziyy-dev.github.io).
## Building
### Prerequisites
Before building the project, ensure you have the following installed:
- **Rust**: Install Rust using [rustup](https://rustup.rs/).
- **Cargo**: Comes bundled with Rust, used for managing dependencies and building the project.
### Build Instructions
1. Clone the repository:
```bash
git clone https://github.com/ziyy-dev/ziyy-rs.git
cd ziyy-rs
```
2. Build the project:
```bash
cargo build --release
```
3. Run the project:
```bash
cargo run
```
4. Optionally, run tests to verify functionality:
```bash
cargo test
```