language changes: `extern crate A = "B";` -> `extern crate "B" as A;`.
This commit is contained in:
parent
10c580f664
commit
d6e0c3f266
|
@ -13,7 +13,7 @@ Experimental date and time handling for Rust.
|
||||||
#![deny(missing_doc)]
|
#![deny(missing_doc)]
|
||||||
|
|
||||||
extern crate num;
|
extern crate num;
|
||||||
extern crate stdtime = "time";
|
extern crate "time" as stdtime;
|
||||||
|
|
||||||
pub use duration::Duration;
|
pub use duration::Duration;
|
||||||
pub use offset::{Offset, LocalResult};
|
pub use offset::{Offset, LocalResult};
|
||||||
|
|
Loading…
Reference in New Issue