apple-objc-sys 0.0.1

Minimal ObjC runtime FFI for Apple frameworks — no cc, no .m files
Documentation
1
2
3
4
5
6
fn main() {
    // libobjc is always present on Apple platforms.
    println!("cargo:rustc-link-lib=dylib=objc");
    // CoreFoundation for CFRelease, CFStringCreate, etc.
    println!("cargo:rustc-link-lib=framework=CoreFoundation");
}