You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After #12017 (extern crate x;) is landed, we may reuse the new keyword crate to define crates:
pub crate std;
We can always place docs and attributes on top of the crate's definition. As a result, the inner- (or outer- someone maybe calls it) docs and attributes, will forever gone.
src/libstd/lib.rs:
/// docs and attributes go here
#[crate_type = "rlib"]
pub crate std;