9 releases

0.3.0 May 22, 2024
0.2.0 Apr 7, 2024
0.1.6 Apr 2, 2024
0.1.5 Mar 31, 2024

#2172 in GUI

Download history

809 downloads per month

Apache-2.0 OR MIT

205KB
5.5K 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::*};

fn main() {
    app::init("mb.dll").unwrap();
    let view = WebView::default();
    view.load_url("https://example.com");
    view.on_close(|_| std::process::exit(0));
    view.show();
    app::run_message_loop();
}

Dependencies

~115KB