-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (40 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
44
45
46
[package]
name = "pathos"
description = "A natural API for handling OS-specific user or system directories, including iOS and Android."
version = "0.3.0"
authors = ["Brendan Molloy <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/bbqsrc/pathos"
categories = ["filesystem", "os", "os::linux-apis", "os::macos-apis", "os::windows-apis"]
keywords = ["paths", "dirs", "folders", "xdg"]
[dependencies]
iref = "1.4.3"
thiserror = "1.0.21"
once_cell = "1.4.1"
log = "0.4.11"
libc = "0.2.79"
os_str_bytes = "2.3.2"
percent-encoding = "2.1.0"
eieio = "1.0.0"
[target.'cfg(windows)'.dependencies]
windirs = "1"
[target.'cfg(target_vendor = "apple")'.dependencies]
fruity = { package = "fruity__bbqsrc", version = "0.2.0", features = ["foundation"] }
[dev-dependencies]
whoami = "1.1.0"
[features]
ios = []
android = []
macos = []
windows = []
linux = []
xdg = []
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-ios",
"aarch64-linux-android",
]