Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ishaan26 committed Sep 30, 2024
1 parent 25ebb62 commit 86eb6f5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions zung_mini/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
Mini rust projects that target specific features of rust

> # Disclaimer
> This library is intended for **learning purposes only** and is not production-grade. While it demonstrates core functionality for implementing a progress bar in Rust, it may lack the optimizations, testing, and features required for production use. Use at your own risk in critical applications.
## Table of Contents

- [Mini Project 1](#mini-project-1---progbar)
- [Usage](#usage)

# Mini Project 1 - ProgBar

> A Simple Progress Bar for Rust Iterators
`ProgBar` is a lightweight and customizable progress bar library for Rust iterators. It allows you to easily track the progress of any iterator in your terminal with visual feedback. Whether your iterator is bounded (has a known size) or unbounded, `ProgBar` adapts to display the progress accordingly.

## Features

- **Simple Integration**: Easily add progress bars to any iterator with minimal code changes.
- **Supports Bounded & Unbounded Iterators**: Progress can be tracked for both finite and infinite iterators.
- **Customizable Appearance**: Modify the style and delimiters of the progress bar.
- **Real-time Terminal Display**: Live updates of the progress bar in the terminal as your iterator progresses.

## Usage

See the [docs](https://docs.rs/zung_mini/0.1.2/zung_mini/progbar/index.html) for how to use this library.

0 comments on commit 86eb6f5

Please sign in to comment.