mirror of
https://github.com/uutils/coreutils
synced 2025-01-11 20:59:21 +00:00
2aed7cb035
- add required handleapi feature for winapi crate - remove unneeded 'unsafe' section - remove unused import (GetDiskFreeSpaceExW) - fix Windows df execution Co-Authored-By: Roy Ivy III <rivy.dev@gmail.com>
21 lines
323 B
TOML
21 lines
323 B
TOML
[package]
|
|
name = "df"
|
|
version = "0.0.1"
|
|
authors = []
|
|
|
|
[lib]
|
|
name = "uu_df"
|
|
path = "df.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.32.0"
|
|
libc = "0.2.42"
|
|
uucore = "0.0.1"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
kernel32-sys = "0.2.2"
|
|
winapi = { version = "0.3", features = ["handleapi"] }
|
|
|
|
[[bin]]
|
|
name = "df"
|
|
path = "main.rs"
|