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]