embedded-exfat 0.2.2

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