1 | [package] |
2 | name = "directories" |
3 | version = "6.0.0" |
4 | authors = ["Simon Ochsenreither <simon@ochsenreither.de>" ] |
5 | description = "A tiny mid-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows and macOS by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS." |
6 | readme = "README.md" |
7 | license = "MIT OR Apache-2.0" |
8 | repository = "https://github.com/soc/directories-rs" |
9 | maintenance = { status = "actively-developed" } |
10 | keywords = ["xdg" , "basedir" , "app_dirs" , "path" , "folder" ] |
11 | |
12 | [dependencies] |
13 | dirs-sys = "0.5.0" |
14 | |
15 | [dev-dependencies] |
16 | bencher = "0.1.5" |
17 | |
18 | [[bench]] |
19 | name = "constructors" |
20 | harness = false |
21 | |