From 93cda746509a0133af178d95820775da0f027289 Mon Sep 17 00:00:00 2001 From: Entity Date: Fri, 18 Oct 2024 20:21:51 +0000 Subject: [PATCH] Renamed to adhere to naming standards --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2fbb627..441e337 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,16 +2,6 @@ # 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" @@ -1275,6 +1265,16 @@ 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 7568e38..60415ed 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]