8 releases

0.2.0 Apr 7, 2024
0.1.6 Apr 2, 2024
0.1.5 Mar 31, 2024

#212 in GUI

Download history 208/week @ 2024-03-15 242/week @ 2024-03-22 407/week @ 2024-03-29 127/week @ 2024-04-05

984 downloads per month

Apache-2.0 OR MIT

405KB
10K SLoC

miniblink

Rust safe bindings to miniblink49

It's now under development, not ready for production.

The api in this crate may change in the future.

use miniblink::prelude::*;
use miniblink::{app, webview::WebView};

fn main() {
    app::initialize("node.dll").unwrap();

    let wv = WebView::default();
    wv.load_url("https://example.com");
    wv.show_window(true);

    wv.on_window_closing(|_| {
        std::process::exit(0);
    });

    app::run_message_loop();
}

Dependencies

~141MB
~2.5M SLoC