Renamed to adhere to naming standards

This commit is contained in:
Entity 2024-10-18 20:21:51 +00:00
parent 70462d91db
commit 93cda74650
Signed by: Entity
SSH Key Fingerprint: SHA256:zdOcLEK0rgkzxXEN6vZ1EuWYnQSp4+5l+j2y3omc7Tk
2 changed files with 12 additions and 12 deletions

20
Cargo.lock generated
View File

@ -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"

View File

@ -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]