Skip to content

Commit

Permalink
Avoid recommending crates.io versions (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry authored Oct 26, 2024
1 parent b5046c8 commit 15544db
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions mdbook/src/chapter_0/chapter_0_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

0 comments on commit 15544db

Please sign in to comment.