Skip to main content

webview2/
lib.rs

1//! WebView2 Win32 bindings for Rust
2//!
3//! This crate provides type bindings to the WebView2 API,
4//! as well as a reimplementation of the WebView2Loader in pure Rust.
5
6mod bindings;
7pub use bindings::*;
8
9mod native;
10pub use native::*;