-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Move term, terminfo out of extra. #11945
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
It seems like these could be in one crate, e.g. |
html_favicon_url = "http://www.rust-lang.org/favicon.ico", | ||
html_root_url = "http://static.rust-lang.org/doc/master")]; | ||
|
||
#[feature(globs)]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did this end up being too painful to remove?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only toplevel item in terminfo
is the TermInfo
struct. I'm pretty sure this glob is unnecessary.
I agree with @huonw , I would expect these modules to form |
I am so excited to see all this action with libextra! |
Happy to see libextra being taken apart. 🎉 |
I agree with @huonw and @alexcrichton. I also think "terminfo" is one word so |
|
||
#[deny(non_camel_case_types)]; | ||
#[allow(missing_doc)]; | ||
|
||
use std::os; | ||
use terminfo::*; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this may be the only glob in this crate, could you remove this glob and feature(globs)
as well?
Feel free to comment on the PR whenever you update it, sadly no one gets notifications about force-pushes. Also, could you squash all the commits into one? Thanks for doing this! |
Sure. Removed globs. |
Maybe this should be added to |
Added to docs. |
Fixed imports in tests; they pass now. |
This needs a rebase. |
Rebased. |
Is there no place now to view the docs of these external crates? |
Oops never mind. They can be found on this page. |
…tly, r=harpsword fix cargo check diagnostics are mapped incorrectly with non-BMP codepoints fix rust-lang#11945
…xendoo Try to improve wording and fix dead link in description of arc_with_non_send_sync lint. changelog: [`arc_with_non_send_sync`]: Improve wording and fix dead link.
cc #8784