Skip to content

Commit

Permalink
Modified README to include additional dependency requirement on the big
Browse files Browse the repository at this point in the history
fastutil jar.
  • Loading branch information
Pankaj Gupta committed Mar 12, 2014
1 parent 94bad2e commit 5ac2dda
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Cassovary is built using [sbt](https://github.com/sbt/sbt) and was tested last u

## Alternative for using for local projects
1. ```./sbt publish-local```
2. ```cd ../<dependant project>```
2. ```cd ../<dependent project>```
3. ```./sbt update```

## Using maven published version of library
Expand All @@ -33,6 +33,11 @@ Cassovary is published to maven central with crosspath scala versions 2.9.3 and

```libraryDependencies += "com.twitter" %% "cassovary" % "3.2.0"```

The only dependency that Cassovary uses which is not bundled with it because of its size is ```it.unimi.dsi.fastutil```.
You can add that dependency in your sbt project as follows:

```libraryDependencies += "it.unimi.dsi" % "fastutil" % "6.4.4"```

## Comparison to Other Graph Libraries
There are many excellent graph mining libraries already in existence. Most of
them have one or more of the following characteristics:
Expand Down

0 comments on commit 5ac2dda

Please sign in to comment.