forked from xdg-rs/dirs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 956 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "dirs-next"
version = "2.0.0"
authors = ["The @xdg-rs members"]
description = """
A tiny low-level library that provides platform-specific standard locations
of directories for config, cache and other data on Linux, Windows, macOS
and Redox 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.
"""
edition = "2018"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/xdg-rs/dirs"
keywords = ["xdg", "basedir", "app_dirs", "path", "folder"]
include = [
'CHANGELOG.md',
'Cargo.toml',
'LICENSE-APACHE',
'LICENSE-MIT',
'README.md',
'/src/',
]
[badges]
maintenance = { status = "passively-maintained" }
[dependencies]
[dependencies.dirs-sys-next]
version = "0.1"
path = "dirs-sys"
[workspace]
members = ["dirs-sys", "directories"]