-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (24 loc) · 877 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
[package]
name = "standard_paths"
description = """\
A port of QStandardPaths class which provides methods for accessing \
standard paths on the local filesystem (config, cache, user directories \
and etc.).\
"""
version = "2.1.0"
edition = "2021"
authors = ["Petr Tsymbarovich <[email protected]>"]
repository = "https://github.com/mentaljam/standard_paths"
documentation = "https://docs.rs/standard_paths"
keywords = ["standard", "paths", "location", "directory", "storage"]
categories = ["filesystem"]
license = "MIT"
readme = "README.md"
[dependencies]
home = "0.5"
[target.'cfg(target_os = "linux")'.dependencies]
nix = { version = "^0.26", default-features = false, features = ["ioctl", "user"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "^0.3", features = ["shlobj", "combaseapi", "winbase"] }
[dev-dependencies]
argparse = "0.2"