Force versions for all Rust Tools
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
[package]
|
||||
name = "tool_helper"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
edition = "2021"
|
||||
|
||||
[profile.release]
|
||||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
byteorder = "*"
|
||||
byteorder = "1.5.0"
|
||||
cdtypes = {path = "../cdtypes"}
|
||||
colored = "*"
|
||||
envmnt = "*"
|
||||
lz4 = "*"
|
||||
paste = "*"
|
||||
colored = "2.0.4"
|
||||
envmnt = "0.10.4"
|
||||
lz4 = "1.24.0"
|
||||
paste = "1.0.14"
|
@@ -78,7 +78,7 @@ pub fn strip_lz4(compressed_data: Vec<u8>) -> Result<Vec<u8>, Error> {
|
||||
raw_data = &raw_data[std::mem::size_of::<u32>()..];
|
||||
|
||||
if bit_set_u32(block_size, 31) {
|
||||
return Err(Error::from_str("Stripping uncompressed data is not supported!"));
|
||||
return Err(Error::from_str("Stripping uncompressed data is not supported! (If this is an Overlay: try to increase the size of it by adding patterens so that compression actually happens)"));
|
||||
}
|
||||
|
||||
let block_size = block_size as usize;
|
||||
|
Reference in New Issue
Block a user