From 609e44b149438e3944868fdc1cfacc5dd6fdc7eb Mon Sep 17 00:00:00 2001 From: Entity Date: Fri, 18 Oct 2024 20:29:46 +0000 Subject: [PATCH] F*ck naming conventions --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 441e337..2fbb627 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,16 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "RemoteShell" +version = "0.1.0" +dependencies = [ + "axum 0.7.7", + "shuttle-axum", + "shuttle-runtime", + "tokio", +] + [[package]] name = "addr2line" version = "0.24.2" @@ -1265,16 +1275,6 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" -[[package]] -name = "remoteshell" -version = "0.1.0" -dependencies = [ - "axum 0.7.7", - "shuttle-axum", - "shuttle-runtime", - "tokio", -] - [[package]] name = "reqwest" version = "0.11.27" diff --git a/Cargo.toml b/Cargo.toml index 60415ed..7568e38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "remoteshell" +name = "RemoteShell" version = "0.1.0" edition = "2021" [[bin]] -name = "remoteshell" +name = "RemoteShell" path = "Source/App.rs" [dependencies]