diff --git a/README.md b/README.md index 62b4788..7b6ed2f 100644 --- a/README.md +++ b/README.md @@ -53,10 +53,10 @@ build = "build.rs" # LALRPOP preprocessing # Add a dependency on the LALRPOP runtime library: [dependencies.lalrpop-util] -version = "0.7.0" +version = "0.9.0" [build-dependencies.lalrpop] -version = "0.7.0" +version = "0.9.0" ``` And create a `build.rs` file that looks like: diff --git a/doc/calculator/Cargo.toml b/doc/calculator/Cargo.toml index 50b7eee..658e7ad 100644 --- a/doc/calculator/Cargo.toml +++ b/doc/calculator/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "calculator" -version = "0.7.0" +version = "0.9.0" authors = ["Niko Matsakis "] build = "build.rs" # <-- We added this and everything after! [build-dependencies] -version = "0.7.0" +version = "0.9.0" [dependencies] -version = "0.7.0" +version = "0.9.0" diff --git a/doc/tutorial.md b/doc/tutorial.md index fb543af..0ba0eab 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -147,15 +147,15 @@ look something like: ``` [package] name = "calculator" -version = "0.7.0" +version = "0.9.0" authors = ["Niko Matsakis "] build = "build.rs" # <-- We added this and everything after! [build-dependencies] -lalrpop = "0.7.0" +version = "0.9.0" [dependencies] -lalrpop-util = "0.7.0" +version = "0.9.0" ``` Adding a `build` directive to the `[package]` section tells Cargo to