Open omerbenamram opened 5 years ago
Hi @mitsuhiko,
The code currently doesn't build on windows on latest stable rust. I'm not sure on what version it last compiled, since PathBuf::new() doesn't accept any parameters.
PathBuf::new()
Also, String::from_utf8 expected a Vec.
String::from_utf8
Vec
It compiles and works fine with this change.
Thanks for this lovely tool :)
I have created a now maintained fork of this tool called unpack as this project appears to be unmaintained.
unpack
It can be installed with cargo install unpack.
cargo install unpack
Hi @mitsuhiko,
The code currently doesn't build on windows on latest stable rust. I'm not sure on what version it last compiled, since
PathBuf::new()
doesn't accept any parameters.Also,
String::from_utf8
expected aVec
.It compiles and works fine with this change.
Thanks for this lovely tool :)