| Crates.io | kfuz2_lib |
| lib.rs | kfuz2_lib |
| version | 1.6.3 |
| created_at | 2025-05-16 11:04:06.492718+00 |
| updated_at | 2025-05-16 23:03:03.473098+00 |
| description | Creates uz2 files and does it fast. |
| homepage | |
| repository | https://github.com/InsultingPros/KFRedirectTool/tree/main/crates/kfuz2_lib |
| max_upload_size | |
| id | 1676350 |
| size | 50,853 |
A Rust library for creating uz2 redirect files for Killing Floor 1 / Unreal Engine 2.5 games.
[dependencies]
kfuz2_lib = "1"
Compiler support: requires rustc 1.85+
use kfuz2_lib::helper::try_to_compress;
use kfuz2_lib::types::InputArguments;
let mut input_arguments = InputArguments {
input_path: path_to_unreal_file,
output_path: path_to_desired_output_directory,
log_level: kfuz2_lib::types::LogLevel::Default,
ignore_kf_files: true,
};
try_to_compress(&mut input_arguments)?;