objc2_photos/lib.rs
1//! # Bindings to the `PhotoKit` framework
2//!
3//! See [Apple's docs][apple-doc] and [the general docs on framework crates][framework-crates] for more information.
4//!
5//! [apple-doc]: https://developer.apple.com/documentation/photos/
6//! [framework-crates]: https://docs.rs/objc2/latest/objc2/topics/about_generated/index.html
7//!
8//! This actually lives in the `Photos` framework, but `PhotoKit` is the name
9//! that people use to refer to it.
10#![no_std]
11#![cfg_attr(feature = "unstable-darwin-objc", feature(darwin_objc))]
12#![cfg_attr(docsrs, feature(doc_cfg))]
13// Update in Cargo.toml as well.
14#![doc(html_root_url = "https://docs.rs/objc2-photos/0.3.2")]
15
16#[cfg(feature = "alloc")]
17extern crate alloc;
18
19#[cfg(feature = "std")]
20extern crate std;
21
22mod generated;
23#[allow(unused_imports, unreachable_pub)]
24pub use self::generated::*;