1 | [package] |
2 | name = "dirs-next" |
3 | version = "2.0.0" |
4 | authors = ["The @xdg-rs members" ] |
5 | description = "" " |
6 | A tiny low-level library that provides platform-specific standard locations |
7 | of directories for config, cache and other data on Linux, Windows, macOS |
8 | and Redox by leveraging the mechanisms defined by the XDG base/user |
9 | directory specifications on Linux, the Known Folder API on Windows, |
10 | and the Standard Directory guidelines on macOS. |
11 | " "" |
12 | edition = "2018" |
13 | readme = "README.md" |
14 | license = "MIT OR Apache-2.0" |
15 | repository = "https://github.com/xdg-rs/dirs" |
16 | keywords = ["xdg" , "basedir" , "app_dirs" , "path" , "folder" ] |
17 | include = [ |
18 | 'CHANGELOG.md' , |
19 | 'Cargo.toml' , |
20 | 'LICENSE-APACHE' , |
21 | 'LICENSE-MIT' , |
22 | 'README.md' , |
23 | '/src/' , |
24 | ] |
25 | |
26 | [badges] |
27 | maintenance = { status = "passively-maintained" } |
28 | |
29 | [dependencies] |
30 | cfg-if = "1.0.0" |
31 | |
32 | [dependencies.dirs-sys-next] |
33 | version = "0.1" |
34 | path = "dirs-sys" |
35 | |
36 | [workspace] |
37 | members = ["dirs-sys" , "directories" ] |
38 | |