From 52b5da658c83548f9e1eb33076a58f919f655afb Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 8 Jun 2026 09:08:13 +0100 Subject: [PATCH] rename joeac-build -> shapi --- Cargo.lock | 26 +++++++++++++------------- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33f324c..d012bfd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -681,19 +681,6 @@ dependencies = [ "libc", ] -[[package]] -name = "joeac-build" -version = "0.1.0" -dependencies = [ - "anyhow", - "dirs", - "git2", - "is_executable", - "rocket", - "serde", - "toml 1.1.2+spec-1.1.0", -] - [[package]] name = "lazy_static" version = "1.5.0" @@ -1316,6 +1303,19 @@ dependencies = [ "serde_core", ] +[[package]] +name = "shapi" +version = "0.1.0" +dependencies = [ + "anyhow", + "dirs", + "git2", + "is_executable", + "rocket", + "serde", + "toml 1.1.2+spec-1.1.0", +] + [[package]] name = "sharded-slab" version = "0.1.7" diff --git a/Cargo.toml b/Cargo.toml index 2416a19..674120a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "joeac-build" +name = "shapi" version = "0.1.0" edition = "2024" diff --git a/src/main.rs b/src/main.rs index 5dd5db5..ab96a02 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,7 @@ use anyhow::Result; use routes::read_routes; use rocket::{State, http::Status}; -const BIN_NAME: &str = "build-joeac"; +const BIN_NAME: &str = "shapi"; #[launch] fn rocket() -> _ {