diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-01-15 01:10:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-15 07:10:12 +0100 |
commit | ad224f53c798e8417a63d98daeaf3cadc199666c (patch) | |
tree | f323be53d4f5b4289cd04296af1d35028dc23b15 /runtime/js.rs | |
parent | 903cb48fe94bbbb0c43f17cf51e84a5583ddb728 (diff) |
chore: upgrade to rust 1.58 (#13377)
Diffstat (limited to 'runtime/js.rs')
-rw-r--r-- | runtime/js.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/js.rs b/runtime/js.rs index c259ff5ee..cdd479858 100644 --- a/runtime/js.rs +++ b/runtime/js.rs @@ -4,6 +4,7 @@ use log::debug; use once_cell::sync::Lazy; pub static CLI_SNAPSHOT: Lazy<Box<[u8]>> = Lazy::new( + #[allow(clippy::uninit_vec)] #[cold] #[inline(never)] || { |