Force versions for all Rust Tools
This commit is contained in:
parent
da6e8e467b
commit
48e2e83a3b
|
@ -7,6 +7,6 @@ edition = "2021"
|
|||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
byteorder = "*"
|
||||
paste = "*"
|
||||
chrono = "*"
|
||||
byteorder = "1.5.0"
|
||||
chrono = "0.4.31"
|
||||
paste = "1.0.14"
|
|
@ -7,5 +7,5 @@ edition = "2021"
|
|||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
clap = {version = "*", features = ["derive"]}
|
||||
clap = {version = "4.4.11", features = ["derive"]}
|
||||
tool_helper = {path = "../tool_helper"}
|
||||
|
|
|
@ -7,8 +7,8 @@ edition = "2021"
|
|||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
clap = {version = "*", features = ["derive"]}
|
||||
image = "*"
|
||||
paste = "*"
|
||||
png = "*"
|
||||
clap = {version = "4.4.11", features = ["derive"]}
|
||||
image = "0.24.7"
|
||||
paste = "1.0.14"
|
||||
png = "0.17.10"
|
||||
tool_helper = {path = "../tool_helper"}
|
|
@ -7,6 +7,6 @@ edition = "2021"
|
|||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
clap = {version = "*", features = ["derive"]}
|
||||
serde_json = "*"
|
||||
clap = {version = "4.4.11", features = ["derive"]}
|
||||
serde_json = "1.0.108"
|
||||
tool_helper = {path = "../tool_helper"}
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "psxcdgen_ex"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
edition = "2021"
|
||||
|
||||
[profile.release]
|
||||
|
|
|
@ -7,8 +7,8 @@ edition = "2021"
|
|||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
clap = {version = "*", features = ["derive"]}
|
||||
crossterm = "*"
|
||||
clap = {version = "4.4.11", features = ["derive"]}
|
||||
crossterm = "0.27.0"
|
||||
ratatui = "0.25.0"
|
||||
readmap = {version = "*", path = "readmap"}
|
||||
tool_helper = {version = "*", path = "../tool_helper"}
|
||||
ratatui = "*"
|
|
@ -6,5 +6,5 @@ edition = "2021"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
num-traits = "*"
|
||||
num-traits = "0.2.17"
|
||||
tool_helper = {version = "*", path = "../../tool_helper"}
|
|
@ -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;
|
||||
|
|
|
@ -7,4 +7,4 @@ edition = "2021"
|
|||
panic = "abort"
|
||||
|
||||
[dependencies]
|
||||
clap = {version = "*", features = ["derive"]}
|
||||
clap = {version = "4.4.7", features = ["derive"]}
|
Loading…
Reference in New Issue