First of all, thank you for maintaining this crate!
Regarding the example code in the crate's documentation, I have a couple of questions:
Firstly, the documentation builds for the two most recent versions have failed, in case that is significant.
Regarding the last successful build: in the final code example of the documentation, the section beginning with:
# #[cfg(feature = "archive-tar")]
...why is it possible to use std::fs::File::open directly? Particularly as the standard library describes it as "Attempts to open a file in read-only mode.", and the file does not exist.
First of all, thank you for maintaining this crate!
Regarding the example code in the crate's documentation, I have a couple of questions:
Firstly, the documentation builds for the two most recent versions have failed, in case that is significant.
Regarding the last successful build: in the final code example of the documentation, the section beginning with:
# #[cfg(feature = "archive-tar")]...why is it possible to use std::fs::File::open directly? Particularly as the standard library describes it as "Attempts to open a file in read-only mode.", and the file does not exist.