Skip to content

Commit

Permalink
Rename module to align with its use
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
  • Loading branch information
otavio committed Jul 28, 2021
1 parent e90f0b3 commit 408f3c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ mod error;
mod ffi;
#[cfg(feature = "futures_support")]
pub mod futures_support;
mod iteration;
mod iterator;
#[cfg(feature = "tokio_support")]
pub mod tokio_support;

use error::archive_result;
pub use error::{Error, Result};
use io::{Seek, SeekFrom};
pub use iteration::{into_iter, ArchiveContents, ArchiveIterator};
pub use iterator::{into_iter, ArchiveContents, ArchiveIterator};
use std::{
ffi::{CStr, CString},
io::{self, Read, Write},
Expand Down

0 comments on commit 408f3c8

Please sign in to comment.