summaryrefslogtreecommitdiff
path: root/cli/npm/managed/resolvers/common.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-06-06 18:37:41 -0400
committerGitHub <noreply@github.com>2024-06-06 22:37:41 +0000
commit7a17eba5a748b2362bec48de4edd9f1c214df1f1 (patch)
tree39b48d22126a8ac658bedee87fd448458be5fb80 /cli/npm/managed/resolvers/common.rs
parent47d19461a59cc7997f24987d8564e757683b8a5e (diff)
refactor: `NpmRegistryApi` - `#[async_trait(?Send)]` (#24126)
Diffstat (limited to 'cli/npm/managed/resolvers/common.rs')
-rw-r--r--cli/npm/managed/resolvers/common.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/npm/managed/resolvers/common.rs b/cli/npm/managed/resolvers/common.rs
index 4cdad1f99..5003e6a05 100644
--- a/cli/npm/managed/resolvers/common.rs
+++ b/cli/npm/managed/resolvers/common.rs
@@ -24,7 +24,7 @@ use deno_runtime::deno_node::NodeResolutionMode;
use crate::npm::managed::cache::TarballCache;
/// Part of the resolution that interacts with the file system.
-#[async_trait]
+#[async_trait(?Send)]
pub trait NpmPackageFsResolver: Send + Sync {
/// Specifier for the root directory.
fn root_dir_url(&self) -> &Url;