Skip to content

Commit 260fcab

Browse files
committed
refactor(build-rs): Clean up 'use's
1 parent 5e833bf commit 260fcab

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/build-rs/src/output.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
//!
77
//! Reference: <https://doc.rust-lang.org/cargo/reference/build-scripts.html#outputs-of-the-build-script>
88
9+
use std::ffi::OsStr;
10+
use std::path::Path;
11+
use std::{fmt::Display, fmt::Write as _};
12+
913
use crate::ident::{is_ascii_ident, is_ident};
10-
use std::{ffi::OsStr, fmt::Display, fmt::Write, path::Path, str};
1114

1215
fn emit(directive: &str, value: impl Display) {
1316
println!("cargo::{}={}", directive, value);

0 commit comments

Comments
 (0)