]> git.lizzy.rs Git - rust.git/blobdiff - src/libnum/lib.rs
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / libnum / lib.rs
index f12279b20e8ef5eae82e46f5c4686ae24020cecb..17071d22deed82d555045324c4ee01e2c285c158 100644 (file)
@@ -18,6 +18,7 @@
 //! approximate a square root to arbitrary precision:
 //!
 //! ```
+//! # #![allow(deprecated)]
 //! extern crate num;
 //!
 //! use num::bigint::BigInt;
@@ -46,7 +47,9 @@
 #![feature(default_type_params)]
 
 #![crate_name = "num"]
-#![experimental]
+#![deprecated = "This is now a cargo package located at: \
+                 https://github.com/rust-lang/num"]
+#![allow(deprecated)]
 #![crate_type = "rlib"]
 #![crate_type = "dylib"]
 #![license = "MIT/ASL2"]