summaryrefslogtreecommitdiff
path: root/cli/standalone/mod.rs
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2024-05-25 21:13:20 -0700
committerGitHub <noreply@github.com>2024-05-26 09:43:20 +0530
commit16ed81f62cac68f1ef0cfa925fffbf2d208eed61 (patch)
treedbea5b88a255880ec68e33616275904ce18f7ad9 /cli/standalone/mod.rs
parentb21004b1d16ad7b67c7b1cd235abf792bf9d9777 (diff)
chore(cli): remove extract_standalone path from CLI (#23982)
No longer needed as standalone binaries use `denort`
Diffstat (limited to 'cli/standalone/mod.rs')
-rw-r--r--cli/standalone/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/standalone/mod.rs b/cli/standalone/mod.rs
index 1c081bc86..8f8a78de0 100644
--- a/cli/standalone/mod.rs
+++ b/cli/standalone/mod.rs
@@ -1,5 +1,10 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
+// Allow unused code warnings because we share
+// code between the two bin targets.
+#![allow(dead_code)]
+#![allow(unused_imports)]
+
use crate::args::create_default_npmrc;
use crate::args::get_root_cert_store;
use crate::args::npm_pkg_req_ref_to_binary_command;