make 'now' fields Arc<AtomicUsize>

This commit is contained in:
🪞👃🪞 2024-10-23 00:33:01 +03:00
parent c88cb86532
commit 694aed6d9b
3 changed files with 7 additions and 4 deletions

View file

@ -6,7 +6,7 @@ pub use clap;
pub use std::sync::{Arc, Mutex, LockResult, RwLock, RwLockReadGuard, RwLockWriteGuard};
pub use std::collections::BTreeMap;
pub use once_cell::sync::Lazy;
pub use std::sync::atomic::{Ordering, AtomicBool};
pub use std::sync::atomic::{Ordering, AtomicBool, AtomicUsize};
pub use std::rc::Rc;
pub use std::cell::RefCell;
pub use std::marker::PhantomData;