From 15544db2c7efb02fa24c2536357c1494c39d8106 Mon Sep 17 00:00:00 2001 From: Frank McSherry Date: Sat, 26 Oct 2024 15:54:29 -0400 Subject: [PATCH] Avoid recommending crates.io versions (#529) --- mdbook/src/chapter_0/chapter_0_0.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/mdbook/src/chapter_0/chapter_0_0.md b/mdbook/src/chapter_0/chapter_0_0.md index 406bb5089..f588ca1c0 100644 --- a/mdbook/src/chapter_0/chapter_0_0.md +++ b/mdbook/src/chapter_0/chapter_0_0.md @@ -24,19 +24,11 @@ name = "my_project" version = "0.1.0" authors = ["Your Name "] -[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!