Skip to content

Commit

Permalink
chore: rename src/fs/ to src/fat/
Browse files Browse the repository at this point in the history
  • Loading branch information
Oakchris1955 committed Sep 7, 2024
1 parent b891cc0 commit d43d06a
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/fs/tests.rs → src/fat/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ static FAT32: &[u8] = include_bytes!("../../imgs/fat32.img");
#[test]
#[allow(non_snake_case)]
fn check_FAT_offset() {
use crate::fs::BootRecord;
use crate::fat::BootRecord;

use std::io::Cursor;

Expand Down Expand Up @@ -469,7 +469,7 @@ fn remove_fat32_file() {
#[test]
#[allow(non_snake_case)]
fn FAT_tables_after_fat32_write_are_identical() {
use crate::fs::{BootRecord, EBR};
use crate::fat::{BootRecord, EBR};

use std::io::Cursor;

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@
extern crate alloc;

mod error;
mod fs;
mod fat;
pub mod io;
mod path;
mod utils;

pub use error::*;
pub use fs::*;
pub use fat::*;
pub use path::*;

0 comments on commit d43d06a

Please sign in to comment.