From 120971fc43db6ba0b6f194f4bd4a66f7e00a4e22 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sun, 2 Jun 2024 02:45:56 -0500 Subject: [PATCH] rename egui-tabs to egui_tabs this is more in line with egui packages --- Cargo.toml | 2 +- egui-tabs/Cargo.toml | 2 +- examples/basic/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2d8d4ab..4cc3ee1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,6 +9,6 @@ rust-version = "1.72" version = "0.26.2" [workspace.dependencies] -egui-tabs = { path = "egui-tabs" } +egui_tabs = { path = "egui-tabs" } egui = "*" egui_extras = "*" diff --git a/egui-tabs/Cargo.toml b/egui-tabs/Cargo.toml index 58510fb..1c4afd1 100644 --- a/egui-tabs/Cargo.toml +++ b/egui-tabs/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "egui-tabs" +name = "egui_tabs" version = "0.1.0" edition = "2021" diff --git a/examples/basic/Cargo.toml b/examples/basic/Cargo.toml index 4ba4c8d..a1ee64d 100644 --- a/examples/basic/Cargo.toml +++ b/examples/basic/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -egui-tabs = { workspace = true } +egui_tabs = { workspace = true } egui = "0.27.2" egui_extras = "0.27.2" eframe = "0.27.2"