-
-
Notifications
You must be signed in to change notification settings - Fork 281
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
Renaming of FormatItem
is a breaking change
#675
Comments
A few folks have asked me directly, so for posterity: This is a breaking but not semver-major change, so it should be a "warn" or opt-in lint. |
Tangentially, if the maintainers of this repo might be interested in adopting |
If I |
This has been fixed and released. |
I noticed
sqlx-sqlite
(0.7.4) does not build with 0.3.35 (but built with 0.3.34):So evidently replacing an enum with a type alias is a breaking change. One possible fix is to replace the type alias with a re-export i.e.
pub use BorrowedFormatItem as FormatItem;
, but unfortunately deprecating re-exports doesn't work: rust-lang/rust#30827The text was updated successfully, but these errors were encountered: