[package]
edition = "2024"
rust-version = "1.85.0"
name = "sysdir"
version = "1.3.1"
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
build = false
include = [
"/cext/**/*",
"/examples/**/*",
"/src/**/*",
"/tests/**/*",
"/LICENSE-*",
"/README.md",
"/sysdir.3",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings to sysdir(3) on macOS, iOS, tvOS, and watchOS"
homepage = "https://github.com/artichoke/sysdir-rs"
documentation = "https://docs.rs/sysdir"
readme = "README.md"
keywords = [
"app_dirs",
"apple",
"known-folder",
"path",
"sysdir",
]
categories = [
"api-bindings",
"filesystem",
"no-std",
"no-std::no-alloc",
"os::macos-apis",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/artichoke/sysdir-rs"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
targets = [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]
[lib]
name = "sysdir"
path = "src/lib.rs"
[[example]]
name = "enumerate_system_dirs"
path = "examples/enumerate_system_dirs.rs"
[dependencies]