Skip to content

Commit

Permalink
bump: rust from 1.61 to 1.62 (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra authored Aug 6, 2022
1 parent 12ba2a8 commit 4406ad1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions crates/mun_runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,7 @@ pub trait InvokeArgs {
// Implement `InvokeTraits` for tuples up to and including 20 elements
seq_macro::seq!(N in 0..=20 {#(
seq_macro::seq!(I in 0..N {
#[allow(clippy::extra_unused_lifetimes)]
impl<'arg, #(T~I: ArgumentReflection + Marshal<'arg>,)*> InvokeArgs for (#(T~I,)*) {
#[allow(unused_variables)]
fn can_invoke<'runtime>(&self, runtime: &'runtime Runtime, signature: &FunctionSignature) -> Result<(), String> {
Expand Down
1 change: 1 addition & 0 deletions crates/mun_skeptic/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ impl TestMode {
}

/// Run a Mun test with the specified `code`.
#[allow(clippy::let_unit_value)]
pub fn run_test(code: &str, mode: TestMode) {
// Construct a temporary path to store the output files
let out_dir = tempdir::TempDir::new("mun_test_")
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.61
1.62

0 comments on commit 4406ad1

Please sign in to comment.