1[package]
2name = "xdg-home"
3version = "1.1.0"
4edition = "2021"
5authors = ["Zeeshan Ali Khan <zeeshanak@gnome.org>"]
6rust-version = "1.60"
7
8description = "The user's home directory as per XDG Specification"
9repository = "https://github.com/zeenix/xdg-home"
10license = "MIT"
11keywords = ["xdg", "home"]
12categories = ["filesystem", "os::unix-apis", "os::windows-apis"]
13readme = "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]
18libc = "0.2"
19
20[target.'cfg(windows)'.dependencies]
21winapi = { version = "0.3", features = [
22 "combaseapi",
23 "knownfolders",
24 "shlobj",
25 "winerror",
26] }
27