mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
fs: Fix wrong windows cfg (#51644)
Causes releases on windows to fail due to unused imports Release Notes: - N/A *or* Added/Fixed/Improved ...
This commit is contained in:
parent
ebd80d7995
commit
ec2ab12a06
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ use is_executable::IsExecutable;
|
||||||
use rope::Rope;
|
use rope::Rope;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use smol::io::AsyncWriteExt;
|
use smol::io::AsyncWriteExt;
|
||||||
#[cfg(any(target_os = "windows", feature = "test-support"))]
|
#[cfg(feature = "test-support")]
|
||||||
use std::path::Component;
|
use std::path::Component;
|
||||||
use std::{
|
use std::{
|
||||||
io::{self, Write},
|
io::{self, Write},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue