objc2_web_kit/lib.rs
1//! # Bindings to the `WebKit` 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/webkit/
6//! [framework-crates]: https://docs.rs/objc2/latest/objc2/topics/about_generated/index.html
7#![recursion_limit = "512"]
8#![allow(non_snake_case)]
9#![no_std]
10#![cfg_attr(feature = "unstable-darwin-objc", feature(darwin_objc))]
11#![cfg_attr(docsrs, feature(doc_cfg))]
12// Update in Cargo.toml as well.
13#![doc(html_root_url = "https://docs.rs/objc2-web-kit/0.3.2")]
14
15#[cfg(feature = "alloc")]
16extern crate alloc;
17
18#[cfg(feature = "std")]
19extern crate std;
20
21mod generated;
22#[allow(unused_imports, unreachable_pub)]
23pub use self::generated::*;