diff options
author | 林炳权 <695601626@qq.com> | 2023-11-17 23:06:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 08:06:28 -0700 |
commit | 9a1c697045cee8675ff07e3a0abde1e30fea5362 (patch) | |
tree | 6122f75861d4618b0eed257211f43eda95b12e76 /runtime/build.rs | |
parent | 29011d592968d4d645b909ee28d5fffe0473f285 (diff) |
chore: update to Rust 1.74 (#21210)
Update to Rust 1.74
Diffstat (limited to 'runtime/build.rs')
-rw-r--r-- | runtime/build.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index f77f3ed07..b38fd558b 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -298,6 +298,7 @@ fn main() { let snapshot_slice = &[]; #[allow(clippy::needless_borrow)] #[allow(clippy::disallowed_methods)] + #[allow(clippy::needless_borrows_for_generic_args)] std::fs::write(&runtime_snapshot_path, snapshot_slice).unwrap(); } |