19 breaking releases

0.27.0 Jan 17, 2024
0.26.0 Nov 17, 2023
0.25.1 Nov 16, 2023
0.22.0 Dec 21, 2022
0.10.0 Mar 28, 2022

#20 in macOS and iOS APIs

Download history 887/week @ 2024-01-02 1187/week @ 2024-01-09 1065/week @ 2024-01-16 1273/week @ 2024-01-23 1029/week @ 2024-01-30 1051/week @ 2024-02-06 1133/week @ 2024-02-13 1251/week @ 2024-02-20 1237/week @ 2024-02-27 1355/week @ 2024-03-05 1535/week @ 2024-03-12 1490/week @ 2024-03-19 1442/week @ 2024-03-26 1522/week @ 2024-04-02 1461/week @ 2024-04-09 1356/week @ 2024-04-16

6,027 downloads per month
Used in 14 crates (5 directly)

MPL-2.0 license

1MB
24K SLoC

apple-codesign

apple-codesign is a crate implementing functionality related to code signing on Apple platforms.

All functionality is implemented in pure Rust and doesn't require any 3rd party or proprietary software nor do we require running on Apple platforms.

We believe this crate provides the most comprehensive implementation of Apple code signing outside the canonical Apple tools. We have support for the following features:

  • Signing Mach-O binaries (the executable file format on Apple operating systems).
  • Signing, notarizing, and stapling directory bundles (e.g. .app directories).
  • Signing, notarizing, and stapling XAR archives / .pkg installers.
  • Signing, notarizing, and stapling DMG disk images.

What this all means is that you can sign, notarize, and release Apple software from anywhere you can get the Rust crate to compile. Linux, Windows, and macOS are officially supported by other operating systems (like BSDs) should work as well.

See the crate documentation at https://docs.rs/apple-codesign/latest/apple_codesign/ and the end-user documentation at https://gregoryszorc.com/docs/apple-codesign/main/ for more.

rcodesign CLI

This crate defines an rcodesign binary which provides a CLI interface to some of the crate's capabilities. To install:

# From a Git checkout
$ cargo run --bin rcodesign -- --help
$ cargo install --bin rcodesign

# Remote install.
$ cargo install --git https://github.com/indygreg/apple-platform-rs --branch main --bin rcodesign apple-codesign

Dependencies

~41–66MB
~1M SLoC