1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

whoami: remove unused libc dependency

This commit is contained in:
siddharthteli12 2025-04-19 13:52:41 +05:30
parent 74e353dec0
commit 5a02e74e8b
2 changed files with 0 additions and 4 deletions

1
Cargo.lock generated
View file

@ -3557,7 +3557,6 @@ name = "uu_whoami"
version = "0.0.30" version = "0.0.30"
dependencies = [ dependencies = [
"clap", "clap",
"libc",
"uucore", "uucore",
"windows-sys 0.59.0", "windows-sys 0.59.0",
] ]

View file

@ -28,9 +28,6 @@ windows-sys = { workspace = true, features = [
"Win32_Foundation", "Win32_Foundation",
] } ] }
[target.'cfg(unix)'.dependencies]
libc = { workspace = true }
[[bin]] [[bin]]
name = "whoami" name = "whoami"
path = "src/main.rs" path = "src/main.rs"