-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.11 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
[package]
name = "known-folders"
version = "1.2.0" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
license = "Apache-2.0 OR MIT"
edition = "2021"
rust-version = "1.60.0"
readme = "README.md"
repository = "https://github.com/artichoke/known-folders-rs"
documentation = "https://docs.rs/known-folders"
homepage = "https://github.com/artichoke/known-folders-rs"
description = "A safe wrapper around the Known Folders API on Windows"
keywords = ["app_dirs", "known-folder", "path", "windows"]
categories = ["api-bindings", "filesystem", "os::windows-apis"]
include = ["examples/**/*", "src/**/*", "tests/**/*", "LICENSE-*", "README.md"]
[dependencies]
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_Foundation",
"Win32_Globalization",
"Win32_System_Com",
"Win32_UI_Shell",
]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
targets = [
# Tier 1
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnu",
"i686-pc-windows-msvc",
"i686-pc-windows-gnu",
# Tier 2
# "aarch64-pc-windows-msvc",
# "i586-pc-windows-msvc",
]