From 892ce2399a63d1f4fa3d1217372a38c7fdf2d248 Mon Sep 17 00:00:00 2001 From: hexilee Date: Mon, 29 Mar 2021 23:06:27 +0800 Subject: [PATCH] release roa-tokio v0.5.1 Signed-off-by: hexilee --- README.md | 4 ++-- roa-tokio/Cargo.toml | 28 +++++++++++++++------------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index f4e0092..d1d6444 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ # Cargo.toml [dependencies] -roa = "0.5.0" -async-std = { version = "1.5", features = ["attributes"] } +roa = "0.5" +async-std = { version = "1.6", features = ["attributes"] } ``` ```rust,no_run diff --git a/roa-tokio/Cargo.toml b/roa-tokio/Cargo.toml index 1b86c3c..f95ea11 100644 --- a/roa-tokio/Cargo.toml +++ b/roa-tokio/Cargo.toml @@ -1,17 +1,20 @@ [package] -name = "roa-tokio" -version = "0.5.0" authors = ["Hexilee "] +categories = [ + "network-programming", + "asynchronous", + "web-programming::http-server", +] +description = "tokio-based runtime and acceptor" +documentation = "https://docs.rs/roa-tokio" edition = "2018" +homepage = "https://github.com/Hexilee/roa/wiki" +keywords = ["http", "web", "framework", "async"] license = "MIT" +name = "roa-tokio" readme = "./README.md" repository = "https://github.com/Hexilee/roa" -documentation = "https://docs.rs/roa-tokio" -homepage = "https://github.com/Hexilee/roa/wiki" -description = "tokio-based runtime and acceptor" -keywords = ["http", "web", "framework", "async"] -categories = ["network-programming", "asynchronous", - "web-programming::http-server"] +version = "0.5.1" [package.metadata.docs.rs] features = ["docs"] @@ -19,15 +22,14 @@ rustdoc-args = ["--cfg", "feature=\"docs\""] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "0.2", features = ["full"] } -roa = { path = "../roa", version = "0.5", default-features = false } -log = "0.4" futures = "0.3" +log = "0.4" +roa = {path = "../roa", version = "0.5", default-features = false} +tokio = {version = "0.2", features = ["full"]} [dev-dependencies] -roa = { path = "../roa", version = "0.5" } reqwest = "0.10" +roa = {path = "../roa", version = "0.5"} [features] docs = ["roa/docs"] -