Skip to content

Commit 5946db3

Browse files
authored
fix: build warning in windows_reserved_names_are_allowed (#15206)
A recent change removed use of the `is_ci` function, but didn't remove the `use` statement.
2 parents 684bca2 + 44de80f commit 5946db3

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cargo-test-support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-test-support"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
edition.workspace = true
55
rust-version = "1.84" # MSRV:1
66
license.workspace = true

crates/cargo-test-support/src/paths.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,6 @@ pub fn sysroot() -> String {
371371
/// determines whether we are running in a mode that allows Windows reserved names.
372372
#[cfg(windows)]
373373
pub fn windows_reserved_names_are_allowed() -> bool {
374-
use cargo_util::is_ci;
375-
376374
use std::ffi::OsStr;
377375
use std::os::windows::ffi::OsStrExt;
378376
use std::ptr;

0 commit comments

Comments
 (0)