embedded-exfat 0.1.0

ExFAT filesystem library with async support, mainly focusing on embedded system
Documentation
1
2
3
4
5
6
7
8
#[cfg(all(feature = "async", feature = "std"))]
pub(crate) use async_std::sync::Mutex;
#[cfg(all(feature = "async", not(feature = "std")))]
pub(crate) use fast_async_mutex::mutex::Mutex;
#[cfg(all(not(feature = "async"), not(feature = "std")))]
pub(crate) use spin_sync::Mutex;
#[cfg(all(not(feature = "async"), feature = "std"))]
pub(crate) use std::sync::Mutex;