-
Notifications
You must be signed in to change notification settings - Fork 19
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
Fix errors with rust v1.83 #68
Fix errors with rust v1.83 #68
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.
I think we can remove the ///
from line 672.
#![expect(non_local_definitions)] | ||
#![expect(clippy::needless_lifetimes)] |
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.
Do you mind elaborating that these also come from the StableAbi
derive macro?
fafc6db
to
ab14d15
Compare
Updated based on comments. |
deny.toml
Outdated
@@ -20,7 +20,7 @@ allow = [ | |||
|
|||
exceptions = [ | |||
{ name = "generational-arena", allow = ["MPL-2.0"] }, | |||
{ name = "unicode-ident", allow = ["MIT", "Apache-2.0", "Unicode-DFS-2016"] }, | |||
{ name = "unicode-ident", allow = ["MIT", "Apache-2.0", "Unicode-DFS-2016", "Unicode-3.0"] }, |
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.
I also have a PR which is failing CI due to this issue. In the CI build, I see this:
registry+https://github.com/rust-lang/crates.io-index#[email protected]:4:36
│
4 │ license = "(MIT OR Apache-2.0) AND Unicode-3.0"
Given this, can we remove the "Unicode-DFS-2016"
?
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.
Makes sense. Updated
ab14d15
to
d072a70
Compare
Removed extra |
Merging this to unblock my PR 😄 |
Description of changes:
unicode-ident
crateBy submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.