1#![no_std]
8#![cfg_attr(docsrs, feature(doc_auto_cfg))]
9#![doc(html_root_url = "https://docs.rs/objc2-ui-kit/0.3.0")]
11#![recursion_limit = "256"]
12
13#[cfg(feature = "alloc")]
14extern crate alloc;
15
16#[cfg(feature = "std")]
17extern crate std;
18
19mod generated;
20#[cfg(feature = "UIGestureRecognizer")]
21mod gesture_recognizer;
22#[cfg(feature = "UIPasteConfigurationSupporting")]
23mod paste_configuration;
24#[cfg(feature = "UIResponder")]
25mod responder;
26#[cfg(test)]
27mod tests;
28#[cfg(feature = "NSText")]
29mod text;
30
31#[allow(unused_imports, unreachable_pub)]
32pub use self::generated::*;
33#[cfg(feature = "UIResponder")]
34pub use self::responder::*;
35#[cfg(feature = "NSText")]
36pub use self::text::*;