-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 loc) · 1.43 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 = "sysdir"
version = "1.2.2" # 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.64.0"
readme = "README.md"
repository = "https://github.com/artichoke/sysdir-rs"
documentation = "https://docs.rs/sysdir"
homepage = "https://github.com/artichoke/sysdir-rs"
description = "Rust bindings to sysdir(3) on macOS, iOS, tvOS, and watchOS"
keywords = ["app_dirs", "apple", "known-folder", "path", "sysdir"]
categories = ["api-bindings", "filesystem", "no-std", "no-std::no-alloc", "os::macos-apis"]
include = ["cext/**/*", "examples/**/*", "src/**/*", "tests/**/*", "LICENSE-*", "README.md", "sysdir.3"]
[dependencies]
[dev-dependencies]
# Check that crate versions are properly updated in documentation and code when
# bumping the version.
[dev-dependencies.version-sync]
version = "0.9.4"
default-features = false
features = ["markdown_deps_updated", "html_root_url_updated"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
targets = [
# Tier 1
"x86_64-apple-darwin",
# Tier 2
"aarch64-apple-darwin",
# "aarch64-apple-ios",
# "aarch64-apple-ios-sim",
# Tier 3
# "aarch64-apple-ios-macabi",
# "aarch64-apple-tvos",
# "aarch64-apple-watchos-sim",
# "arm64_32-apple-watchos",
# "armv7k-apple-watchos",
# "aarch64-apple-watchos-sim",
# "x86_64-apple-watchos-sim",
# "x86_64h-apple-darwin",
]