ZIm/crates/util
Kirill Bulatov 7341ab3980
Keep file permissions when extracting zip archives on Unix (#31304)
Follow-up of https://github.com/zed-industries/zed/pull/31080

Stop doing

```rs
#[cfg(not(windows))]
{
    file.set_permissions(<fs::Permissions as fs::unix::PermissionsExt>::from_mode(
        0o755,
    ))
    .await?;
}
```

after extracting zip archives on Unix, and use an API that provides the
file permissions data for each archive entry.

Release Notes:

- N/A
2025-05-23 20:45:32 +00:00
..
src Keep file permissions when extracting zip archives on Unix (#31304) 2025-05-23 20:45:32 +00:00
Cargo.toml Keep file permissions when extracting zip archives on Unix (#31304) 2025-05-23 20:45:32 +00:00
LICENSE-APACHE chore: Add crate licenses. (#4158) 2024-01-23 16:56:22 +01:00