| Crates.io | hadris-fat |
| lib.rs | hadris-fat |
| version | 0.1.1 |
| created_at | 2025-02-13 09:47:26.111223+00 |
| updated_at | 2025-02-20 11:46:08.220215+00 |
| description | A library for working with FAT32 file systems, a standalone crate included in the hadris project |
| homepage | https://github.com/hxyulin/hadris |
| repository | https://github.com/hxyulin/hadris |
| max_upload_size | |
| id | 1554009 |
| size | 111,235 |
This crate provides a FAT32 file system implementation.
Add this to your Cargo.toml:
[dependencies]
hadris-fat = { version = "0.1" }
writeEnables writing to the file system. This is enabled by default.
For no-std environments, this feature is gated behind the alloc feature.
stdThis feature automatically enables the 'alloc' feature.
allocEnables the alloc feature for no-std environments. This allows for the use of dynamic memory allocation, which is used for some operations.