ZIm/crates/dap
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
..
docs Debugger implementation (#13433) 2025-03-18 12:55:25 -04:00
src Keep file permissions when extracting zip archives on Unix (#31304) 2025-05-23 20:45:32 +00:00
Cargo.toml debugger: Add telemetry for new session experience (#31171) 2025-05-22 11:15:33 +00:00
LICENSE-GPL Debugger implementation (#13433) 2025-03-18 12:55:25 -04:00