We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
allow
1 parent 29cd22f commit db25569Copy full SHA for db25569
src/rust/engine/src/lib.rs
@@ -24,10 +24,8 @@
24
#![allow(clippy::new_without_default, clippy::new_ret_no_self)]
25
// Arc<Mutex> can be more clear than needing to grok Orderings:
26
#![allow(clippy::mutex_atomic)]
27
-// We only use unsafe pointer dereferences in our no_mangle exposed API, but it is nicer to list
28
-// just the one minor call as unsafe, than to mark the whole function as unsafe which may hide
29
-// other unsafeness.
30
-#![allow(clippy::not_unsafe_ptr_arg_deref)]
+// TODO: See https://github.com/PyO3/pyo3/issues/2555
+#![allow(clippy::borrow_deref_ref)]
31
#![type_length_limit = "43757804"]
32
33
#[macro_use]
0 commit comments