language changes: `extern crate A = "B";` -> `extern crate "B" as A;`.

This commit is contained in:
Kang Seonghoon 2014-09-12 18:53:06 +09:00
parent 10c580f664
commit d6e0c3f266
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ Experimental date and time handling for Rust.
#![deny(missing_doc)]
extern crate num;
extern crate stdtime = "time";
extern crate "time" as stdtime;
pub use duration::Duration;
pub use offset::{Offset, LocalResult};