mirror of
https://github.com/italicsjenga/muda.git
synced 2024-12-23 20:11:29 +11:00
rename crate to muda
This commit is contained in:
parent
7021b6c585
commit
cadb53087b
|
@ -1,13 +1,13 @@
|
||||||
[package]
|
[package]
|
||||||
name = "minit"
|
name = "muda"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
description = "Cross-platform menu creation library."
|
description = "Menu utilities for Desktop Applications"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
keywords = ["windowing", "menu"]
|
keywords = ["windowing", "menu"]
|
||||||
license = "Apache-2.0 OR MIT"
|
license = "Apache-2.0 OR MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/amrbashir/minit"
|
repository = "https://github.com/amrbashir/muda"
|
||||||
documentation = "https://docs.rs/minit"
|
documentation = "https://docs.rs/muda"
|
||||||
categories = ["gui"]
|
categories = ["gui"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# minit
|
# muda
|
||||||
|
|
||||||
Cross-platform menu creation library and management in Rust.
|
Menu utilities for Desktop Applications.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use minit::{menu_event_receiver, Menu};
|
use muda::{menu_event_receiver, Menu};
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
use tao::platform::unix::WindowExtUnix;
|
use tao::platform::unix::WindowExtUnix;
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use minit::{menu_event_receiver, Menu};
|
use muda::{menu_event_receiver, Menu};
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
use winit::platform::windows::WindowExtWindows;
|
use winit::platform::windows::WindowExtWindows;
|
||||||
use winit::{
|
use winit::{
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
//! minit is a cross-platform menu creation library.
|
//! muda is a menu utilities library for Desktop Applications.
|
||||||
//!
|
|
||||||
//! # Creating root menus
|
//! # Creating root menus
|
||||||
//!
|
//!
|
||||||
//! Before you can add submenus and menu items, you first need a root or a base menu.
|
//! Before you can add submenus and menu items, you first need a root or a base menu.
|
||||||
|
|
Loading…
Reference in a new issue