diff options
author | 林炳权 <695601626@qq.com> | 2024-04-11 06:08:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-10 22:08:23 +0000 |
commit | 9304126be5633d4e7d384a8df87f5833a7a145e2 (patch) | |
tree | c074d89e9f2423c5121721ea94b9b4fb3101a482 /cli/worker.rs | |
parent | c6f1107e9c8835389479f4f2d80d3539d23df41e (diff) |
chore: update to Rust 1.77.2 (#23262)
update to Rust 1.77.2
---------
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
Diffstat (limited to 'cli/worker.rs')
-rw-r--r-- | cli/worker.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/worker.rs b/cli/worker.rs index be5a85cd6..ed82f4872 100644 --- a/cli/worker.rs +++ b/cli/worker.rs @@ -72,12 +72,6 @@ pub trait ModuleLoaderFactory: Send + Sync { fn create_source_map_getter(&self) -> Option<Rc<dyn SourceMapGetter>>; } -// todo(dsherret): this is temporary and we should remove this -// once we no longer conditionally initialize the node runtime -pub trait HasNodeSpecifierChecker: Send + Sync { - fn has_node_specifier(&self) -> bool; -} - #[async_trait::async_trait(?Send)] pub trait HmrRunner: Send + Sync { async fn start(&mut self) -> Result<(), AnyError>; |