[package]
edition = "2021"
name = "apple-objc-sys"
version = "0.0.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal ObjC runtime FFI for Apple frameworks — no cc, no .m files"
readme = false
keywords = [
"objc",
"apple",
"ffi",
"runtime",
]
license = "GPL-3.0"
repository = "https://github.com/eugenehp/rswift"
[lib]
name = "apple_objc_sys"
path = "src/lib.rs"
[lints.clippy]
missing_transmute_annotations = "warn"
unnecessary_wraps = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
'cfg(target_os, values("xros", "tvos", "watchos"))',
'cfg(target_abi, values("sim"))',
]