File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 11# 0.8.2
22
3- * reference utils 0.5.3
3+ * reference utils 0.5.3 (fixes # 68 )
44
55# 0.8.1
66
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ pub struct QuickJsRuntimeBuilder {
3535 pub ( crate ) opt_gc_interval : Option < Duration > ,
3636 pub ( crate ) runtime_init_hooks : EsRuntimeInitHooks ,
3737 pub ( crate ) script_pre_processors : Vec < Box < dyn ScriptPreProcessor + Send > > ,
38+ #[ allow( clippy:: type_complexity) ]
3839 pub ( crate ) interrupt_handler : Option < Box < dyn Fn ( & QuickJsRuntimeAdapter ) -> bool + Send > > ,
3940}
4041
Original file line number Diff line number Diff line change @@ -270,6 +270,7 @@ pub struct QuickJsRuntimeAdapter {
270270 native_module_loaders : Vec < NativeModuleLoaderAdapter > ,
271271 compiled_module_loaders : Vec < CompiledModuleLoaderAdapter > ,
272272 pub ( crate ) script_pre_processors : Vec < Box < dyn ScriptPreProcessor + Send > > ,
273+ #[ allow( clippy:: type_complexity) ]
273274 pub ( crate ) interrupt_handler : Option < Box < dyn Fn ( & QuickJsRuntimeAdapter ) -> bool > > ,
274275}
275276
You can’t perform that action at this time.
0 commit comments