| 1 | [package] |
| 2 | name = "xdg-home" |
| 3 | version = "1.3.0" |
| 4 | edition = "2021" |
| 5 | authors = ["Zeeshan Ali Khan <zeeshanak@gnome.org>" ] |
| 6 | rust-version = "1.60" |
| 7 | |
| 8 | description = "The user's home directory as per XDG Specification" |
| 9 | repository = "https://github.com/zeenix/xdg-home" |
| 10 | license = "MIT" |
| 11 | keywords = ["xdg" , "home" ] |
| 12 | categories = ["filesystem" , "os::unix-apis" , "os::windows-apis" ] |
| 13 | readme = "README.md" |
| 14 | |
| 15 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 16 | |
| 17 | [target.'cfg(unix)'.dependencies] |
| 18 | libc = "0.2" |
| 19 | |
| 20 | [target.'cfg(windows)'.dependencies] |
| 21 | windows-sys = { version = "0.59" , features = [ |
| 22 | "Win32_Foundation" , |
| 23 | "Win32_UI_Shell" , |
| 24 | "Win32_System_Com" , |
| 25 | ] } |
| 26 | |