Skip to content

Commit 15544db

Browse files
Avoid recommending crates.io versions (#529)
1 parent b5046c8 commit 15544db

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

mdbook/src/chapter_0/chapter_0_0.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,11 @@ name = "my_project"
2424
version = "0.1.0"
2525
authors = ["Your Name <your_name@you.ch>"]
2626

27-
[dependencies]
28-
timely = "0.12.0"
29-
differential-dataflow = "0.12.0"
30-
```
31-
32-
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.
33-
34-
If you would like to point at the most current code release, hosted on github, you can replace the dependencies with:
35-
36-
```toml
3727
[dependencies]
3828
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow" }
3929
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow" }
4030
```
4131

32+
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.
33+
4234
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!

0 commit comments

Comments
 (0)