[package]
edition = "2021"
rust-version = "1.70"
name = "security-rs"
version = "0.1.0"
authors = ["Per Johansson <per@doom.fish>"]
build = "build.rs"
include = [
"src/**/*",
"examples/**/*",
"build.rs",
"Cargo.toml",
"README.md",
"LICENSE-*",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust bindings for Apple's Security framework — keychain, certificates, trust, code signing, and CSPRNG on macOS"
homepage = "https://github.com/doom-fish/security-rs"
readme = "README.md"
keywords = [
"security",
"keychain",
"certificates",
"macos",
"apple",
]
categories = [
"api-bindings",
"os::macos-apis",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/doom-fish/security-rs"
[package.metadata.docs.rs]
all-features = true
default-target = "aarch64-apple-darwin"
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[features]
default = []
[lib]
name = "security"
crate-type = ["lib"]
path = "src/lib.rs"
[[example]]
name = "01_smoke"
path = "examples/01_smoke.rs"
[dependencies.apple-cf]
version = ">=0.4.0, <0.6"
[dependencies.libc]
version = "0.2"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
[profile.release]
debug = 2
strip = "none"