-
Notifications
You must be signed in to change notification settings - Fork 8
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
Update Rust version #1739
base: main
Are you sure you want to change the base?
Update Rust version #1739
Conversation
@@ -21,4 +23,7 @@ rkyv-serialization = [] | |||
sha2 = [] | |||
static-mem-access = [] | |||
token = [] | |||
# Not sure whether token, tokenbin, wallet and walletbin should all be here, or whether we forget cleaning them up in recent renames? |
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.
Not sure whether token, tokenbin, wallet and walletbin should all be here, or whether we forget cleaning them up in recent renames?
@supragya You recently did some renames / cleanups here. Do you have an opinion?
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.
Those should be needed for testing I hope?
@@ -47,35 +47,28 @@ const CRATES: &[Crate] = &[ | |||
const CARGO_MANIFEST_DIR: &str = env!("CARGO_MANIFEST_DIR"); | |||
|
|||
fn build_elf(dest: &mut File, crate_path: &str, elf_path: &str, glob_name: &str, uses_std: bool) { | |||
// Use a dummy array for clippy, since not building the elf is faster than | |||
// building the elf | |||
if cfg!(feature = "cargo-clippy") { |
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.
@Daniel-Aaron-Bloom The new version's linter doesn't like this. Do you know whether this ever worked (and perhaps how to repair it)?
The update to the new Rust version itself isn't critical, but we can fix the lint issues anyway. |
And fix new linter complaints.