about summary refs log tree commit diff
path: root/src/librustdoc/lib.rs
diff options
context:
space:
mode:
authorwickerwaka <martin.donlon@gmail.com>2014-09-01 08:59:23 -0700
committerwickerwaka <martin.donlon@gmail.com>2014-09-01 09:02:00 -0700
commit2cb210d2c671582a97c75d446bf2312af362b1cc (patch)
treeff71e04887f9a2d4683269672dbfde1e5ac231d8 /src/librustdoc/lib.rs
parentb42e079c6f6445b4e2adfaf9a30e8a06403f75c8 (diff)
downloadrust-2cb210d2c671582a97c75d446bf2312af362b1cc.tar.gz
rust-2cb210d2c671582a97c75d446bf2312af362b1cc.zip
Updated to new extern crate syntax.
Added warning for old deprecated syntax
Diffstat (limited to 'src/librustdoc/lib.rs')
-rw-r--r--src/librustdoc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs
index 2f140aa8a68..29e7c051162 100644
--- a/src/librustdoc/lib.rs
+++ b/src/librustdoc/lib.rs
@@ -23,7 +23,7 @@ extern crate libc;
 extern crate rustc;
 extern crate serialize;
 extern crate syntax;
-extern crate testing = "test";
+extern crate "test" as testing;
 extern crate time;
 #[phase(plugin, link)] extern crate log;