2 unstable releases

0.2.0 Jan 30, 2023
0.1.3 Jul 23, 2022
0.1.2 Jul 23, 2022

#144 in macOS and iOS APIs

Download history 11378/week @ 2023-11-28 10796/week @ 2023-12-05 8982/week @ 2023-12-12 8900/week @ 2023-12-19 10120/week @ 2023-12-26 9944/week @ 2024-01-02 9334/week @ 2024-01-09 8658/week @ 2024-01-16 8345/week @ 2024-01-23 10482/week @ 2024-01-30 12069/week @ 2024-02-06 7505/week @ 2024-02-13 5123/week @ 2024-02-20 6796/week @ 2024-02-27 7619/week @ 2024-03-05 3817/week @ 2024-03-12

24,023 downloads per month
Used in 6 crates (via apple-sys)

BSD-2-Clause

16KB
341 lines

apple-sys

Apple platforms have a rather monotonous programming environment compared to other platforms. On several development machines, we will dependably obtain the same bindgen result. Then why not simply having bindgen configurations for the frameworks?

How to use?

To add CoreFoundation and IOKit, try to run:

$ cargo add apple-sys --features=CoreFoundation,IOKit

If you are using older version of cargo, try to add to Cargo.toml:

apple-sys = { version = "*", features=["CoreFoundation", "IOKit"] }

The names of the features and the frameworks are same. To see the full list, check the project’s features in the Cargo.toml file.

The feature names are the module names. Everything is single-depth. There are no nested modules.

use apple_sys::{CoreFoundation, IOKit};

// CoreFoundation::<any name>
// IOKit::<any name>

apple-bindgen

The bindgen tool is installable and generating the same result to apple-sys crates. To create a new -sys project, starting with apple-bindgen result will be a convenient way.

Install:

$ cargo install apple-bindgen

To generate CoreFoundation bindings,

$ apple-bindgen CoreFoundation --sdk macosx

To generate UIKit bindings for iOS,

$ apple-bindgen UIKit --sdk iphoneos

Why apple-sys?

apple-sys contains auto-generated bindgen modules for Apple platforms. As long as we use the same versions of SDKs and bindgen, the result will be reproducible.

Why not apple-sys?

Continually using the same SDKs doesn't sound realistic. I agree. Don’t trust apple-sys. Use the managed versions as best you can. For CoreFoundation, for instance, use core-foundation-sys.

Then why do I use apple-sys? I created apple-sys for minor and unmanaged frameworks. apple-sys will be the last fallback.

Contributing

There are no plans for apple-sys to distribute generated or manually changed code. We shall just manage bindgen rules. Look in the project root directory's "bindgen/Bindgen.toml" file.

Dependencies

~5.5–8MB
~144K SLoC