1 | [package] |
2 | name = "dirs-sys-next" |
3 | version = "0.1.2" |
4 | authors = ["The @xdg-rs members" ] |
5 | description = "system-level helper functions for the dirs and directories crates" |
6 | edition = "2018" |
7 | readme = "README.md" |
8 | license = "MIT OR Apache-2.0" |
9 | repository = "https://github.com/xdg-rs/dirs/tree/master/dirs-sys" |
10 | include = [ |
11 | '/CHANGELOG.md' , |
12 | '/Cargo.toml' , |
13 | '/LICENSE-*' , |
14 | '/README.md' , |
15 | '/src' , |
16 | ] |
17 | |
18 | [badges] |
19 | maintenance = { status = "as-is" } |
20 | |
21 | [target.'cfg(unix)'.dependencies] |
22 | libc = "0.2" |
23 | |
24 | [target.'cfg(target_os = "redox")'.dependencies] |
25 | redox_users = { version = "0.4.0" , default-features = false } |
26 | |
27 | [target.'cfg(windows)'.dependencies] |
28 | winapi = { version = "0.3" , features = ["knownfolders" , "objbase" , "shlobj" , "winbase" , "winerror" ] } |
29 | |