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

Merge pull request #7786 from siddharthteli12/main

whoami: remove unused libc dependency
This commit is contained in:
Daniel Hofstetter 2025-04-19 13:29:14 +02:00 committed by GitHub
commit ed3dad81f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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"