From cadb53087b53d890d0f8ca36dd0029267186eda3 Mon Sep 17 00:00:00 2001 From: amrbashir Date: Sat, 7 May 2022 11:19:58 +0200 Subject: [PATCH] rename crate to `muda` --- Cargo.toml | 8 ++++---- README.md | 4 ++-- examples/tao.rs | 2 +- examples/winit.rs | 2 +- src/lib.rs | 3 +-- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b832349..c3345e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] -name = "minit" +name = "muda" version = "0.0.0" -description = "Cross-platform menu creation library." +description = "Menu utilities for Desktop Applications" edition = "2021" keywords = ["windowing", "menu"] license = "Apache-2.0 OR MIT" readme = "README.md" -repository = "https://github.com/amrbashir/minit" -documentation = "https://docs.rs/minit" +repository = "https://github.com/amrbashir/muda" +documentation = "https://docs.rs/muda" categories = ["gui"] [dependencies] diff --git a/README.md b/README.md index e1bd2d9..3c74f61 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# minit +# muda -Cross-platform menu creation library and management in Rust. +Menu utilities for Desktop Applications. ## Example diff --git a/examples/tao.rs b/examples/tao.rs index b4c3992..1aa0661 100644 --- a/examples/tao.rs +++ b/examples/tao.rs @@ -1,4 +1,4 @@ -use minit::{menu_event_receiver, Menu}; +use muda::{menu_event_receiver, Menu}; #[cfg(target_os = "linux")] use tao::platform::unix::WindowExtUnix; #[cfg(target_os = "windows")] diff --git a/examples/winit.rs b/examples/winit.rs index 81950a9..5137c78 100644 --- a/examples/winit.rs +++ b/examples/winit.rs @@ -1,4 +1,4 @@ -use minit::{menu_event_receiver, Menu}; +use muda::{menu_event_receiver, Menu}; #[cfg(target_os = "windows")] use winit::platform::windows::WindowExtWindows; use winit::{ diff --git a/src/lib.rs b/src/lib.rs index f0fbd7a..e3ca153 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ -//! minit is a cross-platform menu creation library. -//! +//! muda is a menu utilities library for Desktop Applications. //! # Creating root menus //! //! Before you can add submenus and menu items, you first need a root or a base menu.