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