[package]
name = "known-folders"
version = "1.2.0"
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 = [
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnu",
"i686-pc-windows-msvc",
"i686-pc-windows-gnu",
]