style: clippy fix (#2012)
This commit is contained in:
parent
15521fb90f
commit
be610c9353
10 changed files with 7 additions and 11 deletions
|
@ -4,12 +4,12 @@ use std::ptr;
|
|||
use std::rc::Rc;
|
||||
use std::sync::atomic::{AtomicBool, Ordering};
|
||||
|
||||
use crate::{bindgen_prelude::*, check_status, sys, Result};
|
||||
use crate::{bindgen_prelude::*, check_status};
|
||||
|
||||
thread_local! {
|
||||
#[doc(hidden)]
|
||||
/// Determined is `constructor` called from Class `factory`
|
||||
pub static ___CALL_FROM_FACTORY: AtomicBool = AtomicBool::new(false);
|
||||
pub static ___CALL_FROM_FACTORY: AtomicBool = const { AtomicBool::new(false) };
|
||||
}
|
||||
|
||||
#[repr(transparent)]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use std::ptr;
|
||||
|
||||
use crate::{bindgen_prelude::*, check_status, sys, JsObject, Value, ValueType};
|
||||
use crate::{bindgen_prelude::*, check_status, JsObject, Value};
|
||||
|
||||
pub struct Array {
|
||||
env: sys::napi_env,
|
||||
|
|
|
@ -81,7 +81,7 @@ impl<T: 'static> Reference<T> {
|
|||
let finalize_callbacks_raw = unsafe { Rc::from_raw(finalize_callbacks_ptr) };
|
||||
let finalize_callbacks = finalize_callbacks_raw.clone();
|
||||
// Leak the raw finalize callbacks
|
||||
Rc::into_raw(finalize_callbacks_raw);
|
||||
let _ = Rc::into_raw(finalize_callbacks_raw);
|
||||
Ok(Self {
|
||||
raw: wrapped_value.cast(),
|
||||
napi_ref,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#![deny(clippy::all)]
|
||||
#![forbid(unsafe_op_in_unsafe_fn)]
|
||||
#![allow(non_upper_case_globals)]
|
||||
|
||||
//! High level Node.js [N-API](https://nodejs.org/api/n-api.html) binding
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#![allow(clippy::single_component_path_imports)]
|
||||
|
||||
use std::convert::Into;
|
||||
use std::marker::PhantomData;
|
||||
use std::os::raw::c_void;
|
||||
use std::ptr::{self, null_mut};
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
use crate::{sys, Error, Status};
|
||||
use std::convert::TryFrom;
|
||||
use std::ffi::CStr;
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#[cfg(not(target_family = "wasm"))]
|
||||
use futures::prelude::*;
|
||||
use napi::bindgen_prelude::*;
|
||||
use napi::tokio;
|
||||
#[cfg(not(target_family = "wasm"))]
|
||||
use napi::tokio::fs;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use napi::{bindgen_prelude::*, Env};
|
||||
use napi::bindgen_prelude::*;
|
||||
|
||||
#[napi]
|
||||
pub fn run_script(env: Env, script: String) -> Result<Unknown> {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use napi::{
|
||||
bindgen_prelude::*, threadsafe_function::ThreadsafeFunction, JsGlobal, JsNull, JsObject,
|
||||
JsUndefined, Property,
|
||||
JsUndefined,
|
||||
};
|
||||
|
||||
#[napi]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use napi::{bindgen_prelude::*, Env, JsObject, JsSymbol};
|
||||
use napi::{bindgen_prelude::*, JsObject, JsSymbol};
|
||||
|
||||
#[napi]
|
||||
pub fn set_symbol_in_obj(env: Env, symbol: JsSymbol) -> Result<JsObject> {
|
||||
|
|
Loading…
Reference in a new issue