security_translocate_sys/
lib.rs

1//! Direct Rust FFI bindings to Apple’s `libsecurity_translocate`, part of the
2//! Security framework, which facilitates the creation and destruction of app
3//! translocation points. These bindings are based on the SecTranslocate header,
4//! available [here](https://github.com/apple-oss-distributions/Security/blob/rel/Security-59754/OSX/libsecurity_translocate/lib/SecTranslocate.h).
5
6mod annotations;
7pub use annotations::*;
8
9mod bindings;
10pub use bindings::*;