Is your feature request related to a problem? Please describe.
Paths in zip files are always valid &str, but encapsulating it in a std::path::Path will loss this "prove" and make .as_str().unwrap() / .display() noise wherever you want it "back" to &str-ish thing again.
Describe the solution you'd like
Use camino's Path structs on places like simplified_components / file_name_sanitized, can be gated behind a "camino" feature flag
Describe alternatives you've considered
Not reusing the same name to avoid breakage, but still should be gated behind feature flag
Additional context
IDK
Is your feature request related to a problem? Please describe.
Paths in zip files are always valid &str, but encapsulating it in a std::path::Path will loss this "prove" and make .as_str().unwrap() / .display() noise wherever you want it "back" to &str-ish thing again.
Describe the solution you'd like
Use camino's Path structs on places like
simplified_components/file_name_sanitized, can be gated behind a "camino" feature flagDescribe alternatives you've considered
Not reusing the same name to avoid breakage, but still should be gated behind feature flag
Additional context
IDK