diff options
| author | kennytm <kennytm@gmail.com> | 2018-09-08 16:07:48 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-09-08 18:27:28 +0800 |
| commit | b1ef2b81b93ee53d29a0fe71934eeda52740fb1b (patch) | |
| tree | 65cc5e4052c13d75976bfda69db38281208f8e7a /src/bootstrap | |
| parent | 0b58d2d4e175d6e97325e186931851479a616789 (diff) | |
| parent | b31eaa4a080c8f1cdeb5e3730f12a0f9905dbb98 (diff) | |
| download | rust-b1ef2b81b93ee53d29a0fe71934eeda52740fb1b.tar.gz rust-b1ef2b81b93ee53d29a0fe71934eeda52740fb1b.zip | |
Rollup merge of #54050 - GabrielMajeri:fix-build-with-nightly, r=alexcrichton
Update `petgraph` dependency to 0.4.13 to fix build with nightly I wanted to build Rust from source using a local nightly compiler, but I was unable to get `bootstrap` to compile due to a naming conflict with the `find_map` function. This PR updates the `petgraph` dependency of `bootstrap` to 0.4.13, fixing the issue.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml index 57a52603804..3e91c2b3e86 100644 --- a/src/bootstrap/Cargo.toml +++ b/src/bootstrap/Cargo.toml @@ -47,7 +47,7 @@ serde_json = "1.0.2" toml = "0.4" lazy_static = "0.2" time = "0.1" -petgraph = "0.4.12" +petgraph = "0.4.13" [dev-dependencies] pretty_assertions = "0.5" |
