-
Notifications
You must be signed in to change notification settings - Fork 824
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
Bump the MSRV to 1.63 #3318
Bump the MSRV to 1.63 #3318
Conversation
91737c7
to
ef80c51
Compare
- [#2948](https://github.com/wasmerio/wasmer/pull/2948) Fix regression on gen_import_call_trampoline_arm64() | ||
- [#2944](https://github.com/wasmerio/wasmer/pull/2944) Fix duplicate entries in the CHANGELOG | ||
- [#2944](https://github.com/wasmerio/wasmer/pull/2944) Fix duplicate entries in the CHANGELOG | ||
|
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.
The hunt of the trailling space :P !
write!(f, "host(")?; | ||
p.as_ref().fmt(f)?; | ||
write!(f, ")") | ||
} | ||
MaybeInstanceOwned::Instance(p) => { | ||
Self::Instance(p) => { | ||
write!(f, "instance(")?; | ||
unsafe { p.as_ref().fmt(f)? }; | ||
write!(f, ")") |
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 always forgot to fix thoses one. It's done now, good.
tests/compilers/typed_functions.rs
Outdated
@@ -244,11 +244,11 @@ fn static_host_function_without_env(config: crate::Config) -> anyhow::Result<()> | |||
let mut store = config.store(); | |||
|
|||
fn f(a: i32, b: i64, c: f32, d: f64) -> (f64, f32, i64, i32) { | |||
(d * 4.0, c * 3.0, b * 2, a * 1) | |||
(d * 4.0, c * 3.0, b * 2, a) | |||
} |
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 a fan of the "* 1" removal, as it was here for clarity. Still works, but, meh
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.
Yeah, it looks like clippy warns you about redundant multiplies so clippy --fix
will "help" out by removing them 😞
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.
Okay, just the comments from @ptitSeb, from my side it's ok
ef80c51
to
e3ea8b4
Compare
e3ea8b4
to
3a092cf
Compare
bors r+ |
Build succeeded:
|
We upgraded our dependencies as part of #3254 (9b13fae), which pulled in version
1.2.0
of thederive_arbitrary
crate. This requires Rust1.63
to compile, but our current minimum supported Rust version is1.61
.This PR bumps our MSRV to match that of
derive_arbitrary
.Review