[package]
name = "security-framework"
version = "3.7.0"
authors = [
"Steven Fackler <sfackler@gmail.com>",
"Kornel <kornel@geekhood.net>",
]
license = "MIT OR Apache-2.0"
description = "Security.framework bindings for macOS and iOS"
repository = "https://github.com/kornelski/rust-security-framework"
documentation = "https://docs.rs/security_framework"
homepage = "https://lib.rs/crates/security_framework"
categories = ["os::macos-apis", "cryptography", "api-bindings"]
readme = "README.md"
keywords = ["iOS", "TLS", "SSL", "crypto", "keychain"]
exclude = ["test/*"]
edition = "2024"
rust-version = "1.85"
[dependencies]
security-framework-sys = { version = "2.17", default-features = false, path = "../security-framework-sys" }
bitflags = "2.11"
core-foundation = "0.10"
core-foundation-sys = "0.8.6"
libc = "0.2.139"
log = { version = "0.4.20", optional = true }
[dev-dependencies]
hex = "0.4.3"
env_logger = "0.11"
x509-parser = "0.18"
time = "0.3.23"
tempfile = "3.12.0"
[features]
default = ["OSX_10_14", "alpn", "session-tickets"]
alpn = []
session-tickets = []
job-bless = []
sync-keychain = ["OSX_10_13"]
OSX_10_12 = []
OSX_10_13 = []
OSX_10_14 = []
OSX_10_15 = ["security-framework-sys/OSX_10_15"]
macos-12 = ["security-framework-sys/macos-12"]
nightly = []
[lints]
workspace = true
[[example]]
name = "client"
[[example]]
name = "find_internet_password"
[[example]]
name = "set_internet_password"
[package.metadata.docs.rs]
targets = ["x86_64-apple-darwin", "aarch64-apple-ios"]
features = ["OSX_10_15"]
[badges]
maintenance = { status = "looking-for-maintainer" }