Skip to content

Commit

Permalink
Update to new crate name
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnatsel committed Jun 30, 2019
1 parent 2ab6888 commit 8598b81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ codecov = {repository = "sile/libflate"}
adler32 = "1"
byteorder = "1"
crc32fast = "1"
rle-decode-helper = {git = "https://github.com/Shnatsel/rle-decode-helper.git"}
rle-decode-fast = {git = "https://github.com/Shnatsel/rle-decode-helper.git"}
take_mut = "0.2.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/deflate/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use byteorder::ReadBytesExt;
use std::cmp;
use std::io;
use std::io::Read;
use rle_decode_helper::rle_decode;
use rle_decode_fast::rle_decode;

use super::symbol;
use bit;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
extern crate adler32;
extern crate byteorder;
extern crate crc32fast;
extern crate rle_decode_helper;
extern crate rle_decode_fast;
extern crate take_mut;

pub use finish::Finish;
Expand Down

0 comments on commit 8598b81

Please sign in to comment.