objc2_carbon/lib.rs
1//! # Bindings to the `Carbon` framework
2//!
3//! This is currently empty. [Open an issue][new-issue] if you need to use
4//! symbols from this framework.
5//!
6//! [new-issue]: https://github.com/madsmtm/objc2/issues/new
7#![no_std]
8#![cfg_attr(feature = "unstable-darwin-objc", feature(darwin_objc))]
9
10#[cfg(feature = "alloc")]
11extern crate alloc;
12
13#[cfg(feature = "std")]
14extern crate std;
15
16mod generated;
17#[allow(unused_imports, unreachable_pub)]
18pub use self::generated::*;