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
9#[cfg(feature = "alloc")]
10extern crate alloc;
11
12#[cfg(feature = "std")]
13extern crate std;
14
15mod generated;
16#[allow(unused_imports, unreachable_pub)]
17pub use self::generated::*;