Skip to content

Commit

Permalink
Merge pull request #195 from wcampbell0x2a/make-basic-file-and-datasi…
Browse files Browse the repository at this point in the history
…ze-public

Make BasicFile and DataSize public
  • Loading branch information
wcampbell0x2a authored Mar 15, 2023
2 parents 49be066 + 9618f65 commit a3c8870
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ mod reader;
mod squashfs;
mod tree;

pub use crate::data::DataSize;
pub use crate::error::BackhandError;
pub use crate::filesystem::node::{
InnerNode, Node, NodeHeader, SquashfsBlockDevice, SquashfsCharacterDevice, SquashfsDir,
Expand All @@ -72,7 +73,7 @@ pub use crate::filesystem::writer::{
CompressionExtra, ExtraXz, FilesystemCompressor, FilesystemWriter,
};
pub use crate::fragment::Fragment;
pub use crate::inode::Inode;
pub use crate::inode::{BasicFile, Inode};
pub use crate::reader::ReadSeek;
pub use crate::squashfs::{
Export, Id, Squashfs, SuperBlock, DEFAULT_BLOCK_SIZE, DEFAULT_PAD_LEN, MAX_BLOCK_SIZE,
Expand Down

0 comments on commit a3c8870

Please sign in to comment.