diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-11-17 22:59:10 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-18 02:59:10 +0100 |
commit | 238590aa9fdfe2aac04bb96abad2f2d2feb3101a (patch) | |
tree | f8fa04e39baecb5460076c1329ca38ae31f440b6 /runtime/js.rs | |
parent | 483c10c94b8a5de49cee4c4b9a3ce74726501c8a (diff) |
chore: use Rust 1.65.0 (#16688)
Diffstat (limited to 'runtime/js.rs')
-rw-r--r-- | runtime/js.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js.rs b/runtime/js.rs index cdd479858..54a08d9b4 100644 --- a/runtime/js.rs +++ b/runtime/js.rs @@ -30,7 +30,7 @@ pub static CLI_SNAPSHOT: Lazy<Box<[u8]>> = Lazy::new( pub fn deno_isolate_init() -> Snapshot { debug!("Deno isolate init with snapshots."); - Snapshot::Static(&*CLI_SNAPSHOT) + Snapshot::Static(&CLI_SNAPSHOT) } #[cfg(test)] |