We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
portable-atomic
IngredientCache
powerpc-unknown-linux-gnu
1 parent 9d2a978 commit dbb0e5fCopy full SHA for dbb0e5f
Cargo.toml
@@ -19,6 +19,7 @@ hashbrown = "0.15"
19
hashlink = "0.10"
20
indexmap = "2"
21
parking_lot = "0.12"
22
+portable-atomic = "1"
23
rustc-hash = "2"
24
smallvec = "1"
25
tracing = "0.1"
src/zalsa.rs
@@ -1,12 +1,13 @@
1
use parking_lot::{Mutex, RwLock};
2
+use portable_atomic::AtomicU64;
3
use rustc_hash::FxHashMap;
4
use std::any::{Any, TypeId};
5
use std::collections::hash_map;
6
use std::marker::PhantomData;
7
use std::mem;
8
use std::num::NonZeroU32;
9
use std::panic::RefUnwindSafe;
-use std::sync::atomic::{AtomicU64, Ordering};
10
+use std::sync::atomic::Ordering;
11
12
use crate::cycle::CycleRecoveryStrategy;
13
use crate::ingredient::{Ingredient, Jar};
0 commit comments