| Crates.io | winmsg |
| lib.rs | winmsg |
| version | 0.1.2 |
| created_at | 2023-09-16 15:45:27.699338+00 |
| updated_at | 2024-05-12 16:29:28.423599+00 |
| description | feature rich message box in windows |
| homepage | https://github.com/thewh1teagle/winmsg |
| repository | https://github.com/thewh1teagle/winmsg |
| max_upload_size | |
| id | 974411 |
| size | 10,627 |
Feature rich Rust crate for creating a message box in Windows
cargo add winmsg
use winmsg::{message_box, Options};
fn main() {
message_box(Options {
title: "Hello world!".into(),
description: "How are you?".into(),
..Default::default()
});
}
See examples