]> git.lizzy.rs Git - rust.git/commitdiff
Allow deprecation in deprecated libraries
authorAaron Turon <aturon@mozilla.com>
Tue, 12 Aug 2014 00:33:43 +0000 (17:33 -0700)
committerAaron Turon <aturon@mozilla.com>
Tue, 12 Aug 2014 20:35:56 +0000 (13:35 -0700)
src/libfourcc/lib.rs
src/libhexfloat/lib.rs
src/libsemver/lib.rs
src/liburl/lib.rs
src/libuuid/lib.rs

index bac5b6e10135ce784f610e081b6f1e3261a1d52d..e4d61c47cc20c3a53e3366a73a003ff9f4e33ebb 100644 (file)
@@ -42,6 +42,7 @@ fn main() {
 #![crate_name = "fourcc"]
 #![deprecated = "This is now a cargo package located at: \
                  https://github.com/rust-lang/fourcc"]
+#![allow(deprecated)]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
index 9adeeb2e4c9241997a3da22806604f26e9b225c5..936e7cb4403d49b31f379998c03ba99ad62392bb 100644 (file)
@@ -39,6 +39,7 @@ fn main() {
 #![crate_name = "hexfloat"]
 #![deprecated = "This is now a cargo package located at: \
                  https://github.com/rust-lang/hexfloat"]
+#![allow(deprecated)]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
index 3cc5189c024db7b4a5dcd15f09c6928866bbcfb0..56c0f24509b8ed297800ebdd4fa9d36cd772526e 100644 (file)
@@ -31,6 +31,7 @@
 #![crate_name = "semver"]
 #![deprecated = "This is now a cargo package located at: \
                  https://github.com/rust-lang/semver"]
+#![allow(deprecated)]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
index 0221b95b40434b23c721bdebd3a8df0b6e7cecb9..8c35424d394f4c357fb15d0d1726b72d4fb2daf8 100644 (file)
@@ -12,6 +12,7 @@
 
 #![crate_name = "url"]
 #![deprecated="This is being removed. Use rust-url instead. http://servo.github.io/rust-url/"]
+#![allow(deprecated)]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]
index d922dde6f85372c6e5d92c13305b10555ec51bf4..78c8fbad959ee458f96370a840c28a8a78b2f193 100644 (file)
@@ -59,6 +59,7 @@ fn main() {
 #![crate_name = "uuid"]
 #![deprecated = "This is now a cargo package located at: \
                  https://github.com/rust-lang/uuid"]
+#![allow(deprecated)]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]