forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclippy.toml
More file actions
33 lines (33 loc) · 1.08 KB
/
clippy.toml
File metadata and controls
33 lines (33 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
disallowed-types = [
"core::sync::atomic::Ordering",
"core::sync::atomic::AtomicI8",
"core::sync::atomic::AtomicI16",
"core::sync::atomic::AtomicI32",
"core::sync::atomic::AtomicI64",
"core::sync::atomic::AtomicU8",
"core::sync::atomic::AtomicU16",
"core::sync::atomic::AtomicU32",
"core::sync::atomic::AtomicU64",
"core::sync::atomic::AtomicBool",
"core::sync::atomic::AtomicIsize",
"core::sync::atomic::AtomicPtr",
"core::sync::atomic::AtomicUsize",
"core::sync::atomic::AtomicI8",
"core::sync::atomic::AtomicI16",
"core::sync::atomic::AtomicI32",
"core::sync::atomic::AtomicI64",
"core::sync::atomic::AtomicU8",
"core::sync::atomic::AtomicU16",
"core::sync::atomic::AtomicU32",
"core::sync::atomic::AtomicU64",
"core::sync::atomic::AtomicBool",
"core::sync::atomic::AtomicIsize",
"core::sync::atomic::AtomicPtr",
"core::sync::atomic::AtomicUsize",
"core::cell::Cell",
"core::cell::OnceCell",
"core::cell::Ref",
"core::cell::RefCell",
"core::cell::RefMut",
"core::cell::UnsafeCell",
]