split by both path delimiters on windows
Dependencies
- [2]
TTV4YIWFCorrect path splitting on Windows - [3]
WZVCLZKYaddress clippy lints - [4]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [5]
BZSC7VMYaddress clippy lints
Change contents
- replacement in "libpijul/src/path.rs" at line 82
Components(path.split('/'))Components(path.split(&['/'][..])) - replacement in "libpijul/src/path.rs" at line 87
Components(path.split('\\'))Components(path.split(&['/', '\\'][..])) - replacement in "libpijul/src/path.rs" at line 91
pub struct Components<'a>(std::str::Split<'a, char>);pub struct Components<'a>(std::str::Split<'a, &'static [char]>);