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

@ -7,6 +7,6 @@ edition = "2021"
panic = "abort" panic = "abort"
[dependencies] [dependencies]
byteorder = "*" byteorder = "1.5.0"
paste = "*" chrono = "0.4.31"
chrono = "*" paste = "1.0.14"

View File

@ -7,5 +7,5 @@ edition = "2021"
panic = "abort" panic = "abort"
[dependencies] [dependencies]
clap = {version = "*", features = ["derive"]} clap = {version = "4.4.11", features = ["derive"]}
tool_helper = {path = "../tool_helper"} tool_helper = {path = "../tool_helper"}

View File

@ -7,8 +7,8 @@ edition = "2021"
panic = "abort" panic = "abort"
[dependencies] [dependencies]
clap = {version = "*", features = ["derive"]} clap = {version = "4.4.11", features = ["derive"]}
image = "*" image = "0.24.7"
paste = "*" paste = "1.0.14"
png = "*" png = "0.17.10"
tool_helper = {path = "../tool_helper"} tool_helper = {path = "../tool_helper"}

View File

@ -7,6 +7,6 @@ edition = "2021"
panic = "abort" panic = "abort"
[dependencies] [dependencies]
clap = {version = "*", features = ["derive"]} clap = {version = "4.4.11", features = ["derive"]}
serde_json = "*" serde_json = "1.0.108"
tool_helper = {path = "../tool_helper"} tool_helper = {path = "../tool_helper"}

View File

@ -1,6 +1,6 @@
[package] [package]
name = "psxcdgen_ex" name = "psxcdgen_ex"
version = "0.2.1" version = "0.2.2"
edition = "2021" edition = "2021"
[profile.release] [profile.release]

View File

@ -7,8 +7,8 @@ edition = "2021"
panic = "abort" panic = "abort"
[dependencies] [dependencies]
clap = {version = "*", features = ["derive"]} clap = {version = "4.4.11", features = ["derive"]}
crossterm = "*" crossterm = "0.27.0"
ratatui = "0.25.0"
readmap = {version = "*", path = "readmap"} readmap = {version = "*", path = "readmap"}
tool_helper = {version = "*", path = "../tool_helper"} tool_helper = {version = "*", path = "../tool_helper"}
ratatui = "*"

View File

@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
num-traits = "*" num-traits = "0.2.17"
tool_helper = {version = "*", path = "../../tool_helper"} tool_helper = {version = "*", path = "../../tool_helper"}

View File

@ -1,15 +1,15 @@
[package] [package]
name = "tool_helper" name = "tool_helper"
version = "0.9.0" version = "0.9.1"
edition = "2021" edition = "2021"
[profile.release] [profile.release]
panic = "abort" panic = "abort"
[dependencies] [dependencies]
byteorder = "*" byteorder = "1.5.0"
cdtypes = {path = "../cdtypes"} cdtypes = {path = "../cdtypes"}
colored = "*" colored = "2.0.4"
envmnt = "*" envmnt = "0.10.4"
lz4 = "*" lz4 = "1.24.0"
paste = "*" 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>()..]; raw_data = &raw_data[std::mem::size_of::<u32>()..];
if bit_set_u32(block_size, 31) { 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; let block_size = block_size as usize;

View File

@ -7,4 +7,4 @@ edition = "2021"
panic = "abort" panic = "abort"
[dependencies] [dependencies]
clap = {version = "*", features = ["derive"]} clap = {version = "4.4.7", features = ["derive"]}