-
Notifications
You must be signed in to change notification settings - Fork 256
Conversation
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 for doing this! I think I would change all the pub(super)
to pub(crate)
, and you can use crate
rather than pub(crate)
to make it a bit less noisey.
Do we need to opt-in to the edition in Cargo.toml?
8806132
to
2ef14af
Compare
Used Did use official Edition transition guide (+ added So the experience with using
For extern |
Thanks for the feedback! |
While
dyn
fixing annotations was straightforward, doing that for urneachable_pub was awkward... Not sure I agree with most of the changes - IMOpub(crate)
adds more noise and regularpub
should be treated as such, especially for bin targets, but that may be just me. Tried to go for the most restrictive visibility for the warned against items (not sure if that's good).r? @nrc