Skip to content

Commit

Permalink
Fix #9.
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Nov 22, 2014
1 parent 3011952 commit cb12997
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,24 +95,27 @@ cd rust-csv
cargo test
```

You can also add `rust-csv` as a dependency to your project's `Cargo.toml`:
You can also add `csv` as a dependency to your project's `Cargo.toml` using
this git repo:

```toml
[dependencies.rust-csv]
[dependencies.csv]
git = "git:https://github.com/BurntSushi/rust-csv"
```

Or, you can use `csv` from [crates.io](https://crates.io/crates/csv):

### Benchmarks
```toml
[dependencies]
csv = "*"
```

There are some rough benchmarks (compared with Go) here:
https://github.com/BurntSushi/rust-csv/tree/master/bench
For now, I'd probably recommend that you use the git repository while we're all
still tracking nightly, but I'll try to keep the `crates.io` package updated.


### Related work
### Benchmarks

The only other one I know is
[arjantop/rust-tabular](https://github.com/arjantop/rust-tabular),
which does not support the `Encoder` or `Decoder` API. However, it does support
parsing fixed-width tables.
There are some rough benchmarks (compared with Go) here:
https://github.com/BurntSushi/rust-csv/tree/master/bench

0 comments on commit cb12997

Please sign in to comment.