From cb7017ce3a684c167a326246258888a13403ba29 Mon Sep 17 00:00:00 2001 From: ebadf Date: Fri, 18 Dec 2015 10:21:13 -0600 Subject: [PATCH 1/2] Made dynamic_lib migration path more explicit --- src/libstd/dynamic_lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/dynamic_lib.rs b/src/libstd/dynamic_lib.rs index 62ec23ccb2000..9a4920cf1e9f3 100644 --- a/src/libstd/dynamic_lib.rs +++ b/src/libstd/dynamic_lib.rs @@ -16,7 +16,7 @@ reason = "API has not been scrutinized and is highly likely to \ either disappear or change", issue = "27810")] -#![rustc_deprecated(since = "1.5.0", reason = "replaced with crates.io crates")] +#![rustc_deprecated(since = "1.5.0", reason = "replaced with crates.io 'libloading'")] #![allow(missing_docs)] #![allow(deprecated)] From a8df425dd51a9157e08ba1f78c2bb76cf09b8e4e Mon Sep 17 00:00:00 2001 From: ebadf Date: Sun, 20 Dec 2015 14:37:53 -0600 Subject: [PATCH 2/2] Corrected deprecation reference to appropriate crate --- src/libstd/dynamic_lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/dynamic_lib.rs b/src/libstd/dynamic_lib.rs index 9a4920cf1e9f3..4d805e17a7664 100644 --- a/src/libstd/dynamic_lib.rs +++ b/src/libstd/dynamic_lib.rs @@ -16,7 +16,7 @@ reason = "API has not been scrutinized and is highly likely to \ either disappear or change", issue = "27810")] -#![rustc_deprecated(since = "1.5.0", reason = "replaced with crates.io 'libloading'")] +#![rustc_deprecated(since = "1.5.0", reason = "replaced with 'dylib' on crates.io")] #![allow(missing_docs)] #![allow(deprecated)]