From eeab6b8ddba57e65cac4302b23d914233d329236 Mon Sep 17 00:00:00 2001 From: MeexReay Date: Sun, 8 Dec 2024 17:51:13 +0300 Subject: [PATCH] ver 0.2.1 --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- README.md | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51b8878..e2f9a40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "ezhttp" -version = "0.2.0" +version = "0.2.1" dependencies = [ "async-trait", "base64", diff --git a/Cargo.toml b/Cargo.toml index 4f20760..aab830b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "ezhttp" -version = "0.2.0" +version = "0.2.1" edition = "2021" -repository = "https://github.com/MeexReay/ezhttp" +repository = "https://git.meex.lol/MeexReay/ezhttp" description = "easy http server for small sites" license-file = "LICENSE" readme = "README.md" diff --git a/README.md b/README.md index 842ea7e..3df5db3 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # EzHttp Simple async http library with client and server -This library is under developement, so if you found any bugs, please write them to [Issues](https://github.com/MeexReay/ezhttp/issues) +This library is under developement, so if you found any bugs, please write them to [Issues](https://git.meex.lol/MeexReay/ezhttp/issues) ## Setup ```toml -ezhttp = "0.2.0" # stable -ezhttp = { git = "https://github.com/MeexReay/ezhttp" } # unstable +ezhttp = "0.2.1" # stable +ezhttp = { git = "https://git.meex.lol/MeexReay/ezhttp" } # unstable ``` ## Examples @@ -77,7 +77,7 @@ async fn main() { } ``` -[More examples](https://github.com/MeexReay/ezhttp/blob/main/examples) +[More examples](https://git.meex.lol/MeexReay/ezhttp/src/branch/main/examples) ### Contributing