diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-09-09 22:18:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-09 22:18:14 +0200 |
| commit | 342722e584ce08b97509de73bb76d6ccc6c68423 (patch) | |
| tree | 62514217c15a544da797ecfea60d64cfd0a13307 | |
| parent | 7b0d1342b55f8780ddefc467d16f7f2c825b0f49 (diff) | |
| parent | 6c74bc951804940800da45ba5b9b3c3e5b613eb3 (diff) | |
| download | rust-342722e584ce08b97509de73bb76d6ccc6c68423.tar.gz rust-342722e584ce08b97509de73bb76d6ccc6c68423.zip | |
Rollup merge of #64320 - alexcrichton:update-patch, r=RalfJung
Update version of `rustc-std-workspace-*` crates This commit updates the version of the `rustc-std-workspace-*` crates in-tree which are used in `[patch]`. This will guarantee that Cargo will select these versions even if minor updates are published to crates.io because otherwise a newer version on crates.io would be preferred which misses the point of `[patch]`!
| -rw-r--r-- | Cargo.lock | 6 | ||||
| -rw-r--r-- | src/tools/rustc-std-workspace-alloc/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/tools/rustc-std-workspace-core/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/tools/rustc-std-workspace-std/Cargo.toml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index 1a442612385..27ee3814609 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3225,21 +3225,21 @@ checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" [[package]] name = "rustc-std-workspace-alloc" -version = "1.0.0" +version = "1.99.0" dependencies = [ "alloc", ] [[package]] name = "rustc-std-workspace-core" -version = "1.0.0" +version = "1.99.0" dependencies = [ "core", ] [[package]] name = "rustc-std-workspace-std" -version = "1.0.0" +version = "1.99.0" dependencies = [ "std", ] diff --git a/src/tools/rustc-std-workspace-alloc/Cargo.toml b/src/tools/rustc-std-workspace-alloc/Cargo.toml index ef7dc812af9..9e04b14756e 100644 --- a/src/tools/rustc-std-workspace-alloc/Cargo.toml +++ b/src/tools/rustc-std-workspace-alloc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-std-workspace-alloc" -version = "1.0.0" +version = "1.99.0" authors = ["Alex Crichton <alex@alexcrichton.com>"] license = 'MIT OR Apache-2.0' description = """ diff --git a/src/tools/rustc-std-workspace-core/Cargo.toml b/src/tools/rustc-std-workspace-core/Cargo.toml index 38ca56a557b..6b4e7540aff 100644 --- a/src/tools/rustc-std-workspace-core/Cargo.toml +++ b/src/tools/rustc-std-workspace-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-std-workspace-core" -version = "1.0.0" +version = "1.99.0" authors = ["Alex Crichton <alex@alexcrichton.com>"] license = 'MIT OR Apache-2.0' description = """ diff --git a/src/tools/rustc-std-workspace-std/Cargo.toml b/src/tools/rustc-std-workspace-std/Cargo.toml index ce1644809db..e41554b74af 100644 --- a/src/tools/rustc-std-workspace-std/Cargo.toml +++ b/src/tools/rustc-std-workspace-std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustc-std-workspace-std" -version = "1.0.0" +version = "1.99.0" authors = ["Alex Crichton <alex@alexcrichton.com>"] license = 'MIT OR Apache-2.0' description = """ |
