Force versions for all Rust Tools

This commit is contained in:
Jaby
2024-01-03 17:59:08 -06:00
parent da6e8e467b
commit 48e2e83a3b
10 changed files with 24 additions and 24 deletions

View File

@@ -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"

View File

@@ -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;