From 02c9ef06f51c36f7aeb288b907bcf5fdd3c46881 Mon Sep 17 00:00:00 2001 From: Iaphetes Date: Fri, 31 Oct 2025 12:56:56 +0100 Subject: [PATCH] renamed client --- Cargo.toml | 2 +- {cargo-client => orthros-client}/Cargo.toml | 2 +- {cargo-client => orthros-client}/src/main.rs | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {cargo-client => orthros-client}/Cargo.toml (71%) rename {cargo-client => orthros-client}/src/main.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index fb05e94..f6cb9cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2024" [workspace] resolver="3" -members = ["cargo-client","orthros-network","orthros-server"] +members = ["orthros-client","orthros-network","orthros-server"] [dependencies] orthros_network = {path = "./orthros-network"} diff --git a/cargo-client/Cargo.toml b/orthros-client/Cargo.toml similarity index 71% rename from cargo-client/Cargo.toml rename to orthros-client/Cargo.toml index d17eb7b..4f6e00d 100644 --- a/cargo-client/Cargo.toml +++ b/orthros-client/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "cargo-client" +name = "orthros-client" version = "0.1.0" edition = "2024" diff --git a/cargo-client/src/main.rs b/orthros-client/src/main.rs similarity index 100% rename from cargo-client/src/main.rs rename to orthros-client/src/main.rs