Skip to content

Commit b4abb72

Browse files
committed
Fixup crate versions
1 parent a5b603b commit b4abb72

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bootstrap/check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ pub fn krate(build: &Build,
383383
// helper crate, not tested. If it leaks through then it ends up
384384
// messing with various mtime calculations and such.
385385
if !name.contains("jemalloc") && name != "build_helper" {
386-
cargo.arg("-p").arg(name);
386+
cargo.arg("-p").arg(&format!("{}:0.0.0", name));
387387
}
388388
for dep in build.crates[name].deps.iter() {
389389
if visited.insert(dep) {

src/rustc/std_shim/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
[package]
2323
name = "std_shim"
24-
version = "0.1.0"
24+
version = "0.0.0"
2525
authors = ["The Rust Project Developers"]
2626

2727
[lib]

src/rustc/test_shim/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[package]
77
name = "test_shim"
8-
version = "0.1.0"
8+
version = "0.0.0"
99
authors = ["The Rust Project Developers"]
1010

1111
[lib]

0 commit comments

Comments
 (0)