Crates.io | apple-codesign |
lib.rs | apple-codesign |
version | 0.28.0 |
source | src |
created_at | 2022-03-06 18:30:48.015102 |
updated_at | 2024-11-03 01:47:41.102462 |
description | Pure Rust interface to code signing on Apple platforms |
homepage | https://github.com/indygreg/apple-platform-rs |
repository | https://github.com/indygreg/apple-platform-rs.git |
max_upload_size | |
id | 544615 |
size | 2,093,560 |
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:
.app
directories)..pkg
installers.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
CLIThis 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