diff options
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/core.rc | 2 | ||||
| -rw-r--r-- | src/libcore/core.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc index 94e6decc4ca..484c5875032 100644 --- a/src/libcore/core.rc +++ b/src/libcore/core.rc @@ -25,7 +25,7 @@ Implicitly, all crates behave as if they included the following prologue: */ #[link(name = "core", - vers = "0.4", + vers = "0.5", uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8", url = "https://github.com/mozilla/rust/tree/master/src/libcore")]; diff --git a/src/libcore/core.rs b/src/libcore/core.rs index 603f19362ee..5ef11a4ad46 100644 --- a/src/libcore/core.rs +++ b/src/libcore/core.rs @@ -33,7 +33,7 @@ pub use ops::{Add, Sub, Mul, Div, Modulo, Neg, BitAnd, BitOr, BitXor}; pub use ops::{Shl, Shr, Index}; #[cfg(test)] -extern mod coreops(name = "core", vers = "0.4"); +extern mod coreops(name = "core", vers = "0.5"); #[cfg(test)] pub use coreops::ops::{Const, Copy, Send, Owned}; @@ -72,6 +72,6 @@ mod core { // Similar to above. Some magic to make core testable. #[cfg(test)] mod std { - extern mod std(vers = "0.4"); + extern mod std(vers = "0.5"); pub use std::test; } |
