diff --git a/src/Tools/cdtypes/Cargo.toml b/src/Tools/cdtypes/Cargo.toml index f174bd26..9cbbcef7 100644 --- a/src/Tools/cdtypes/Cargo.toml +++ b/src/Tools/cdtypes/Cargo.toml @@ -7,6 +7,6 @@ edition = "2021" panic = "abort" [dependencies] -byteorder = "*" -paste = "*" -chrono = "*" \ No newline at end of file +byteorder = "1.5.0" +chrono = "0.4.31" +paste = "1.0.14" \ No newline at end of file diff --git a/src/Tools/cpp_out/Cargo.toml b/src/Tools/cpp_out/Cargo.toml index 3a541ba9..dabfa826 100644 --- a/src/Tools/cpp_out/Cargo.toml +++ b/src/Tools/cpp_out/Cargo.toml @@ -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"} diff --git a/src/Tools/jaby_engine_fconv/Cargo.toml b/src/Tools/jaby_engine_fconv/Cargo.toml index 5d8a41c6..612dbd67 100644 --- a/src/Tools/jaby_engine_fconv/Cargo.toml +++ b/src/Tools/jaby_engine_fconv/Cargo.toml @@ -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"} \ No newline at end of file diff --git a/src/Tools/mkoverlay/Cargo.toml b/src/Tools/mkoverlay/Cargo.toml index 5cb6ee94..70236f70 100644 --- a/src/Tools/mkoverlay/Cargo.toml +++ b/src/Tools/mkoverlay/Cargo.toml @@ -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"} \ No newline at end of file diff --git a/src/Tools/psxcdgen_ex/Cargo.toml b/src/Tools/psxcdgen_ex/Cargo.toml index c06024d5..82af01e6 100644 --- a/src/Tools/psxcdgen_ex/Cargo.toml +++ b/src/Tools/psxcdgen_ex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psxcdgen_ex" -version = "0.2.1" +version = "0.2.2" edition = "2021" [profile.release] diff --git a/src/Tools/psxreadmap/Cargo.toml b/src/Tools/psxreadmap/Cargo.toml index 5e61c914..cd6bf596 100644 --- a/src/Tools/psxreadmap/Cargo.toml +++ b/src/Tools/psxreadmap/Cargo.toml @@ -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 = "*" \ No newline at end of file +tool_helper = {version = "*", path = "../tool_helper"} \ No newline at end of file diff --git a/src/Tools/psxreadmap/readmap/Cargo.toml b/src/Tools/psxreadmap/readmap/Cargo.toml index fc882b61..4a10a424 100644 --- a/src/Tools/psxreadmap/readmap/Cargo.toml +++ b/src/Tools/psxreadmap/readmap/Cargo.toml @@ -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"} \ No newline at end of file diff --git a/src/Tools/tool_helper/Cargo.toml b/src/Tools/tool_helper/Cargo.toml index 4f4a2227..69a477ce 100644 --- a/src/Tools/tool_helper/Cargo.toml +++ b/src/Tools/tool_helper/Cargo.toml @@ -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 = "*" \ No newline at end of file +colored = "2.0.4" +envmnt = "0.10.4" +lz4 = "1.24.0" +paste = "1.0.14" \ No newline at end of file diff --git a/src/Tools/tool_helper/src/compress.rs b/src/Tools/tool_helper/src/compress.rs index fefc72c8..1ca6112d 100644 --- a/src/Tools/tool_helper/src/compress.rs +++ b/src/Tools/tool_helper/src/compress.rs @@ -78,7 +78,7 @@ pub fn strip_lz4(compressed_data: Vec) -> Result, Error> { raw_data = &raw_data[std::mem::size_of::()..]; 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; diff --git a/src/Tools/wslpath/Cargo.toml b/src/Tools/wslpath/Cargo.toml index 74fca504..41248a7b 100644 --- a/src/Tools/wslpath/Cargo.toml +++ b/src/Tools/wslpath/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" panic = "abort" [dependencies] -clap = {version = "*", features = ["derive"]} \ No newline at end of file +clap = {version = "4.4.7", features = ["derive"]} \ No newline at end of file