-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added more features to progbar (#9)
- Loading branch information
Showing
5 changed files
with
181 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zung" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Ishaan Goel <[email protected]>"] | ||
description = "A monolith of rust projects" | ||
|
@@ -14,6 +14,6 @@ members = ["zung_mini"] | |
resolver = "2" | ||
|
||
[dependencies] | ||
zung_mini = "0.1.2" | ||
zung_mini = { version = "0.2.0", path = "./zung_mini" } | ||
anstyle = "1.0.8" | ||
clap = { version = "4.5.18", features = ["derive"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zung_mini" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Ishaan Goel <[email protected]>"] | ||
description = "Mini rust projects that target specific features of rust" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.