gpui-component/crates/webview/src/lib.rs
Sunli b70b229370
wef: Added a new WebView component named "Wef" based on CEF. (#877)
Wef is a Rust library for embedding WebView functionality using Chromium
Embedded Framework (CEF3) with offscreen rendering support.
2025-06-17 18:57:44 +08:00

15 lines
236 B
Rust

#![doc = include_str!("../README.md")]
mod browser_handler;
mod context_menu;
mod element;
mod frame_view;
mod utils;
mod webview;
pub mod events;
pub use webview::WebView;
pub use wef;
rust_i18n::i18n!("locales", fallback = "en");