1[package]
2name = "xdg-home"
3version = "1.3.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]
21windows-sys = { version = "0.59", features = [
22 "Win32_Foundation",
23 "Win32_UI_Shell",
24 "Win32_System_Com",
25] }
26