Skip to content

Commit

Permalink
Update version of rustc-std-workspace-* crates
Browse files Browse the repository at this point in the history
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]`!
  • Loading branch information
alexcrichton committed Sep 9, 2019
1 parent 45859b7 commit 6c74bc9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock
Expand Up @@ -3046,21 +3046,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",
]
Expand Down
2 changes: 1 addition & 1 deletion 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 = """
Expand Down
2 changes: 1 addition & 1 deletion 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 = """
Expand Down
2 changes: 1 addition & 1 deletion 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 = """
Expand Down

0 comments on commit 6c74bc9

Please sign in to comment.