-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid recommending crates.io versions (#529)
- Loading branch information
1 parent
b5046c8
commit 15544db
Showing
1 changed file
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,19 +24,11 @@ name = "my_project" | |
version = "0.1.0" | ||
authors = ["Your Name <[email protected]>"] | ||
|
||
[dependencies] | ||
timely = "0.12.0" | ||
differential-dataflow = "0.12.0" | ||
``` | ||
|
||
You should only need to add those last two lines there, which bring in dependencies on both [timely dataflow](https://github.com/TimelyDataflow/timely-dataflow) and [differential dataflow](https://github.com/TimelyDataflow/differential-dataflow). We will be using both of those. | ||
|
||
If you would like to point at the most current code release, hosted on github, you can replace the dependencies with: | ||
|
||
```toml | ||
[dependencies] | ||
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow" } | ||
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow" } | ||
``` | ||
|
||
You should only need to add those last two lines there, which bring in dependencies on both [timely dataflow](https://github.com/TimelyDataflow/timely-dataflow) and [differential dataflow](https://github.com/TimelyDataflow/differential-dataflow). We will be using both of those. | ||
|
||
You should now be ready to go. Code examples should mostly work, and you should complain (or [file an issue](https://github.com/TimelyDataflow/differential-dataflow/issues)) if they do not! |