ver 0.2.1

This commit is contained in:
MeexReay 2024-12-08 17:51:13 +03:00
parent f46607a280
commit eeab6b8ddb
3 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View File

@ -111,7 +111,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "ezhttp"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"async-trait",
"base64",

View File

@ -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"

View File

@ -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