topological-sort 0.0.1

Performs topological sorting.
# topological-sort-rs [![Build Status]https://travis-ci.org/gifnksm/topological-sort-rs.svg]https://travis-ci.org/gifnksm/topological-sort-rs

Performs topological sorting.

[Documentation](http://gifnksm.github.io/topological-sort-rs)

## How to use?

Add this to your `Cargo.toml`:

```toml
[dependencies]
topological-sort = "*"
```

and this to your crate root:

```rust
extern crate "topological-sort" as tsort;
```