mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
uptime: fix "unused import" warnings with musl
This commit is contained in:
parent
64d308db0e
commit
ed0492a046
1 changed files with 5 additions and 5 deletions
|
@ -12,16 +12,16 @@ use uutests::new_ucmd;
|
|||
use uutests::util::TestScenario;
|
||||
use uutests::util_name;
|
||||
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
|
||||
use bincode::{config, serde::encode_to_vec};
|
||||
use regex::Regex;
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
|
||||
use serde::Serialize;
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
|
||||
use serde_big_array::BigArray;
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
|
||||
use std::fs::File;
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
|
||||
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
|
||||
use std::{io::Write, path::PathBuf};
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue