1[package]
2name = "dirs-sys"
3version = "0.5.0"
4authors = ["Simon Ochsenreither <simon@ochsenreither.de>"]
5description = "System-level helper functions for the dirs and directories crates."
6readme = "README.md"
7license = "MIT OR Apache-2.0"
8repository = "https://github.com/dirs-dev/dirs-sys-rs"
9maintenance = { status = "as-is" }
10
11[dependencies]
12option-ext = "0.2.0"
13
14[target.'cfg(unix)'.dependencies]
15libc = "0.2"
16
17[target.'cfg(target_os = "redox")'.dependencies]
18redox_users = { version = "0.5", default-features = false }
19
20[target.'cfg(windows)'.dependencies]
21windows-sys = { version = ">= 0.59.0", features = [
22 "Win32_UI_Shell",
23 "Win32_Foundation",
24 "Win32_Globalization",
25 "Win32_System_Com",
26] }
27