Skip to content

Commit

Permalink
Fixup crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Feb 2, 2017
1 parent a5b603b commit b4abb72
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/bootstrap/check.rs
Expand Up @@ -383,7 +383,7 @@ pub fn krate(build: &Build,
// helper crate, not tested. If it leaks through then it ends up
// messing with various mtime calculations and such.
if !name.contains("jemalloc") && name != "build_helper" {
cargo.arg("-p").arg(name);
cargo.arg("-p").arg(&format!("{}:0.0.0", name));
}
for dep in build.crates[name].deps.iter() {
if visited.insert(dep) {
Expand Down
2 changes: 1 addition & 1 deletion src/rustc/std_shim/Cargo.toml
Expand Up @@ -21,7 +21,7 @@

[package]
name = "std_shim"
version = "0.1.0"
version = "0.0.0"
authors = ["The Rust Project Developers"]

[lib]
Expand Down
2 changes: 1 addition & 1 deletion src/rustc/test_shim/Cargo.toml
Expand Up @@ -5,7 +5,7 @@

[package]
name = "test_shim"
version = "0.1.0"
version = "0.0.0"
authors = ["The Rust Project Developers"]

[lib]
Expand Down

0 comments on commit b4abb72

Please sign in to comment.