objc2_quartz_core/lib.rs
1//! # Bindings to the `CoreAnimation` 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/quartzcore/
6//! [framework-crates]: https://docs.rs/objc2/latest/objc2/topics/about_generated/index.html
7//!
8//! This actually lives in the `QuartzCore` framework, but `CoreAnimation` is
9//! the name that people use to refer to it.
10#![recursion_limit = "256"]
11#![no_std]
12#![cfg_attr(docsrs, feature(doc_auto_cfg))]
13// Update in Cargo.toml as well.
14#![doc(html_root_url = "https://docs.rs/objc2-quartz-core/0.3.1")]
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::*;