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