-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert breaking changes, bump version to
3.6.9
(#545)
* Revert "Update MaxEncodedLen derive macro (#512)" This reverts commit 1e3f80c. * Revert "Fix max_encoded_len for Compact fields (#508)" This reverts commit ddf9439 * Bump version to 3.6.9 * Cargo.lock * ui test
- Loading branch information
Showing
8 changed files
with
40 additions
and
115 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
error[E0277]: the trait bound `NotMel: MaxEncodedLen` is not satisfied | ||
error[E0599]: no function or associated item named `max_encoded_len` found for struct `NotMel` in the current scope | ||
--> tests/max_encoded_len_ui/unsupported_variant.rs:8:9 | ||
| | ||
4 | struct NotMel; | ||
| ------------- function or associated item `max_encoded_len` not found for this struct | ||
... | ||
8 | NotMel(NotMel), | ||
| ^^^^^^ the trait `MaxEncodedLen` is not implemented for `NotMel` | ||
| ^^^^^^ function or associated item not found in `NotMel` | ||
| | ||
= help: the following other types implement trait `MaxEncodedLen`: | ||
bool | ||
i8 | ||
i16 | ||
i32 | ||
i64 | ||
i128 | ||
u8 | ||
u16 | ||
and $N others | ||
= help: items from traits can only be used if the trait is implemented and in scope | ||
= note: the following trait defines an item `max_encoded_len`, perhaps you need to implement it: | ||
candidate #1: `MaxEncodedLen` |