From d8bb65458738e7394849359081e83b93f9f5d100 Mon Sep 17 00:00:00 2001 From: minish Date: Thu, 31 Aug 2023 00:38:39 -0400 Subject: [PATCH] my new update --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee75a82..e987ee9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "actions-test" -version = "0.1.0" +version = "0.1.1" dependencies = [ "axum", "hyper", diff --git a/Cargo.toml b/Cargo.toml index 064f89d..e1cc1dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actions-test" -version = "0.1.0" +version = "0.1.1" edition = "2021" [dependencies] diff --git a/src/main.rs b/src/main.rs index deeec29..6a4126a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ use axum::{Router, routing::get}; async fn index() -> &'static str { - "hi world" + "hi world!" } #[tokio::main]