ZIm/crates/dap_adapters/src
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
..
codelldb.rs Keep file permissions when extracting zip archives on Unix (#31304) 2025-05-23 20:45:32 +00:00
dap_adapters.rs debugger: Use DAP schema to configure daps (#30833) 2025-05-22 05:48:26 -04:00
gdb.rs debugger beta: Fix dap_schema for DAP extensions (#31173) 2025-05-22 07:24:46 -04:00
go.rs debugger beta: Auto download Delve (Go's DAP) & fix grammar errors in docs (#31273) 2025-05-23 14:19:24 +00:00
javascript.rs debugger beta: Fix dap_schema for DAP extensions (#31173) 2025-05-22 07:24:46 -04:00
php.rs debugger beta: Fix panic that could occur when parsing an invalid dap schema (#31175) 2025-05-22 07:25:07 -04:00
python.rs debugger: Detect debugpy from virtual env (#31211) 2025-05-23 13:34:07 +02:00
ruby.rs debugger beta: Fix dap_schema for DAP extensions (#31173) 2025-05-22 07:24:46 -04:00