-
Notifications
You must be signed in to change notification settings - Fork 639
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
Prefer doc(no_inline) to doc(hidden) for reexports #2479
Conversation
The The failure of cargo +1.41.0 is interesting since it's clearly ok on some stables around it. It's also clearly a non-regression (claiming that things aren't documented there). What do you suggest we do here to make CI happy? Could conditionally ignore the warning with something like https://github.com/dtolnay/rustversion - or unconditionally ignore the warning. |
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.
Thanks! Could you change to use no_inline
only on trait reexports? *_internal
macros and async_await
module are not public APIs.
038ee7d
to
8b339b9
Compare
Could you do the same for the trait reexports in Lines 105 to 125 in fdb96f5
|
yep - thanks for catching! I missed that file in my audit! (I had used Thanks! |
8b339b9
to
5f276c7
Compare
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.
Thanks!
Fixes #2472