Skip to content

Commit 036eb2c

Browse files
committed
Merge pull request #19820 from alexcrichton/deprecate-some-more-libs
Deprecate more in-tree libs for crates.io Reviewed-by: aturon
2 parents f92c832 + 8abe784 commit 036eb2c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/libgetopts/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
//! ```
7979
8080
#![crate_name = "getopts"]
81-
#![experimental]
81+
#![experimental = "use the crates.io `getopts` library instead"]
8282
#![crate_type = "rlib"]
8383
#![crate_type = "dylib"]
8484
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

src/liblog/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
//! if logging is disabled, none of the components of the log will be executed.
158158
159159
#![crate_name = "log"]
160-
#![experimental]
160+
#![experimental = "use the crates.io `log` library instead"]
161161
#![crate_type = "rlib"]
162162
#![crate_type = "dylib"]
163163
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

src/libregex/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@
362362
#![crate_name = "regex"]
363363
#![crate_type = "rlib"]
364364
#![crate_type = "dylib"]
365-
#![experimental]
365+
#![experimental = "use the crates.io `regex` library instead"]
366366
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
367367
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
368368
html_root_url = "http://doc.rust-lang.org/nightly/",

src/libregex_macros/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
#![crate_name = "regex_macros"]
1515
#![crate_type = "dylib"]
16-
#![experimental]
16+
#![experimental = "use the crates.io `regex_macros` library instead"]
1717
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1818
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
1919
html_root_url = "http://doc.rust-lang.org/nightly/")]

0 commit comments

Comments
 (0)