byte-engine-utils 0.1.0

Shared allocation, async, synchronization, collection, and geometry utilities for Byte-Engine.
1
2
3
4
5
6
7
8
9
10
11
12
pub use std::cell::OnceCell;
pub use std::fs::remove_file;
pub use std::fs::File;
pub use std::io::{Read, Seek, Write};
pub use std::rc::Rc;
pub use std::sync::Arc;

pub use parking_lot::Mutex;
pub use parking_lot::RwLock;
pub use parking_lot::RwLockReadGuard;
pub use parking_lot::RwLockUpgradableReadGuard;
pub use parking_lot::RwLockWriteGuard;