Skip to content

Commit

Permalink
refac(*): change repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
a8m committed Oct 14, 2015
1 parent 2028ee7 commit 2431985
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "pb"
name = "pbr"
version = "0.0.1"
authors = ["Ariel Mashraki <ariel@mashraki.co.il>"]
description = "Console progress bar for Rust"
documentation = ""
repository = "https://github.com/a8m/pb"
documentation = "https://github.com/a8m/pbr"
repository = "https://github.com/a8m/pbr"
keywords = ["cli", "progress"]
license = "MIT"

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Console progress bar for Rust

Console progress bar for Rust Inspired from [pb.go](github.com/cheggaaa/pb), support and
Console progress bar for Rust Inspired from [pb](http://github.com/cheggaaa/pb), support and
tested on MacOS and Linux(should work on Windows too, but not tested yet).

### Examples
1. simple example

```rust
extern crate pb;
extern crate pbr;

use pb::ProgressBar;
use pbr::ProgressBar;
use std::thread;

fn main() {
Expand All @@ -26,11 +26,11 @@ fn main() {
2. Broadcast writing(simple file copying)

```rust
extern crate pb;
extern crate pbr;

use std::io::copy;
use std::fs::{self, File};
use pb::{ProgressBar, Units};
use pbr::{ProgressBar, Units};

fn main() {
let fname = "/usr/share/dict/words";
Expand Down

0 comments on commit 2431985

Please sign in to comment.