diff options
author | Yiyu Lin <linyiyu1992@gmail.com> | 2023-01-04 20:20:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 13:20:36 +0100 |
commit | 319f6074761421b797db71bf10f6171516e3d92a (patch) | |
tree | 86d67cc767861e826fff6f2d41c243dbbcd25f60 /cli/build.rs | |
parent | 2da882137eecc96e73a8c4f8e9b7d59ccdbfca66 (diff) |
chore(cli,ext,rt): remove some unnecessary `clone` or `malloc` (#17261)
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/build.rs b/cli/build.rs index 5ef2296e8..faeaed073 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -1,11 +1,11 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -use deno_core::Extension; use std::env; use std::path::Path; use std::path::PathBuf; use deno_core::snapshot_util::*; +use deno_core::Extension; use deno_runtime::deno_cache::SqliteBackedCache; use deno_runtime::permissions::Permissions; use deno_runtime::*; |