progressing 2.2.1

A lightweight, text-based, counting progress-bar for Rust
Documentation
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package]
name = "progressing"
# Changing this version in master and pushing to GitHub
# will lead to publishing it automatically to crates.io.
# Hence do not forget updating Unreleased in CHANGELOG.md.
version = "2.2.1" # !!!
description = "A lightweight, text-based, counting progress-bar for Rust"
edition = "2018"

authors = [
    "Parga Cacheiro, Dominic (dominic.parga@gmail.com)",
]
repository = "https://github.com/dominicparga/progressing"
readme = "README.md"
keywords = ["progressbar", "progress", "pbr", "logging", "counting"]
categories = ["command-line-interface"]
license-file = "LICENSE"


[dependencies]
env_logger = "0.6" # logging for external use, e.g. main.rs and examples
log = "0.4" # logging for internal use, e.g. lib.rs
clap = "2" # cmdline-parsing


[[example]]
name = "simple"
path = "examples/simple.rs"

[[example]]
name = "loops"
path = "examples/loops.rs"