1 | [package] |
2 | name = "xdg-home" |
3 | version = "1.1.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 | winapi = { version = "0.3" , features = [ |
22 | "combaseapi" , |
23 | "knownfolders" , |
24 | "shlobj" , |
25 | "winerror" , |
26 | ] } |
27 | |