From d6e0c3f266f6e02465d0d7ac26ccb66b9953ebc8 Mon Sep 17 00:00:00 2001 From: Kang Seonghoon Date: Fri, 12 Sep 2014 18:53:06 +0900 Subject: [PATCH] language changes: `extern crate A = "B";` -> `extern crate "B" as A;`. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e36a2df..91cdb18 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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};