diff options
| author | Igor Tolmachev <me@igorek.dev> | 2024-06-27 16:15:00 +0900 |
|---|---|---|
| committer | Igor Tolmachev <me@igorek.dev> | 2024-06-29 21:18:46 +0900 |
| commit | 51694e1f0b2730915e0a57ec6d8de503cf06ef9a (patch) | |
| tree | 165f3adbc29f96814b57aeba394fb4045af7c5f0 /src/lib.rs | |
| parent | a867677218c1d55dadfcac1ca5b8cd32a78a3c28 (diff) | |
| download | archivator-51694e1f0b2730915e0a57ec6d8de503cf06ef9a.tar.gz archivator-51694e1f0b2730915e0a57ec6d8de503cf06ef9a.zip | |
Create file driver and implement file reader
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
| @@ -1,5 +1,6 @@ | |||
| 1 | mod archive; | 1 | mod archive; |
| 2 | mod error; | 2 | mod error; |
| 3 | mod file; | ||
| 3 | 4 | ||
| 4 | pub mod driver; | 5 | pub mod driver; |
| 5 | pub mod structs; | 6 | pub mod structs; |
| @@ -7,4 +8,6 @@ pub mod zip; | |||
| 7 | 8 | ||
| 8 | pub use archive::Archive; | 9 | pub use archive::Archive; |
| 9 | pub use error::{ArchiveError, ArchiveResult}; | 10 | pub use error::{ArchiveError, ArchiveResult}; |
| 11 | pub use file::ArchiveFile; | ||
| 12 | |||
| 10 | pub use zip::Zip; | 13 | pub use zip::Zip; |
