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(feature = "unstable-darwin-objc", feature(darwin_objc))]
13#![cfg_attr(docsrs, feature(doc_cfg))]
14// Update in Cargo.toml as well.
15#![doc(html_root_url = "https://docs.rs/objc2-quartz-core/0.3.2")]
16
17#[cfg(feature = "alloc")]
18extern crate alloc;
19
20#[cfg(feature = "std")]
21extern crate std;
22
23mod generated;
24#[allow(unused_imports, unreachable_pub)]
25pub use self::generated::*;