Skip to content

Commit

Permalink
Merge 6bd6cd0 into 8c0faa0
Browse files Browse the repository at this point in the history
  • Loading branch information
chalharu committed Jul 22, 2018
2 parents 8c0faa0 + 6bd6cd0 commit d13fb42
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compression"
version = "0.1.1"
version = "0.1.2"
authors = ["Mitsuharu Seki <mitsu1986@gmail.com>"]
repository = "https://github.com/chalharu/rust-compression"
keywords = ["compress", "gzip", "deflate", "bzip2", "no_std"]
Expand Down
2 changes: 1 addition & 1 deletion src/bzip2/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use alloc::string::String;
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
#[cfg(not(feature = "std"))]
use alloc::vec_deque::VecDeque;
use alloc::collections::vec_deque::VecDeque;
use bitio::direction::Direction;
use bitio::direction::left::Left;
use bitio::small_bit_vec::SmallBitVec;
Expand Down
2 changes: 1 addition & 1 deletion src/deflate/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use action::Action;
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
#[cfg(not(feature = "std"))]
use alloc::vec_deque::VecDeque;
use alloc::collections::vec_deque::VecDeque;
use bitio::direction::Direction;
use bitio::direction::right::Right;
use bitio::small_bit_vec::SmallBitVec;
Expand Down
2 changes: 1 addition & 1 deletion src/lzhuf/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use action::Action;
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
#[cfg(not(feature = "std"))]
use alloc::vec_deque::VecDeque;
use alloc::collections::vec_deque::VecDeque;
use bitio::direction::Direction;
use bitio::direction::left::Left;
use bitio::small_bit_vec::SmallBitVec;
Expand Down
2 changes: 1 addition & 1 deletion src/lzss/encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

use action::Action;
#[cfg(not(feature = "std"))]
use alloc::vec_deque::VecDeque;
use alloc::collections::vec_deque::VecDeque;
use core::cmp::{self, Ordering};
use lzss::LzssCode;
use lzss::compare_match_info;
Expand Down

0 comments on commit d13fb42

Please sign in to comment.